-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/259 spark 3.2 #260
Conversation
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Signed-off-by: Kevin Wallimann <[email protected]>
86e8e75
to
8667dd5
Compare
Signed-off-by: Kevin Wallimann <[email protected]>
3.8.5 causes build failures
Signed-off-by: Kevin Wallimann <[email protected]>
Signed-off-by: Kevin Wallimann <[email protected]>
…lookup Signed-off-by: Kevin Wallimann <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Signed-off-by: Kevin Wallimann <[email protected]>
pom.xml
Outdated
@@ -112,11 +112,18 @@ | |||
|
|||
<!-- Spark versions --> | |||
<spark_2.version>2.4.3</spark_2.version> | |||
<spark_3.version>3.1.2</spark_3.version> | |||
<spark_3.version>3.2.1</spark_3.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should upgrade it to 3.2.2 because of https://nvd.nist.gov/vuln/detail/CVE-2022-33891
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Signed-off-by: Kevin Wallimann <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Closes #259
Removed a test case in TestConfigUtils that checked that
ConfigUtils.getOptionalBoolean("1")
throws an exception. In that test,"1"
was simply used as an example for an invalid value. With commons-text v3.10.0, see apache/commons-lang#502,"1"
was added to the valid values fortrue
, therefore indeed no exception is thrown, which is the new expected behavior.