[SPARK-44623][BUILD] Upgrade commons-lang3 to 3.13.0#42269
Closed
dongjoon-hyun wants to merge 1 commit intoapache:masterfrom
dongjoon-hyun:SPARK-44623
Closed
[SPARK-44623][BUILD] Upgrade commons-lang3 to 3.13.0#42269dongjoon-hyun wants to merge 1 commit intoapache:masterfrom dongjoon-hyun:SPARK-44623
commons-lang3 to 3.13.0#42269dongjoon-hyun wants to merge 1 commit intoapache:masterfrom
dongjoon-hyun:SPARK-44623
Conversation
commons-lang3 to 3.13.0
HyukjinKwon
approved these changes
Aug 1, 2023
Member
Author
|
Thank you, @HyukjinKwon . |
Member
Author
|
Merged to master for Apache Spark 4.0. |
viirya
pushed a commit
to viirya/spark-1
that referenced
this pull request
Oct 19, 2023
This PR aims to upgrade commons-lang3 to 3.13.0. `commons-lang3` added Java 21 support at 3.13.0. - https://commons.apache.org/proper/commons-lang/changes-report.html#a3.13.0 - https://github.com/apache/commons-lang/blob/9d85b0a11e5dbadd5da20865c3dd3f8ef4668c7d/src/main/java/org/apache/commons/lang3/JavaVersion.java#L167-L172 ```java /** * Java 21. * * since 3.13.0 */ JAVA_21(21, "21"), ``` No. Pass the CIs. Closes apache#42269 from dongjoon-hyun/SPARK-44623. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org> (cherry picked from commit 6933d43) Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
FMX
pushed a commit
to apache/celeborn
that referenced
this pull request
Jun 7, 2024
…p logic ### What changes were proposed in this pull request? Simplify `DirectByteBuffer` constructor lookup logic in `Platform`. Meanwhile, bump `commons-lang3` version from `3.12.0` to `3.13.0`. ### Why are the changes needed? `try-catch` statement is not needed because we know version number already. Backport: - apache/spark#41780 - apache/spark#42269 - apache/spark#44444 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? GA. Closes #2544 from SteNicholas/CELEBORN-1327. Authored-by: SteNicholas <programgeek@163.com> Signed-off-by: mingji <fengmingxiao.fmx@alibaba-inc.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
This PR aims to upgrade commons-lang3 to 3.13.0.
Why are the changes needed?
commons-lang3added Java 21 support at 3.13.0.https://commons.apache.org/proper/commons-lang/changes-report.html#a3.13.0
https://github.com/apache/commons-lang/blob/9d85b0a11e5dbadd5da20865c3dd3f8ef4668c7d/src/main/java/org/apache/commons/lang3/JavaVersion.java#L167-L172
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass the CIs.