Browse Source

Bump asm to 9.8 for JDK 25 support in remaining places (#133938) (#133951)

This PR bumps the remaining usage of old asm versions to 9.8 for support
of JDK 25. Relates to ES-12644
Moritz Mack 1 month ago
parent
commit
38f4a72d8a

+ 1 - 1
modules/repository-azure/build.gradle

@@ -75,7 +75,7 @@ dependencies {
   api "net.minidev:accessors-smart:2.5.2"
   api "net.minidev:json-smart:2.5.2"
   api "org.codehaus.woodstox:stax2-api:4.2.2"
-  api "org.ow2.asm:asm:9.7.1"
+  api "org.ow2.asm:asm:9.8"
 
   runtimeOnly "com.google.code.gson:gson:2.11.0"
   runtimeOnly "org.cryptomator:siv-mode:1.5.2"

+ 3 - 3
test/logger-usage/build.gradle

@@ -10,9 +10,9 @@
 apply plugin: 'elasticsearch.java'
 
 dependencies {
-  api 'org.ow2.asm:asm:9.7.1'
-  api 'org.ow2.asm:asm-tree:9.7.1'
-  api 'org.ow2.asm:asm-analysis:9.7.1'
+  api 'org.ow2.asm:asm:9.8'
+  api 'org.ow2.asm:asm-tree:9.8'
+  api 'org.ow2.asm:asm-analysis:9.8'
   api "org.apache.logging.log4j:log4j-api:${versions.log4j}"
   testImplementation project(":test:framework")
 }

+ 1 - 1
x-pack/plugin/security/build.gradle

@@ -87,7 +87,7 @@ dependencies {
   api "net.jcip:jcip-annotations:1.0"
   api "net.minidev:json-smart:2.5.2"
   api "net.minidev:accessors-smart:2.5.2"
-  api "org.ow2.asm:asm:9.7.1"
+  api "org.ow2.asm:asm:9.8"
 
   testImplementation "org.elasticsearch:mocksocket:${versions.mocksocket}"