Skip to content

Commit 762a830

Browse files
authored
Bump asm version to 9.7 in logger usage (#112251)
This commit bumps the asm version to 9.7 in test logger usage, which contains support for newer Java class file versions. This change is in preparation for an eventual bump of Elasticsearch to a minimum of JDK 21, in ES 9.0
1 parent 09617e3 commit 762a830

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

gradle/verification-metadata.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4204,6 +4204,11 @@
42044204
<sha256 value="878fbe521731c072d14d2d65b983b1beae6ad06fda0007b6a8bae81f73f433c4" origin="Generated by Gradle"/>
42054205
</artifact>
42064206
</component>
4207+
<component group="org.ow2.asm" name="asm-analysis" version="9.7">
4208+
<artifact name="asm-analysis-9.7.jar">
4209+
<sha256 value="7bc6bcbc21379948a0c8c467fb0f864206e5b818f6bc0b546872f5c9f941556f" origin="Generated by Gradle"/>
4210+
</artifact>
4211+
</component>
42074212
<component group="org.ow2.asm" name="asm-commons" version="7.2">
42084213
<artifact name="asm-commons-7.2.jar">
42094214
<sha256 value="0e86b8b179c5fb223d1a880a0ff4960b6978223984b94e62e71135f2d8ea3558" origin="Generated by Gradle"/>

test/logger-usage/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
apply plugin: 'elasticsearch.java'
1010

1111
dependencies {
12-
api 'org.ow2.asm:asm:9.2'
13-
api 'org.ow2.asm:asm-tree:9.2'
14-
api 'org.ow2.asm:asm-analysis:9.2'
12+
api 'org.ow2.asm:asm:9.7'
13+
api 'org.ow2.asm:asm-tree:9.7'
14+
api 'org.ow2.asm:asm-analysis:9.7'
1515
api "org.apache.logging.log4j:log4j-api:${versions.log4j}"
1616
testImplementation project(":test:framework")
1717
}

0 commit comments

Comments
 (0)