Skip to content

Commit

Permalink
Upgrade ASM JARs to 9.6 (jython#306)
Browse files Browse the repository at this point in the history
Fixes jython#304.
  • Loading branch information
jeff5 authored Feb 17, 2024
1 parent 9cf8499 commit 93911c7
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ New Features


Jython 2.7.4a1 Bugs fixed
- [ GH-304 ] from java import * not working in Java 21
- [ GH-280 ] LineNumberTable deprecated for removal in 2.6 still there
- [ GH-277 ] Fix automatic conversions of function/method args for java
interfaces with default methods.
- [ GH-269 ] Upgrade Google Guava to 32.0.1 (CVE-2023-2976)
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ dependencies {
implementation 'org.bouncycastle:bcpkix-jdk18on:1.71'
implementation 'org.bouncycastle:bcprov-jdk18on:1.71'

implementation 'org.ow2.asm:asm:9.3'
implementation 'org.ow2.asm:asm-commons:9.3'
implementation 'org.ow2.asm:asm-util:9.3'
implementation 'org.ow2.asm:asm:9.6'
implementation 'org.ow2.asm:asm-commons:9.6'
implementation 'org.ow2.asm:asm-util:9.6'

implementation 'com.google.guava:guava:32.1.2-jre'

Expand Down
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ informix.jar = ../support/jdbc-4.10.12.jar
<!-- Other JARs (alphabetical) -->
<filelist dir="${extlibs.dir}">
<file name="antlr-complete-3.5.2.jar" /> <!-- ANTLR 3 until we upgrade parsing -->
<file name="asm-9.3.jar" />
<file name="asm-commons-9.3.jar" />
<file name="asm-util-9.3.jar" />
<file name="asm-9.6.jar" />
<file name="asm-commons-9.6.jar" />
<file name="asm-util-9.6.jar" />
<file name="commons-compress-1.21.jar"/>
<file name="failureaccess-1.0.1.jar" />
<file name="guava-32.1.2-jre.jar" />
Expand Down Expand Up @@ -846,9 +846,9 @@ The text for an official release would continue like ...
<!-- pin to Antlr 3 until we upgrade parsing -->
<zipfileset src="extlibs/antlr-runtime-3.5.2.jar"/>
<rule pattern="org.antlr.runtime.**" result="org.python.antlr.runtime.@1"/>
<zipfileset src="extlibs/asm-9.3.jar" excludes="module-info.class"/>
<zipfileset src="extlibs/asm-commons-9.3.jar" excludes="module-info.class"/>
<zipfileset src="extlibs/asm-util-9.3.jar" excludes="module-info.class"/>
<zipfileset src="extlibs/asm-9.6.jar" excludes="module-info.class"/>
<zipfileset src="extlibs/asm-commons-9.6.jar" excludes="module-info.class"/>
<zipfileset src="extlibs/asm-util-9.6.jar" excludes="module-info.class"/>
<rule pattern="org.objectweb.asm.**" result="org.python.objectweb.asm.@1"/>
<zipfileset src="extlibs/bcpkix-jdk18on-1.71.jar" excludes="META-INF/**"/>
<zipfileset src="extlibs/bcprov-jdk18on-1.71.jar" excludes="META-INF/**"/>
Expand Down
Binary file removed extlibs/asm-9.3.jar
Binary file not shown.
Binary file added extlibs/asm-9.6.jar
Binary file not shown.
Binary file removed extlibs/asm-commons-9.3.jar
Binary file not shown.
Binary file added extlibs/asm-commons-9.6.jar
Binary file not shown.
Binary file removed extlibs/asm-util-9.3.jar
Binary file not shown.
Binary file added extlibs/asm-util-9.6.jar
Binary file not shown.

0 comments on commit 93911c7

Please sign in to comment.