From 757c950dfd596bf2f39fe18c18b11e6d1fc44386 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Wed, 25 Jun 2025 17:30:15 -0700 Subject: [PATCH] Upgrade ASM for entitlements to support JDK 25 (#130037) --- gradle/verification-metadata.xml | 25 ++++++++++++++++++++++ libs/entitlement/asm-provider/build.gradle | 8 +++---- 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index eb2a280234754..1f1814f177455 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -1036,6 +1036,11 @@ + + + + + @@ -4379,6 +4384,11 @@ + + + + + @@ -4399,6 +4409,11 @@ + + + + + @@ -4464,6 +4479,11 @@ + + + + + @@ -4474,6 +4494,11 @@ + + + + + diff --git a/libs/entitlement/asm-provider/build.gradle b/libs/entitlement/asm-provider/build.gradle index d992792cd96d8..e6016a4294977 100644 --- a/libs/entitlement/asm-provider/build.gradle +++ b/libs/entitlement/asm-provider/build.gradle @@ -13,10 +13,10 @@ dependencies { compileOnly project(':libs:entitlement') compileOnly project(':libs:core') compileOnly project(':libs:logging') - implementation 'org.ow2.asm:asm:9.7.1' - implementation 'org.ow2.asm:asm-util:9.7.1' - implementation 'org.ow2.asm:asm-tree:9.7.1' - implementation 'org.ow2.asm:asm-analysis:9.7.1' + implementation 'org.ow2.asm:asm:9.8' + implementation 'org.ow2.asm:asm-util:9.8' + implementation 'org.ow2.asm:asm-tree:9.8' + implementation 'org.ow2.asm:asm-analysis:9.8' testImplementation project(":test:framework") testImplementation project(":libs:entitlement:bridge") }