diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a1a59c41..3e6636184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +## v2.30.1 - 2026-08-12 + +- CSA updated to 26.8.0-1482 + ## v2.30.0 - 2026-07-29 - OpenTelemetry Java SDK has been updated to version [1.64.0](https://github.com/open-telemetry/opentelemetry-java/releases/tag/v1.64.0). diff --git a/README.md b/README.md index 0f8698b62..987d06264 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ 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.30.0 is compatible +The Splunk Distribution of OpenTelemetry Java version 2.30.1 is compatible with: * OpenTelemetry API version 1.64.0 diff --git a/agent-csa-bundle/build.gradle.kts b/agent-csa-bundle/build.gradle.kts index 237db847f..36b239cdc 100644 --- a/agent-csa-bundle/build.gradle.kts +++ b/agent-csa-bundle/build.gradle.kts @@ -8,7 +8,7 @@ plugins { // This should be updated for every CSA release, eventually in dependencyManagement? -val csaVersion = "26.3.0-1440" +val csaVersion = "26.8.0-1482" val otelInstrumentationVersion: String = rootProject.extra["otelInstrumentationVersion"] as String base.archivesName.set("splunk-otel-javaagent-csa") diff --git a/deployments/cloudfoundry/buildpack/README.md b/deployments/cloudfoundry/buildpack/README.md index 28acacee9..42cd45fe2 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.30.0 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.30.1 ``` 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 1356ffa10..959afa8c9 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.30.0" +val distroVersion = "2.30.1" allprojects { version = distroVersion