Prepare release 2.20.1
This commit is contained in:
parent
2442e08ea6
commit
17b96aff27
|
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
## Version 2.20.1 (2025-09-19)
|
||||
|
||||
### 🛠️ Bug fixes
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ If you are looking for documentation on using those.
|
|||
## Getting Started
|
||||
|
||||
Download
|
||||
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.20.0/opentelemetry-javaagent.jar).
|
||||
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.20.1/opentelemetry-javaagent.jar).
|
||||
|
||||
This package includes the instrumentation agent as well as
|
||||
instrumentations for all supported libraries and all available data exporters.
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.20.0.jar against opentelemetry-instrumentation-annotations-2.19.0.jar
|
||||
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.20.1.jar against opentelemetry-instrumentation-annotations-2.19.0.jar
|
||||
No changes.
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-instrumentation-api-2.20.0.jar against opentelemetry-instrumentation-api-2.19.0.jar
|
||||
Comparing source compatibility of opentelemetry-instrumentation-api-2.20.1.jar against opentelemetry-instrumentation-api-2.19.0.jar
|
||||
No changes.
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.20.0.jar against opentelemetry-spring-boot-autoconfigure-2.19.0.jar
|
||||
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.20.1.jar against opentelemetry-spring-boot-autoconfigure-2.19.0.jar
|
||||
No changes.
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-spring-boot-starter-2.20.0.jar against opentelemetry-spring-boot-starter-2.19.0.jar
|
||||
Comparing source compatibility of opentelemetry-spring-boot-starter-2.20.1.jar against opentelemetry-spring-boot-starter-2.19.0.jar
|
||||
No changes.
|
||||
|
|
@ -14,7 +14,7 @@ buildscript {
|
|||
dependencies {
|
||||
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.2.1"
|
||||
classpath "com.gradleup.shadow:shadow-gradle-plugin:9.1.0"
|
||||
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.20.0-alpha"
|
||||
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.20.1-alpha"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -30,8 +30,8 @@ subprojects {
|
|||
opentelemetrySdk : "1.54.1",
|
||||
|
||||
// these lines are managed by .github/scripts/update-version.sh
|
||||
opentelemetryJavaagent : "2.20.0",
|
||||
opentelemetryJavaagentAlpha: "2.20.0-alpha",
|
||||
opentelemetryJavaagent : "2.20.1",
|
||||
opentelemetryJavaagentAlpha: "2.20.1-alpha",
|
||||
|
||||
autoservice : "1.1.1"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ plugins {
|
|||
id "com.gradleup.shadow" version "9.1.0"
|
||||
id "com.diffplug.spotless" version "7.2.1"
|
||||
|
||||
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.20.0-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-check" version "2.20.0-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.20.1-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-check" version "2.20.1-alpha"
|
||||
}
|
||||
|
||||
group 'io.opentelemetry.example'
|
||||
|
|
@ -26,8 +26,8 @@ ext {
|
|||
opentelemetrySdk : "1.54.1",
|
||||
|
||||
// these lines are managed by .github/scripts/update-version.sh
|
||||
opentelemetryJavaagent : "2.20.0",
|
||||
opentelemetryJavaagentAlpha: "2.20.0-alpha"
|
||||
opentelemetryJavaagent : "2.20.1",
|
||||
opentelemetryJavaagentAlpha: "2.20.1-alpha"
|
||||
]
|
||||
|
||||
deps = [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
val stableVersion = "2.20.0"
|
||||
val alphaVersion = "2.20.0-alpha"
|
||||
val stableVersion = "2.20.1"
|
||||
val alphaVersion = "2.20.1-alpha"
|
||||
|
||||
allprojects {
|
||||
if (findProperty("otel.stable") != "true") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue