Skip to content

Commit

Permalink
Bump asm version to 9.7 in logger usage (elastic#112251)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ChrisHegarty authored Aug 28, 2024
1 parent 09617e3 commit 762a830
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4204,6 +4204,11 @@
<sha256 value="878fbe521731c072d14d2d65b983b1beae6ad06fda0007b6a8bae81f73f433c4" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.ow2.asm" name="asm-analysis" version="9.7">
<artifact name="asm-analysis-9.7.jar">
<sha256 value="7bc6bcbc21379948a0c8c467fb0f864206e5b818f6bc0b546872f5c9f941556f" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.ow2.asm" name="asm-commons" version="7.2">
<artifact name="asm-commons-7.2.jar">
<sha256 value="0e86b8b179c5fb223d1a880a0ff4960b6978223984b94e62e71135f2d8ea3558" origin="Generated by Gradle"/>
Expand Down
6 changes: 3 additions & 3 deletions test/logger-usage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
apply plugin: 'elasticsearch.java'

dependencies {
api 'org.ow2.asm:asm:9.2'
api 'org.ow2.asm:asm-tree:9.2'
api 'org.ow2.asm:asm-analysis:9.2'
api 'org.ow2.asm:asm:9.7'
api 'org.ow2.asm:asm-tree:9.7'
api 'org.ow2.asm:asm-analysis:9.7'
api "org.apache.logging.log4j:log4j-api:${versions.log4j}"
testImplementation project(":test:framework")
}

0 comments on commit 762a830

Please sign in to comment.