diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1b7588ad..6369e6c02e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## Version 2.19.0 (2025-08-15) + ### 📈 Enhancements - Align WildFly metrics with semantic conventions diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt index e1d0a8a767..3fc9f4b6e9 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-instrumentation-annotations-2.19.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.18.1.jar +Comparing source compatibility of opentelemetry-instrumentation-annotations-2.20.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.18.1.jar No changes. \ No newline at end of file diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt index 7f6c2469d1..a7ae1f064f 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-instrumentation-api-2.19.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.18.1.jar +Comparing source compatibility of opentelemetry-instrumentation-api-2.20.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.18.1.jar No changes. \ No newline at end of file diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt index 1bd91e0f9c..f4519fe94b 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.19.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.18.1.jar +Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.20.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.18.1.jar No changes. \ No newline at end of file diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt index 85aa35209a..4ebbcf681a 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-spring-boot-starter-2.19.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.18.1.jar +Comparing source compatibility of opentelemetry-spring-boot-starter-2.20.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.18.1.jar No changes. \ No newline at end of file diff --git a/examples/distro/build.gradle b/examples/distro/build.gradle index 2fc63e6776..27ee652337 100644 --- a/examples/distro/build.gradle +++ b/examples/distro/build.gradle @@ -14,7 +14,7 @@ buildscript { dependencies { classpath "com.diffplug.spotless:spotless-plugin-gradle:7.2.1" classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.9" - classpath "io.opentelemetry.instrumentation:gradle-plugins:2.19.0-alpha-SNAPSHOT" + classpath "io.opentelemetry.instrumentation:gradle-plugins:2.20.0-alpha-SNAPSHOT" } } @@ -30,8 +30,8 @@ subprojects { opentelemetrySdk : "1.53.0", // these lines are managed by .github/scripts/update-version.sh - opentelemetryJavaagent : "2.19.0-SNAPSHOT", - opentelemetryJavaagentAlpha: "2.19.0-alpha-SNAPSHOT", + opentelemetryJavaagent : "2.20.0-SNAPSHOT", + opentelemetryJavaagentAlpha: "2.20.0-alpha-SNAPSHOT", autoservice : "1.1.1" ] diff --git a/examples/extension/build.gradle b/examples/extension/build.gradle index ce856c2b2a..68228e403e 100644 --- a/examples/extension/build.gradle +++ b/examples/extension/build.gradle @@ -13,8 +13,8 @@ plugins { id "com.gradleup.shadow" version "8.3.9" id "com.diffplug.spotless" version "7.2.1" - id "io.opentelemetry.instrumentation.muzzle-generation" version "2.19.0-alpha-SNAPSHOT" - id "io.opentelemetry.instrumentation.muzzle-check" version "2.19.0-alpha-SNAPSHOT" + id "io.opentelemetry.instrumentation.muzzle-generation" version "2.20.0-alpha-SNAPSHOT" + id "io.opentelemetry.instrumentation.muzzle-check" version "2.20.0-alpha-SNAPSHOT" } group 'io.opentelemetry.example' @@ -26,8 +26,8 @@ ext { opentelemetrySdk : "1.53.0", // these lines are managed by .github/scripts/update-version.sh - opentelemetryJavaagent : "2.19.0-SNAPSHOT", - opentelemetryJavaagentAlpha: "2.19.0-alpha-SNAPSHOT" + opentelemetryJavaagent : "2.20.0-SNAPSHOT", + opentelemetryJavaagentAlpha: "2.20.0-alpha-SNAPSHOT" ] deps = [ diff --git a/version.gradle.kts b/version.gradle.kts index 3bbcba5538..f5e9d1b790 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,5 +1,5 @@ -val stableVersion = "2.19.0-SNAPSHOT" -val alphaVersion = "2.19.0-alpha-SNAPSHOT" +val stableVersion = "2.20.0-SNAPSHOT" +val alphaVersion = "2.20.0-alpha-SNAPSHOT" allprojects { if (findProperty("otel.stable") != "true") {