-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-44811][BUILD] Upgrade Guava to 33.2.1-jre #42493
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -195,7 +195,7 @@ | |
<!-- org.apache.commons/commons-pool2/--> | ||
<commons-pool2.version>2.12.0</commons-pool2.version> | ||
<datanucleus-core.version>4.1.17</datanucleus-core.version> | ||
<guava.version>14.0.1</guava.version> | ||
<guava.version>33.2.1-jre</guava.version> | ||
<gson.version>2.11.0</gson.version> | ||
<janino.version>3.1.9</janino.version> | ||
<jersey.version>3.0.12</jersey.version> | ||
|
@@ -3420,6 +3420,7 @@ | |
<includes> | ||
<include>org.spark-project.spark:unused</include> | ||
<include>com.google.guava:guava</include> | ||
<include>com.google.guava:failureaccess</include> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I refer to the shading rules in the connect module to handle Guava dependencies, cc @LuciferYang, would be great if you have an opportunity to take a look. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fine to me |
||
<include>org.jpmml:*</include> | ||
</includes> | ||
</artifactSet> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -351,7 +351,7 @@ class IntervalExpressionsSuite extends SparkFunSuite with ExpressionEvalHelper { | |
|
||
Seq( | ||
(Period.ofMonths(2), Int.MaxValue) -> "overflow", | ||
(Period.ofMonths(Int.MinValue), 10d) -> "not in range", | ||
(Period.ofMonths(Int.MinValue), 10d) -> "out of range", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, this error message is originated from Guava? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cc @cloud-fan do you think such error message change is acceptable? |
||
(Period.ofMonths(-100), Float.NaN) -> "input is infinite or NaN", | ||
(Period.ofMonths(200), Double.PositiveInfinity) -> "input is infinite or NaN", | ||
(Period.ofMonths(-200), Float.NegativeInfinity) -> "input is infinite or NaN" | ||
|
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.
I guess we need to update
LICENSE-binary
andNOTICE-binary
for new jars, @pan3793 .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.
Please proceed as a follow-up, @pan3793 .