Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ASM to 9.8
  • Loading branch information
sarahchen6 committed Apr 22, 2025
commit 58c185f4eaa03aa1d407eade970aff23fcab0bfe
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ dependencies {
implementation("org.apache.maven", "maven-aether-provider", "3.3.9")

implementation("com.google.guava", "guava", "20.0")
implementation("org.ow2.asm", "asm", "9.7.1")
implementation("org.ow2.asm", "asm-tree", "9.7.1")
implementation("org.ow2.asm", "asm", "9.8")
implementation("org.ow2.asm", "asm-tree", "9.8")

testImplementation("org.spockframework", "spock-core", "2.2-groovy-3.0")
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/call-site-instrumentation-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ dependencies {
compileOnly("com.google.code.findbugs", "jsr305", "3.0.2")

implementation("org.freemarker", "freemarker", "2.3.30")
implementation("org.ow2.asm", "asm", "9.7.1")
implementation("org.ow2.asm", "asm-tree", "9.7.1")
implementation("org.ow2.asm", "asm", "9.8")
implementation("org.ow2.asm", "asm-tree", "9.8")
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")

testImplementation("net.bytebuddy", "byte-buddy", "1.15.11")
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ testcontainers = '1.20.1'
jmc = "8.1.0"
autoservice = "1.0-rc7"
ddprof = "1.24.0"
asm = "9.7.1"
asm = "9.8"
cafe_crypto = "0.1.0"
lz4 = "1.7.1"

Expand Down
Loading