Skip to content

Commit 1ac6bd9

Browse files
committed
[SPARK-29729][BUILD] Upgrade ASM to 7.2
### What changes were proposed in this pull request? This PR aims to upgrade ASM to 7.2. - https://issues.apache.org/jira/browse/XBEAN-322 (Upgrade to ASM 7.2) - https://asm.ow2.io/versions.html ### Why are the changes needed? This will bring the following patches. - 317875: Infinite loop when parsing invalid method descriptor - 317873: Add support for RET instruction in AdviceAdapter - 317872: Throw an exception if visitFrame used incorrectly - add support for Java 14 ### Does this PR introduce any user-facing change? No. ### How was this patch tested? Pass the Jenkins with the existing UTs. Closes apache#26373 from dongjoon-hyun/SPARK-29729. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 91d9901 commit 1ac6bd9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

dev/deps/spark-deps-hadoop-2.7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ stringtemplate-3.2.1.jar
200200
super-csv-2.2.0.jar
201201
univocity-parsers-2.8.3.jar
202202
validation-api-2.0.1.Final.jar
203-
xbean-asm7-shaded-4.14.jar
203+
xbean-asm7-shaded-4.15.jar
204204
xercesImpl-2.9.1.jar
205205
xmlenc-0.52.jar
206206
xz-1.5.jar

dev/deps/spark-deps-hadoop-3.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ univocity-parsers-2.8.3.jar
235235
validation-api-2.0.1.Final.jar
236236
velocity-1.5.jar
237237
woodstox-core-5.0.3.jar
238-
xbean-asm7-shaded-4.14.jar
238+
xbean-asm7-shaded-4.15.jar
239239
xz-1.5.jar
240240
zjsonpatch-0.3.0.jar
241241
zookeeper-3.4.14.jar

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@
333333
<dependency>
334334
<groupId>org.apache.xbean</groupId>
335335
<artifactId>xbean-asm7-shaded</artifactId>
336-
<version>4.14</version>
336+
<version>4.15</version>
337337
</dependency>
338338

339339
<!-- Shaded deps marked as provided. These are promoted to compile scope
@@ -2523,12 +2523,12 @@
25232523
<dependency>
25242524
<groupId>org.ow2.asm</groupId>
25252525
<artifactId>asm</artifactId>
2526-
<version>7.1</version>
2526+
<version>7.2</version>
25272527
</dependency>
25282528
<dependency>
25292529
<groupId>org.ow2.asm</groupId>
25302530
<artifactId>asm-commons</artifactId>
2531-
<version>7.1</version>
2531+
<version>7.2</version>
25322532
</dependency>
25332533
</dependencies>
25342534
</plugin>

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ addSbtPlugin("com.cavorite" % "sbt-avro" % "0.3.2")
4848

4949
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
5050

51-
libraryDependencies += "org.ow2.asm" % "asm" % "7.1"
51+
libraryDependencies += "org.ow2.asm" % "asm" % "7.2"
5252

53-
libraryDependencies += "org.ow2.asm" % "asm-commons" % "7.1"
53+
libraryDependencies += "org.ow2.asm" % "asm-commons" % "7.2"
5454

5555
// sbt 1.0.0 support: https://github.com/ihji/sbt-antlr4/issues/14
5656
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.13")

0 commit comments

Comments
 (0)