You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by vi...@apache.org on 2022/08/03 02:23:18 UTC

[spark] branch master updated: [SPARK-39954][BUILD] Upgrade ASM to 9.3

This is an automated email from the ASF dual-hosted git repository.

viirya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 932beda891a [SPARK-39954][BUILD] Upgrade ASM to 9.3
932beda891a is described below

commit 932beda891aadc9fc21f9d673a865a618f345776
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Tue Aug 2 19:23:01 2022 -0700

    [SPARK-39954][BUILD] Upgrade ASM to 9.3
    
    ### What changes were proposed in this pull request?
    
    This PR aims to upgrade ASM to 9.3.
    
    ### Why are the changes needed?
    
    This will help us to use Java 19 and to be ready for the future releases.
    - https://openjdk.org/projects/jdk/19/ (RC1: Aug 11st, GA: Sep 20th)
    - https://asm.ow2.io/versions.html
    - https://issues.apache.org/jira/browse/XBEAN-334 Upgrade to ASM 9.3
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #37382 from dongjoon-hyun/SPARK-39954.
    
    Authored-by: Dongjoon Hyun <do...@apache.org>
    Signed-off-by: Liang-Chi Hsieh <vi...@gmail.com>
---
 dev/deps/spark-deps-hadoop-2-hive-2.3 | 2 +-
 dev/deps/spark-deps-hadoop-3-hive-2.3 | 2 +-
 pom.xml                               | 6 +++---
 project/plugins.sbt                   | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev/deps/spark-deps-hadoop-2-hive-2.3 b/dev/deps/spark-deps-hadoop-2-hive-2.3
index ec5fbf67388..1f43eb679bc 100644
--- a/dev/deps/spark-deps-hadoop-2-hive-2.3
+++ b/dev/deps/spark-deps-hadoop-2-hive-2.3
@@ -257,7 +257,7 @@ tink/1.6.1//tink-1.6.1.jar
 transaction-api/1.1//transaction-api-1.1.jar
 univocity-parsers/2.9.1//univocity-parsers-2.9.1.jar
 velocity/1.5//velocity-1.5.jar
-xbean-asm9-shaded/4.20//xbean-asm9-shaded-4.20.jar
+xbean-asm9-shaded/4.21//xbean-asm9-shaded-4.21.jar
 xercesImpl/2.12.2//xercesImpl-2.12.2.jar
 xml-apis/1.4.01//xml-apis-1.4.01.jar
 xmlenc/0.52//xmlenc-0.52.jar
diff --git a/dev/deps/spark-deps-hadoop-3-hive-2.3 b/dev/deps/spark-deps-hadoop-3-hive-2.3
index db2e022e5ff..6b275d852a7 100644
--- a/dev/deps/spark-deps-hadoop-3-hive-2.3
+++ b/dev/deps/spark-deps-hadoop-3-hive-2.3
@@ -247,7 +247,7 @@ transaction-api/1.1//transaction-api-1.1.jar
 univocity-parsers/2.9.1//univocity-parsers-2.9.1.jar
 velocity/1.5//velocity-1.5.jar
 wildfly-openssl/1.0.7.Final//wildfly-openssl-1.0.7.Final.jar
-xbean-asm9-shaded/4.20//xbean-asm9-shaded-4.20.jar
+xbean-asm9-shaded/4.21//xbean-asm9-shaded-4.21.jar
 xz/1.8//xz-1.8.jar
 zjsonpatch/0.3.0//zjsonpatch-0.3.0.jar
 zookeeper-jute/3.6.2//zookeeper-jute-3.6.2.jar
diff --git a/pom.xml b/pom.xml
index 0cb83b8debd..bf33d0265da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -472,7 +472,7 @@
       <dependency>
         <groupId>org.apache.xbean</groupId>
         <artifactId>xbean-asm9-shaded</artifactId>
-        <version>4.20</version>
+        <version>4.21</version>
       </dependency>
 
       <!-- Shaded deps marked as provided. These are promoted to compile scope
@@ -3154,12 +3154,12 @@
             <dependency>
               <groupId>org.ow2.asm</groupId>
               <artifactId>asm</artifactId>
-              <version>9.1</version>
+              <version>9.3</version>
             </dependency>
             <dependency>
               <groupId>org.ow2.asm</groupId>
               <artifactId>asm-commons</artifactId>
-              <version>9.1</version>
+              <version>9.3</version>
             </dependency>
           </dependencies>
         </plugin>
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 189a0d1116a..0d19af3ef81 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -37,9 +37,9 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")
 
 addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
 
-libraryDependencies += "org.ow2.asm"  % "asm" % "9.1"
+libraryDependencies += "org.ow2.asm"  % "asm" % "9.3"
 
-libraryDependencies += "org.ow2.asm"  % "asm-commons" % "9.1"
+libraryDependencies += "org.ow2.asm"  % "asm-commons" % "9.3"
 
 addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org