From 13498fbc18fae439d00e7ed3edb6d6cf0b29b4f6 Mon Sep 17 00:00:00 2001 From: heyams Date: Tue, 9 Jul 2024 11:09:14 -0700 Subject: [PATCH 1/2] Remove resolutionStrategy for azure-identity 1.13.0 --- agent/agent-tooling/build.gradle.kts | 5 ----- licenses/more-licenses.md | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/agent/agent-tooling/build.gradle.kts b/agent/agent-tooling/build.gradle.kts index 6f2b202c1b..a330bcb42e 100644 --- a/agent/agent-tooling/build.gradle.kts +++ b/agent/agent-tooling/build.gradle.kts @@ -87,11 +87,6 @@ dependencies { testCompileOnly("com.google.code.findbugs:jsr305") } -configurations.all { - // temporarily overriding version until next azure-bom release in order to address CVE - resolutionStrategy.force("com.azure:azure-identity:1.13.0") -} - configurations { "implementation" { exclude(group = "net.bytebuddy", module = "byte-buddy") // we use byte-buddy-dep diff --git a/licenses/more-licenses.md b/licenses/more-licenses.md index 7b4eaa85c7..65f99adeca 100644 --- a/licenses/more-licenses.md +++ b/licenses/more-licenses.md @@ -1,7 +1,7 @@ # agent ## Dependency License Report -_2024-07-08 03:55:59 UTC_ +_2024-07-09 11:07:48 PDT_ ## Apache License, Version 2.0 **1** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.17.2` From af7b2c8a78bf539dfaa9085ce3413fce1c865679 Mon Sep 17 00:00:00 2001 From: heyams Date: Tue, 9 Jul 2024 11:45:10 -0700 Subject: [PATCH 2/2] Fix --- agent/agent/build.gradle.kts | 2 -- 1 file changed, 2 deletions(-) diff --git a/agent/agent/build.gradle.kts b/agent/agent/build.gradle.kts index c669fb2931..e1e57d2a98 100644 --- a/agent/agent/build.gradle.kts +++ b/agent/agent/build.gradle.kts @@ -226,7 +226,5 @@ configurations { // excluding unused dependencies for size (~1.8mb) exclude("com.fasterxml.jackson.dataformat", "jackson-dataformat-xml") exclude("com.fasterxml.woodstox", "woodstox-core") - // temporarily overriding version until next azure-bom release in order to address CVE - resolutionStrategy.force("com.azure:azure-identity:1.13.0") } }