Skip to content

Commit

Permalink
[SPARK-49965][BUILD] Upgrade ASM to 9.7.1
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
This PR aims to upgrade ASM from `9.7` to `9.7.1`.

### Why are the changes needed?
- xbean-asm9-shaded 4.26 upgrade to use `ASM 9.7.1` and `ASM 9.7.1` is for `Java 24`.
apache/geronimo-xbean#41

- https://asm.ow2.io/versions.html
  <img width="809" alt="image" src="https:/user-attachments/assets/6ca57af9-2b03-467f-9a31-31b6d7eb4d53">

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
Pass GA.

### Was this patch authored or co-authored using generative AI tooling?
No.

Closes #48465 from panbingkun/SPARK-49965.

Authored-by: panbingkun <[email protected]>
Signed-off-by: yangjie01 <[email protected]>
  • Loading branch information
panbingkun authored and LuciferYang committed Oct 15, 2024
1 parent 488f680 commit 217e0da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dev/deps/spark-deps-hadoop-3-hive-2.3
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ tink/1.15.0//tink-1.15.0.jar
transaction-api/1.1//transaction-api-1.1.jar
univocity-parsers/2.9.1//univocity-parsers-2.9.1.jar
wildfly-openssl/1.1.3.Final//wildfly-openssl-1.1.3.Final.jar
xbean-asm9-shaded/4.25//xbean-asm9-shaded-4.25.jar
xbean-asm9-shaded/4.26//xbean-asm9-shaded-4.26.jar
xmlschema-core/2.3.1//xmlschema-core-2.3.1.jar
xz/1.10//xz-1.10.jar
zjsonpatch/0.3.0//zjsonpatch-0.3.0.jar
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<maven.version>3.9.9</maven.version>
<exec-maven-plugin.version>3.2.0</exec-maven-plugin.version>
<sbt.project.name>spark</sbt.project.name>
<asm.version>9.7</asm.version>
<asm.version>9.7.1</asm.version>
<slf4j.version>2.0.16</slf4j.version>
<log4j.version>2.24.1</log4j.version>
<!-- make sure to update IsolatedClientLoader whenever this version is changed -->
Expand Down Expand Up @@ -491,7 +491,7 @@
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-asm9-shaded</artifactId>
<version>4.25</version>
<version>4.26</version>
</dependency>

<!-- Shaded deps marked as provided. These are promoted to compile scope
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")

libraryDependencies += "org.ow2.asm" % "asm" % "9.7"
libraryDependencies += "org.ow2.asm" % "asm" % "9.7.1"

libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.7"
libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.7.1"

addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")

Expand Down

0 comments on commit 217e0da

Please sign in to comment.