This is an automated email from the ASF dual-hosted git repository.
emilles pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
new c3743cb15d GROOVY-11592: Bump `asm` to 9.8
c3743cb15d is described below
commit c3743cb15d8b5bc4ef4c435e755a23456c95e925
Author: Paul King <[email protected]>
AuthorDate: Sun Mar 30 07:25:35 2025 +1000
GROOVY-11592: Bump `asm` to 9.8
---
src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java | 5 ++++-
versions.properties | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
index b976996335..a7635406d5 100644
--- a/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
+++ b/src/main/java/org/codehaus/groovy/control/CompilerConfiguration.java
@@ -108,6 +108,8 @@ public class CompilerConfiguration {
public static final String JDK23 = "23";
/** This (<code>"24"</code>) is the value for targetBytecode to compile
for a JDK 24. */
public static final String JDK24 = "24";
+ /** This (<code>"25"</code>) is the value for targetBytecode to compile
for a JDK 25. */
+ public static final String JDK25 = "25";
/**
* This constant is for comparing targetBytecode to ensure it is set to
JDK 1.5 or later.
@@ -147,7 +149,8 @@ public class CompilerConfiguration {
JDK21, Opcodes.V21,
JDK22, Opcodes.V22,
JDK23, Opcodes.V23,
- JDK24, Opcodes.V24
+ JDK24, Opcodes.V24,
+ JDK25, Opcodes.V25
);
public static final String DEFAULT_TARGET_BYTECODE =
defaultTargetBytecode();
diff --git a/versions.properties b/versions.properties
index 594a08efce..386e0ac615 100644
--- a/versions.properties
+++ b/versions.properties
@@ -19,7 +19,7 @@ asciidoctorj=2.5.11
asciidoctorDiagram=2.2.17
asciidoctorPdf=2.3.19
asciidoctorGroovyDsl=2.0.2
-asm=9.7.1
+asm=9.8
antlr4=4.13.2.6
bridger=1.6.Final
checkstyle=10.18.2