[release/v2.13.x] Prepare release 2.13.3 (#13425)
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
This commit is contained in:
parent
8caa208ba2
commit
4026383fde
|
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
## Version 2.13.3 (2025-02-28)
|
||||
|
||||
### 🛠️ 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.13.2/opentelemetry-javaagent.jar).
|
||||
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.13.3/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.13.2.jar against opentelemetry-instrumentation-annotations-2.12.0.jar
|
||||
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.13.3.jar against opentelemetry-instrumentation-annotations-2.12.0.jar
|
||||
No changes.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
Comparing source compatibility of opentelemetry-instrumentation-api-2.13.2.jar against opentelemetry-instrumentation-api-2.12.0.jar
|
||||
Comparing source compatibility of opentelemetry-instrumentation-api-2.13.3.jar against opentelemetry-instrumentation-api-2.12.0.jar
|
||||
+++ NEW CLASS: PUBLIC(+) FINAL(+) io.opentelemetry.instrumentation.api.semconv.util.SpanNames (not serializable)
|
||||
+++ CLASS FILE FORMAT VERSION: 52.0 <- n.a.
|
||||
+++ NEW SUPERCLASS: java.lang.Object
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.13.2.jar against opentelemetry-spring-boot-autoconfigure-2.12.0.jar
|
||||
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.13.3.jar against opentelemetry-spring-boot-autoconfigure-2.12.0.jar
|
||||
No changes.
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
Comparing source compatibility of opentelemetry-spring-boot-starter-2.13.2.jar against opentelemetry-spring-boot-starter-2.12.0.jar
|
||||
Comparing source compatibility of opentelemetry-spring-boot-starter-2.13.3.jar against opentelemetry-spring-boot-starter-2.12.0.jar
|
||||
No changes.
|
||||
|
|
@ -14,7 +14,7 @@ buildscript {
|
|||
dependencies {
|
||||
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.2"
|
||||
classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6"
|
||||
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.13.2-alpha"
|
||||
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.13.3-alpha"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -30,8 +30,8 @@ subprojects {
|
|||
opentelemetrySdk : "1.47.0",
|
||||
|
||||
// these lines are managed by .github/scripts/update-version.sh
|
||||
opentelemetryJavaagent : "2.13.2",
|
||||
opentelemetryJavaagentAlpha: "2.13.2-alpha",
|
||||
opentelemetryJavaagent : "2.13.3",
|
||||
opentelemetryJavaagentAlpha: "2.13.3-alpha",
|
||||
|
||||
autoservice : "1.1.1",
|
||||
junit : "5.11.4"
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ plugins {
|
|||
id "com.gradleup.shadow" version "8.3.6"
|
||||
id "com.diffplug.spotless" version "7.0.2"
|
||||
|
||||
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.13.2-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-check" version "2.13.2-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.13.3-alpha"
|
||||
id "io.opentelemetry.instrumentation.muzzle-check" version "2.13.3-alpha"
|
||||
}
|
||||
|
||||
group 'io.opentelemetry.example'
|
||||
|
|
@ -26,8 +26,8 @@ ext {
|
|||
opentelemetrySdk : "1.47.0",
|
||||
|
||||
// these lines are managed by .github/scripts/update-version.sh
|
||||
opentelemetryJavaagent : "2.13.2",
|
||||
opentelemetryJavaagentAlpha: "2.13.2-alpha",
|
||||
opentelemetryJavaagent : "2.13.3",
|
||||
opentelemetryJavaagentAlpha: "2.13.3-alpha",
|
||||
|
||||
junit : "5.11.4"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
val stableVersion = "2.13.2"
|
||||
val alphaVersion = "2.13.2-alpha"
|
||||
val stableVersion = "2.13.3"
|
||||
val alphaVersion = "2.13.3-alpha"
|
||||
|
||||
allprojects {
|
||||
if (findProperty("otel.stable") != "true") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue