From 8b825b23068fab30be36ac5017486a6edad0fb1f Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Mon, 24 Jun 2024 21:01:26 +0300 Subject: [PATCH] Prepare release 2.5.0 (#1910) --- CHANGELOG.md | 10 ++++++++++ README.md | 15 +++++---------- deployments/cloudfoundry/buildpack/README.md | 2 +- version.gradle.kts | 2 +- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c99fd3a0..90c4443cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +## v2.5.0 - 2024-06-25 + +- OpenTelemetry Java SDK has been updated to version 1.39.0. +- OpenTelemetry Instrumentation for Java has been updated to version 2.5.0. + +### ⚠️⚠️ Breaking changes ⚠️⚠️ + +2.5.0 is the first non alpha release in the 2.x series. Please consult the release notes of +2.0.0-alpha for the breaking changes when you are switching from the 1.x version of the agent. + ## v1.32.2 - 2024-06-20 ### General diff --git a/README.md b/README.md index 973b54c03..3b5a45e62 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@

Stable - - OpenTelemetry Instrumentation for Java Version + + OpenTelemetry Instrumentation for Java Version Splunk GDI specification @@ -73,11 +73,6 @@ see [Migrate from the SignalFx Java Agent](https://quickdraw.splunk.com/redirect - -The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v2.4.0-alpha](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v2.4.0-alpha/README.md). - ---- - ## Requirements @@ -109,11 +104,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java, you have to use a compatible API version. -The Splunk Distribution of OpenTelemetry Java version 2.4.0-alpha is compatible +The Splunk Distribution of OpenTelemetry Java version 2.5.0 is compatible with: -* OpenTelemetry API version 1.38.0 -* OpenTelemetry Instrumentation for Java version 2.4.0 +* OpenTelemetry API version 1.39.0 +* OpenTelemetry Instrumentation for Java version 2.5.0 ## Snapshot builds diff --git a/deployments/cloudfoundry/buildpack/README.md b/deployments/cloudfoundry/buildpack/README.md index f7f195f8f..98aba610a 100644 --- a/deployments/cloudfoundry/buildpack/README.md +++ b/deployments/cloudfoundry/buildpack/README.md @@ -40,7 +40,7 @@ If you want to use a specific version of the Java agent in your application, you environment variable before application deployment, either using `cf set-env` or the `manifest.yml` file: ```sh -$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.4.0-alpha +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.5.0 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used. diff --git a/version.gradle.kts b/version.gradle.kts index 5589a469a..742cd910c 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,5 +1,5 @@ // do NOT update that variable manually - it is managed by the pre/post release scripts -val distroVersion = "2.5.0-alpha-SNAPSHOT" +val distroVersion = "2.5.0" allprojects { version = distroVersion