diff --git a/NEWS b/NEWS index 616611f50..a12256f5f 100644 --- a/NEWS +++ b/NEWS @@ -12,6 +12,7 @@ For more details, three sources are available according to type: Jython 2.7.3a1 Bugs fixed - [ GH-160 ] Improve context of "Cannot create PyString with non-byte value" + - [ GH-157 ] Upgrade ASM to 9.3 - [ GH-151 ] Upgrade Apache Xerces to 2.12.2 (CVE-2022-23437) - [ GH-150 ] Upgrade Netty to 4.1.73 (various CVEs) - [ GH-138 ] Upgrade Guava to 31.0.1 (CVE-2020-8908) diff --git a/build.gradle b/build.gradle index a951ffbe0..e99f0f4dc 100644 --- a/build.gradle +++ b/build.gradle @@ -160,9 +160,9 @@ dependencies { implementation 'org.bouncycastle:bcpkix-jdk15on:1.69' implementation 'org.bouncycastle:bcprov-jdk15on:1.69' - implementation 'org.ow2.asm:asm:7.1' - implementation 'org.ow2.asm:asm-commons:7.1' - implementation 'org.ow2.asm:asm-util:7.1' + implementation 'org.ow2.asm:asm:9.3' + implementation 'org.ow2.asm:asm-commons:9.3' + implementation 'org.ow2.asm:asm-util:9.3' implementation 'com.google.guava:guava:31.0.1-jre' diff --git a/build.xml b/build.xml index e1e1928a8..8d2125c71 100644 --- a/build.xml +++ b/build.xml @@ -245,9 +245,9 @@ informix.jar = ../support/jdbc-4.10.12.jar - - - + + + @@ -832,9 +832,9 @@ The text for an official release would continue like ... - - - + + + diff --git a/extlibs/asm-7.1.jar b/extlibs/asm-7.1.jar deleted file mode 100644 index 355eb08db..000000000 Binary files a/extlibs/asm-7.1.jar and /dev/null differ diff --git a/extlibs/asm-9.3.jar b/extlibs/asm-9.3.jar new file mode 100644 index 000000000..bd8b94860 Binary files /dev/null and b/extlibs/asm-9.3.jar differ diff --git a/extlibs/asm-commons-7.1.jar b/extlibs/asm-commons-7.1.jar deleted file mode 100644 index 31ffb987d..000000000 Binary files a/extlibs/asm-commons-7.1.jar and /dev/null differ diff --git a/extlibs/asm-commons-9.3.jar b/extlibs/asm-commons-9.3.jar new file mode 100644 index 000000000..3ce4b82cb Binary files /dev/null and b/extlibs/asm-commons-9.3.jar differ diff --git a/extlibs/asm-util-7.1.jar b/extlibs/asm-util-7.1.jar deleted file mode 100644 index 5e61f2c10..000000000 Binary files a/extlibs/asm-util-7.1.jar and /dev/null differ diff --git a/extlibs/asm-util-9.3.jar b/extlibs/asm-util-9.3.jar new file mode 100644 index 000000000..15e5efde4 Binary files /dev/null and b/extlibs/asm-util-9.3.jar differ