From 5da0871b8507afaaffb23484654df3e751747513 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Tue, 10 Mar 2026 14:11:49 -0700 Subject: [PATCH 01/11] Bump otelInstrumentationVersion to 2.25.0, otelSdkVersion to 1.59.0, otelContribVersion to 1.54.0 --- dependencyManagement/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index b234e77211..7fe205b53b 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -7,10 +7,10 @@ data class DependencySet(val group: String, val version: String, val modules: Li val dependencyVersions = hashMapOf() rootProject.extra["versions"] = dependencyVersions -val otelSdkVersion = "1.58.0" -val otelInstrumentationAlphaVersion = "2.24.0-alpha" -val otelInstrumentationVersion = "2.24.0" -val otelContribVersion = "1.53.0" +val otelSdkVersion = "1.59.0" +val otelInstrumentationAlphaVersion = "2.25.0-alpha" +val otelInstrumentationVersion = "2.25.0" +val otelContribVersion = "1.54.0" rootProject.extra["otelInstrumentationVersion"] = otelInstrumentationVersion rootProject.extra["otelInstrumentationAlphaVersion"] = otelInstrumentationAlphaVersion From 5037e7f6a6f1b44e110b8f98d650dc855257d1ea Mon Sep 17 00:00:00 2001 From: Sean Li Date: Tue, 10 Mar 2026 14:41:14 -0700 Subject: [PATCH 02/11] update dependency package for DaemonThreadFactory class --- .../agent/internal/telemetry/BatchItemProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/telemetry/BatchItemProcessor.java b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/telemetry/BatchItemProcessor.java index eeea171059..ec0eb7fa99 100644 --- a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/telemetry/BatchItemProcessor.java +++ b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/telemetry/BatchItemProcessor.java @@ -13,7 +13,7 @@ import io.opentelemetry.internal.shaded.jctools.queues.atomic.MpscAtomicArrayQueue; import io.opentelemetry.javaagent.bootstrap.CallDepth; import io.opentelemetry.sdk.common.CompletableResultCode; -import io.opentelemetry.sdk.internal.DaemonThreadFactory; +import io.opentelemetry.sdk.common.internal.DaemonThreadFactory; import java.util.ArrayList; import java.util.Collections; import java.util.Queue; From c1a344f84cf5cda9d9942b8f976d7c284190cffd Mon Sep 17 00:00:00 2001 From: Sean Li Date: Tue, 10 Mar 2026 15:02:35 -0700 Subject: [PATCH 03/11] VALUE is a new enum constant added in 1.59.0 representing an AnyValue-based attribute type. Skipping this type for now to pass build. --- .../agent/internal/processors/AttributeProcessor.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java index 9e910b7060..a65f5b33f6 100644 --- a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java +++ b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java @@ -284,6 +284,8 @@ private static void putIntoBuilder(AttributesBuilder builder, AttributeKey ke case DOUBLE_ARRAY: builder.put((AttributeKey>) key, (List) value); break; + default: + break; } } } From 8fe793662136a091a2c4972af1675c7de446b4f9 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Tue, 10 Mar 2026 15:45:35 -0700 Subject: [PATCH 04/11] Handle the case for VALUE of AttributeType in AttributeProcessor --- .../agent/internal/processors/AttributeProcessor.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java index a65f5b33f6..22e8b34196 100644 --- a/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java +++ b/agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/processors/AttributeProcessor.java @@ -9,6 +9,7 @@ import io.opentelemetry.api.common.AttributeKey; import io.opentelemetry.api.common.Attributes; import io.opentelemetry.api.common.AttributesBuilder; +import io.opentelemetry.api.common.Value; import io.opentelemetry.sdk.logs.data.LogRecordData; import io.opentelemetry.sdk.trace.data.SpanData; import java.util.List; @@ -284,7 +285,8 @@ private static void putIntoBuilder(AttributesBuilder builder, AttributeKey ke case DOUBLE_ARRAY: builder.put((AttributeKey>) key, (List) value); break; - default: + case VALUE: + builder.put((AttributeKey>) key, (Value) value); break; } } From d5e7f348051d7753bd57640ed24975fe3e6bc9f6 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 17:20:10 -0700 Subject: [PATCH 05/11] ./gradlew generateLicenseReport --- licenses/more-licenses.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/licenses/more-licenses.md b/licenses/more-licenses.md index 642bbedd61..15e5886808 100644 --- a/licenses/more-licenses.md +++ b/licenses/more-licenses.md @@ -1,7 +1,7 @@ # agent ## Dependency License Report -_2026-03-11 13:36:08 PDT_ +_2026-03-23 17:19:39 PDT_ ## Apache License, Version 2.0 **1** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.21` @@ -170,47 +170,47 @@ _2026-03-11 13:36:08 PDT_ > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**32** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.58.0` +**32** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**33** **Group:** `io.opentelemetry` **Name:** `opentelemetry-common` **Version:** `1.58.0` +**33** **Group:** `io.opentelemetry` **Name:** `opentelemetry-common` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**34** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.58.0` +**34** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**35** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.58.0` +**35** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**36** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.58.0` +**36** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.58.0` +**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.58.0` +**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.58.0` +**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.58.0` +**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.58.0` +**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.59.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**42** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-jfr-connection` **Version:** `1.53.0-alpha` +**42** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-jfr-connection` **Version:** `1.54.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) From 5d7ffa678eb49232f34d9b64595625093fe3761e Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 17:20:34 -0700 Subject: [PATCH 06/11] ./gradlew resolveAndLockAll --write-locks --- agent/agent-bootstrap/gradle.lockfile | 8 ++--- agent/agent-for-testing/gradle.lockfile | 8 ++--- .../gc-monitor-api/gradle.lockfile | 8 ++--- .../gc-monitor-core/gradle.lockfile | 8 ++--- .../gc-monitor-tests/gradle.lockfile | 8 ++--- .../agent-alerting-api/gradle.lockfile | 8 ++--- .../agent-alerting/gradle.lockfile | 8 ++--- .../agent-diagnostics-api/gradle.lockfile | 8 ++--- .../agent-diagnostics-jfr/gradle.lockfile | 8 ++--- .../agent-diagnostics/gradle.lockfile | 8 ++--- agent/agent-tooling/gradle.lockfile | 30 +++++++++---------- agent/agent/gradle.lockfile | 8 ++--- .../gradle.lockfile | 8 ++--- .../gradle.lockfile | 8 ++--- .../azure-functions/gradle.lockfile | 8 ++--- agent/instrumentation/methods/gradle.lockfile | 8 ++--- .../micrometer-1.0/gradle.lockfile | 8 ++--- agent/runtime-attach/gradle.lockfile | 12 ++++---- classic-sdk/core/gradle.lockfile | 8 ++--- classic-sdk/web/gradle.lockfile | 8 ++--- etw/java/gradle.lockfile | 8 ++--- 21 files changed, 97 insertions(+), 97 deletions(-) diff --git a/agent/agent-bootstrap/gradle.lockfile b/agent/agent-bootstrap/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-bootstrap/gradle.lockfile +++ b/agent/agent-bootstrap/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-for-testing/gradle.lockfile b/agent/agent-for-testing/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-for-testing/gradle.lockfile +++ b/agent/agent-for-testing/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile index d03d888fda..efb5a7956f 100644 --- a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile index d03d888fda..efb5a7956f 100644 --- a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-alerting-api/gradle.lockfile b/agent/agent-profiler/agent-alerting-api/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-profiler/agent-alerting-api/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting-api/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-alerting/gradle.lockfile b/agent/agent-profiler/agent-alerting/gradle.lockfile index 1c05ef1bdc..5f0836c5ff 100644 --- a/agent/agent-profiler/agent-alerting/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-json:1.5.0=runtimeClasspath com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-diagnostics/gradle.lockfile b/agent/agent-profiler/agent-diagnostics/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent-profiler/agent-diagnostics/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-tooling/gradle.lockfile b/agent/agent-tooling/gradle.lockfile index f337269b73..886d83b51e 100644 --- a/agent/agent-tooling/gradle.lockfile +++ b/agent/agent-tooling/gradle.lockfile @@ -51,21 +51,21 @@ io.netty:netty-transport-native-epoll:4.2.9.Final=runtimeClasspath io.netty:netty-transport-native-kqueue:4.2.9.Final=runtimeClasspath io.netty:netty-transport-native-unix-common:4.2.9.Final=runtimeClasspath io.netty:netty-transport:4.2.9.Final=runtimeClasspath -io.opentelemetry.contrib:opentelemetry-jfr-connection:1.53.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-api:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-common:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-context:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.58.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk:1.58.0=runtimeClasspath +io.opentelemetry.contrib:opentelemetry-jfr-connection:1.54.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-api:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-common:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-context:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-common:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-logs:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-metrics:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-trace:1.59.0=runtimeClasspath +io.opentelemetry:opentelemetry-sdk:1.59.0=runtimeClasspath io.projectreactor.netty:reactor-netty-core:1.2.10=runtimeClasspath io.projectreactor.netty:reactor-netty-http:1.2.10=runtimeClasspath io.projectreactor:reactor-core:3.7.11=runtimeClasspath diff --git a/agent/agent/gradle.lockfile b/agent/agent/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/agent/gradle.lockfile +++ b/agent/agent/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile +++ b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile +++ b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/azure-functions/gradle.lockfile b/agent/instrumentation/azure-functions/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/instrumentation/azure-functions/gradle.lockfile +++ b/agent/instrumentation/azure-functions/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/methods/gradle.lockfile b/agent/instrumentation/methods/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/instrumentation/methods/gradle.lockfile +++ b/agent/instrumentation/methods/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/micrometer-1.0/gradle.lockfile b/agent/instrumentation/micrometer-1.0/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/agent/instrumentation/micrometer-1.0/gradle.lockfile +++ b/agent/instrumentation/micrometer-1.0/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/runtime-attach/gradle.lockfile b/agent/runtime-attach/gradle.lockfile index 34f771d1c0..36d341d494 100644 --- a/agent/runtime-attach/gradle.lockfile +++ b/agent/runtime-attach/gradle.lockfile @@ -4,12 +4,12 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.contrib:opentelemetry-runtime-attach-core:1.53.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath -net.bytebuddy:byte-buddy-agent:1.18.4=runtimeClasspath +io.opentelemetry.contrib:opentelemetry-runtime-attach-core:1.54.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +net.bytebuddy:byte-buddy-agent:1.18.5=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/classic-sdk/core/gradle.lockfile b/classic-sdk/core/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/classic-sdk/core/gradle.lockfile +++ b/classic-sdk/core/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/classic-sdk/web/gradle.lockfile b/classic-sdk/web/gradle.lockfile index cda7b3a9bc..ae9b79321d 100644 --- a/classic-sdk/web/gradle.lockfile +++ b/classic-sdk/web/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/etw/java/gradle.lockfile b/etw/java/gradle.lockfile index 4507d6eaeb..4a817da125 100644 --- a/etw/java/gradle.lockfile +++ b/etw/java/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.24.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.24.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.58.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.58.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath From 2f036c110da1014a7df10d516d5e3b39bf3e9864 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 13:20:05 -0700 Subject: [PATCH 07/11] Bump otelInstrumentationVersion to 2.26.0, otelSdkVersion to 1.60.1, otelContribVersion to 1.54.0 --- dependencyManagement/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index 7fe205b53b..113579e41b 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -7,9 +7,9 @@ data class DependencySet(val group: String, val version: String, val modules: Li val dependencyVersions = hashMapOf() rootProject.extra["versions"] = dependencyVersions -val otelSdkVersion = "1.59.0" -val otelInstrumentationAlphaVersion = "2.25.0-alpha" -val otelInstrumentationVersion = "2.25.0" +val otelSdkVersion = "1.60.1" +val otelInstrumentationAlphaVersion = "2.26.0-alpha" +val otelInstrumentationVersion = "2.26.0" val otelContribVersion = "1.54.0" rootProject.extra["otelInstrumentationVersion"] = otelInstrumentationVersion From efe88849e6a913d4364a7378a7a022034056878e Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 17:30:04 -0700 Subject: [PATCH 08/11] ./gradlew resolveAndLockAll --write-locks --- agent/agent-bootstrap/gradle.lockfile | 8 +++--- agent/agent-for-testing/gradle.lockfile | 8 +++--- .../gc-monitor-api/gradle.lockfile | 8 +++--- .../gc-monitor-core/gradle.lockfile | 8 +++--- .../gc-monitor-tests/gradle.lockfile | 8 +++--- .../agent-alerting-api/gradle.lockfile | 8 +++--- .../agent-alerting/gradle.lockfile | 8 +++--- .../agent-diagnostics-api/gradle.lockfile | 8 +++--- .../agent-diagnostics-jfr/gradle.lockfile | 8 +++--- .../agent-diagnostics/gradle.lockfile | 8 +++--- agent/agent-tooling/gradle.lockfile | 28 +++++++++---------- agent/agent/gradle.lockfile | 8 +++--- .../gradle.lockfile | 8 +++--- .../gradle.lockfile | 8 +++--- .../azure-functions/gradle.lockfile | 8 +++--- agent/instrumentation/methods/gradle.lockfile | 8 +++--- .../micrometer-1.0/gradle.lockfile | 8 +++--- agent/runtime-attach/gradle.lockfile | 8 +++--- classic-sdk/core/gradle.lockfile | 8 +++--- classic-sdk/web/gradle.lockfile | 8 +++--- etw/java/gradle.lockfile | 8 +++--- 21 files changed, 94 insertions(+), 94 deletions(-) diff --git a/agent/agent-bootstrap/gradle.lockfile b/agent/agent-bootstrap/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-bootstrap/gradle.lockfile +++ b/agent/agent-bootstrap/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-for-testing/gradle.lockfile b/agent/agent-for-testing/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-for-testing/gradle.lockfile +++ b/agent/agent-for-testing/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile index efb5a7956f..2360c6cdfd 100644 --- a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile index efb5a7956f..2360c6cdfd 100644 --- a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-alerting-api/gradle.lockfile b/agent/agent-profiler/agent-alerting-api/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-profiler/agent-alerting-api/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting-api/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-alerting/gradle.lockfile b/agent/agent-profiler/agent-alerting/gradle.lockfile index 5f0836c5ff..619cfcae9b 100644 --- a/agent/agent-profiler/agent-alerting/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-json:1.5.0=runtimeClasspath com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-profiler/agent-diagnostics/gradle.lockfile b/agent/agent-profiler/agent-diagnostics/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent-profiler/agent-diagnostics/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/agent-tooling/gradle.lockfile b/agent/agent-tooling/gradle.lockfile index 886d83b51e..223152dc2a 100644 --- a/agent/agent-tooling/gradle.lockfile +++ b/agent/agent-tooling/gradle.lockfile @@ -52,20 +52,20 @@ io.netty:netty-transport-native-kqueue:4.2.9.Final=runtimeClasspath io.netty:netty-transport-native-unix-common:4.2.9.Final=runtimeClasspath io.netty:netty-transport:4.2.9.Final=runtimeClasspath io.opentelemetry.contrib:opentelemetry-jfr-connection:1.54.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-api:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-common:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-context:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.59.0=runtimeClasspath -io.opentelemetry:opentelemetry-sdk:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-api:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-common:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-context:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-common:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-logs:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-metrics:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk-trace:1.60.1=runtimeClasspath +io.opentelemetry:opentelemetry-sdk:1.60.1=runtimeClasspath io.projectreactor.netty:reactor-netty-core:1.2.10=runtimeClasspath io.projectreactor.netty:reactor-netty-http:1.2.10=runtimeClasspath io.projectreactor:reactor-core:3.7.11=runtimeClasspath diff --git a/agent/agent/gradle.lockfile b/agent/agent/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/agent/gradle.lockfile +++ b/agent/agent/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile +++ b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile +++ b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/azure-functions/gradle.lockfile b/agent/instrumentation/azure-functions/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/instrumentation/azure-functions/gradle.lockfile +++ b/agent/instrumentation/azure-functions/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/methods/gradle.lockfile b/agent/instrumentation/methods/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/instrumentation/methods/gradle.lockfile +++ b/agent/instrumentation/methods/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/instrumentation/micrometer-1.0/gradle.lockfile b/agent/instrumentation/micrometer-1.0/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/agent/instrumentation/micrometer-1.0/gradle.lockfile +++ b/agent/instrumentation/micrometer-1.0/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/agent/runtime-attach/gradle.lockfile b/agent/runtime-attach/gradle.lockfile index 36d341d494..6c8c6c2085 100644 --- a/agent/runtime-attach/gradle.lockfile +++ b/agent/runtime-attach/gradle.lockfile @@ -5,10 +5,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath io.opentelemetry.contrib:opentelemetry-runtime-attach-core:1.54.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath net.bytebuddy:byte-buddy-agent:1.18.5=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath diff --git a/classic-sdk/core/gradle.lockfile b/classic-sdk/core/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/classic-sdk/core/gradle.lockfile +++ b/classic-sdk/core/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/classic-sdk/web/gradle.lockfile b/classic-sdk/web/gradle.lockfile index ae9b79321d..038db20003 100644 --- a/classic-sdk/web/gradle.lockfile +++ b/classic-sdk/web/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath empty= diff --git a/etw/java/gradle.lockfile b/etw/java/gradle.lockfile index 4a817da125..d7519e48fa 100644 --- a/etw/java/gradle.lockfile +++ b/etw/java/gradle.lockfile @@ -4,10 +4,10 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.25.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.25.0=runtimeClasspath -io.opentelemetry:opentelemetry-bom-alpha:1.59.0-alpha=runtimeClasspath -io.opentelemetry:opentelemetry-bom:1.59.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath org.slf4j:slf4j-api:2.0.17=runtimeClasspath org.testcontainers:testcontainers-bom:2.0.3=runtimeClasspath From f70e0a985dfe1aa455e3ca72038284bf6dae4eae Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 13:17:22 -0700 Subject: [PATCH 09/11] Bump otelInstrumentationVersion to 2.26.1, otelSdkVersion to 1.60.1, otelContribVersion to 1.54.0 --- dependencyManagement/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index 113579e41b..65bcc1ce5c 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -8,8 +8,8 @@ val dependencyVersions = hashMapOf() rootProject.extra["versions"] = dependencyVersions val otelSdkVersion = "1.60.1" -val otelInstrumentationAlphaVersion = "2.26.0-alpha" -val otelInstrumentationVersion = "2.26.0" +val otelInstrumentationAlphaVersion = "2.26.1-alpha" +val otelInstrumentationVersion = "2.26.1" val otelContribVersion = "1.54.0" rootProject.extra["otelInstrumentationVersion"] = otelInstrumentationVersion From c6ad1d96b6648703564bb62fcfff97a9b9abd004 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 17:33:41 -0700 Subject: [PATCH 10/11] ./gradlew resolveAndLockAll --write-locks --- agent/agent-bootstrap/gradle.lockfile | 4 ++-- agent/agent-for-testing/gradle.lockfile | 4 ++-- agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile | 4 ++-- agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile | 4 ++-- agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile | 4 ++-- agent/agent-profiler/agent-alerting-api/gradle.lockfile | 4 ++-- agent/agent-profiler/agent-alerting/gradle.lockfile | 4 ++-- agent/agent-profiler/agent-diagnostics-api/gradle.lockfile | 4 ++-- agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile | 4 ++-- agent/agent-profiler/agent-diagnostics/gradle.lockfile | 4 ++-- agent/agent-tooling/gradle.lockfile | 4 ++-- agent/agent/gradle.lockfile | 4 ++-- .../applicationinsights-web-2.3/gradle.lockfile | 4 ++-- .../azure-functions-worker-stub/gradle.lockfile | 4 ++-- agent/instrumentation/azure-functions/gradle.lockfile | 4 ++-- agent/instrumentation/methods/gradle.lockfile | 4 ++-- agent/instrumentation/micrometer-1.0/gradle.lockfile | 4 ++-- agent/runtime-attach/gradle.lockfile | 4 ++-- classic-sdk/core/gradle.lockfile | 4 ++-- classic-sdk/web/gradle.lockfile | 4 ++-- etw/java/gradle.lockfile | 4 ++-- 21 files changed, 42 insertions(+), 42 deletions(-) diff --git a/agent/agent-bootstrap/gradle.lockfile b/agent/agent-bootstrap/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-bootstrap/gradle.lockfile +++ b/agent/agent-bootstrap/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-for-testing/gradle.lockfile b/agent/agent-for-testing/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-for-testing/gradle.lockfile +++ b/agent/agent-for-testing/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile index 2360c6cdfd..063710a13b 100644 --- a/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-api/gradle.lockfile @@ -5,8 +5,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile index 2360c6cdfd..063710a13b 100644 --- a/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-core/gradle.lockfile @@ -5,8 +5,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath com.google.errorprone:error_prone_annotations:2.46.0=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile +++ b/agent/agent-gc-monitor/gc-monitor-tests/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-profiler/agent-alerting-api/gradle.lockfile b/agent/agent-profiler/agent-alerting-api/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-profiler/agent-alerting-api/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting-api/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-profiler/agent-alerting/gradle.lockfile b/agent/agent-profiler/agent-alerting/gradle.lockfile index 619cfcae9b..ce19c5f5d6 100644 --- a/agent/agent-profiler/agent-alerting/gradle.lockfile +++ b/agent/agent-profiler/agent-alerting/gradle.lockfile @@ -5,8 +5,8 @@ com.azure:azure-json:1.5.0=runtimeClasspath com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-api/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics-jfr/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-profiler/agent-diagnostics/gradle.lockfile b/agent/agent-profiler/agent-diagnostics/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent-profiler/agent-diagnostics/gradle.lockfile +++ b/agent/agent-profiler/agent-diagnostics/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/agent-tooling/gradle.lockfile b/agent/agent-tooling/gradle.lockfile index 223152dc2a..cd90ac0111 100644 --- a/agent/agent-tooling/gradle.lockfile +++ b/agent/agent-tooling/gradle.lockfile @@ -52,8 +52,8 @@ io.netty:netty-transport-native-kqueue:4.2.9.Final=runtimeClasspath io.netty:netty-transport-native-unix-common:4.2.9.Final=runtimeClasspath io.netty:netty-transport:4.2.9.Final=runtimeClasspath io.opentelemetry.contrib:opentelemetry-jfr-connection:1.54.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-api:1.60.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath diff --git a/agent/agent/gradle.lockfile b/agent/agent/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/agent/gradle.lockfile +++ b/agent/agent/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile +++ b/agent/instrumentation/applicationinsights-web-2.3/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile +++ b/agent/instrumentation/azure-functions-worker-stub/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/instrumentation/azure-functions/gradle.lockfile b/agent/instrumentation/azure-functions/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/instrumentation/azure-functions/gradle.lockfile +++ b/agent/instrumentation/azure-functions/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/instrumentation/methods/gradle.lockfile b/agent/instrumentation/methods/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/instrumentation/methods/gradle.lockfile +++ b/agent/instrumentation/methods/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/instrumentation/micrometer-1.0/gradle.lockfile b/agent/instrumentation/micrometer-1.0/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/agent/instrumentation/micrometer-1.0/gradle.lockfile +++ b/agent/instrumentation/micrometer-1.0/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/agent/runtime-attach/gradle.lockfile b/agent/runtime-attach/gradle.lockfile index 6c8c6c2085..16e93316a2 100644 --- a/agent/runtime-attach/gradle.lockfile +++ b/agent/runtime-attach/gradle.lockfile @@ -5,8 +5,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath io.opentelemetry.contrib:opentelemetry-runtime-attach-core:1.54.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath net.bytebuddy:byte-buddy-agent:1.18.5=runtimeClasspath diff --git a/classic-sdk/core/gradle.lockfile b/classic-sdk/core/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/classic-sdk/core/gradle.lockfile +++ b/classic-sdk/core/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/classic-sdk/web/gradle.lockfile b/classic-sdk/web/gradle.lockfile index 038db20003..d07a3f6902 100644 --- a/classic-sdk/web/gradle.lockfile +++ b/classic-sdk/web/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath diff --git a/etw/java/gradle.lockfile b/etw/java/gradle.lockfile index d7519e48fa..19f484aa09 100644 --- a/etw/java/gradle.lockfile +++ b/etw/java/gradle.lockfile @@ -4,8 +4,8 @@ com.azure:azure-sdk-bom:1.3.3=runtimeClasspath com.fasterxml.jackson:jackson-bom:2.21.1=runtimeClasspath io.netty:netty-bom:4.2.9.Final=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.0-alpha=runtimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.0=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.26.1-alpha=runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom:2.26.1=runtimeClasspath io.opentelemetry:opentelemetry-bom-alpha:1.60.1-alpha=runtimeClasspath io.opentelemetry:opentelemetry-bom:1.60.1=runtimeClasspath org.junit:junit-bom:5.14.2=runtimeClasspath From f95350b11a35d147920d7ef65db1aa26059a9311 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Mon, 23 Mar 2026 17:41:07 -0700 Subject: [PATCH 11/11] ./gradlew generateLicenseReport --no-build-cache --rerun-tasks --- licenses/more-licenses.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/licenses/more-licenses.md b/licenses/more-licenses.md index 15e5886808..78485773c5 100644 --- a/licenses/more-licenses.md +++ b/licenses/more-licenses.md @@ -1,7 +1,7 @@ # agent ## Dependency License Report -_2026-03-23 17:19:39 PDT_ +_2026-03-23 17:40:05 PDT_ ## Apache License, Version 2.0 **1** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.21` @@ -170,43 +170,43 @@ _2026-03-23 17:19:39 PDT_ > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**32** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.59.0` +**32** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**33** **Group:** `io.opentelemetry` **Name:** `opentelemetry-common` **Version:** `1.59.0` +**33** **Group:** `io.opentelemetry` **Name:** `opentelemetry-common` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**34** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.59.0` +**34** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**35** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.59.0` +**35** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**36** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.59.0` +**36** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.59.0` +**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.59.0` +**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.59.0` +**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.59.0` +**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.59.0` +**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.60.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)