Skip to content

Commit

Permalink
[SPARK-45591][BUILD] Upgrade ASM to 9.6
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 to 9.6.

### Why are the changes needed?
xbean-asm9-shaded 4.24 upgrade to use ASM 9.6 and ASM 9.6 is for Java 22:

- https://asm.ow2.io/versions.html
- https://issues.apache.org/jira/browse/XBEAN-341 | apache/geronimo-xbean#39

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

### How was this patch tested?
Pass GitHub Actions

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

Closes #43431 from LuciferYang/SPARK-45591.

Authored-by: yangjie01 <[email protected]>
Signed-off-by: yangjie01 <[email protected]>
  • Loading branch information
LuciferYang committed Oct 20, 2023
1 parent b9ac7d3 commit 28292d5
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 @@ -258,7 +258,7 @@ transaction-api/1.1//transaction-api-1.1.jar
txw2/3.0.2//txw2-3.0.2.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.23//xbean-asm9-shaded-4.23.jar
xbean-asm9-shaded/4.24//xbean-asm9-shaded-4.24.jar
xmlschema-core/2.3.0//xmlschema-core-2.3.0.jar
xz/1.9//xz-1.9.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 @@ -118,7 +118,7 @@
<maven.version>3.9.5</maven.version>
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<sbt.project.name>spark</sbt.project.name>
<asm.version>9.5</asm.version>
<asm.version>9.6</asm.version>
<slf4j.version>2.0.9</slf4j.version>
<log4j.version>2.20.0</log4j.version>
<!-- make sure to update IsolatedClientLoader whenever this version is changed -->
Expand Down Expand Up @@ -475,7 +475,7 @@
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-asm9-shaded</artifactId>
<version>4.23</version>
<version>4.24</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 @@ -37,9 +37,9 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

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

libraryDependencies += "org.ow2.asm" % "asm" % "9.5"
libraryDependencies += "org.ow2.asm" % "asm" % "9.6"

libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.5"
libraryDependencies += "org.ow2.asm" % "asm-commons" % "9.6"

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

Expand Down

0 comments on commit 28292d5

Please sign in to comment.