Skip to content

Commit ea2f627

Browse files
authored
Prepare release 2.29.0 (#2893)
* Prepare release 2.29.0 * fix link * update contrib
1 parent d6e3ca8 commit ea2f627

8 files changed

Lines changed: 19 additions & 50 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.
88

99
## Unreleased
1010

11+
## v2.29.0 - 2026-06-20
12+
13+
- OpenTelemetry Java SDK has been updated to version [1.63.0](https://github.com/open-telemetry/opentelemetry-java/releases/tag/v1.63.0).
14+
- OpenTelemetry Instrumentation for Java has been updated to version [2.29.0](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.29.0).
15+
1116
## v2.28.0 - 2026-05-22
1217

1318
- OpenTelemetry Java SDK has been updated to version 1.62.0.

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Splunk Distribution of OpenTelemetry Java
22

33
![Stable](https://img.shields.io/badge/status-stable-informational)
4-
[![OpenTelemetry Instrumentation for Java Version](https://img.shields.io/badge/otel-2.28.1-blueviolet)](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.28.1)
4+
[![OpenTelemetry Instrumentation for Java Version](https://img.shields.io/badge/otel-2.29.0-blueviolet)](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.29.0)
55
[![Splunk GDI specification](https://img.shields.io/badge/GDI-1.9.0-blueviolet)](https://github.com/signalfx/gdi-specification/releases/tag/v1.9.0)
66
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/signalfx/splunk-otel-java?include_prereleases)](https://github.com/signalfx/splunk-otel-java/releases)
77
[![Maven Central](https://img.shields.io/maven-central/v/com.splunk/splunk-otel-javaagent)](https://central.sonatype.com/artifact/com.splunk/splunk-otel-javaagent)
@@ -43,11 +43,6 @@ see [Migrate from the SignalFx Java Agent](https://help.splunk.com/en/splunk-obs
4343

4444
<!-- Comments, spacing, empty and new lines in the section below are intentional, please do not modify them! -->
4545
<!--DEV_DOCS_WARNING-->
46-
<!--DEV_DOCS_WARNING_START-->
47-
The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v2.28.0](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v2.28.0/README.md).
48-
49-
---
50-
<!--DEV_DOCS_WARNING_END-->
5146

5247
## Requirements
5348

@@ -79,11 +74,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
7974
you have to use a compatible API version.
8075

8176
<!-- IMPORTANT: do not change comments or break those lines below -->
82-
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.28.0<!--SPLUNK_VERSION--> is compatible
77+
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.29.0<!--SPLUNK_VERSION--> is compatible
8378
with:
8479

85-
* OpenTelemetry API version <!--OTEL_VERSION-->1.62.0<!--OTEL_VERSION-->
86-
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.28.1<!--OTEL_INSTRUMENTATION_VERSION-->
80+
* OpenTelemetry API version <!--OTEL_VERSION-->1.63.0<!--OTEL_VERSION-->
81+
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.29.0<!--OTEL_INSTRUMENTATION_VERSION-->
8782

8883
## Snapshot builds
8984

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies {
4141
implementation(gradleApi())
4242

4343
implementation("com.diffplug.spotless:spotless-plugin-gradle:8.7.0")
44-
implementation("io.opentelemetry.instrumentation:gradle-plugins:2.27.0-alpha")
44+
implementation("io.opentelemetry.instrumentation:gradle-plugins:2.29.0-alpha")
4545

4646
// keep these versions in sync with settings.gradle.kts
4747
implementation("com.gradleup.shadow:shadow-gradle-plugin:9.4.2")

dependencyManagement/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ plugins {
44

55
val otelVersion = "1.63.0"
66
val otelAlphaVersion = otelVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
7-
val otelInstrumentationVersion = "2.29.0-SNAPSHOT"
7+
val otelInstrumentationVersion = "2.29.0"
88
val otelInstrumentationAlphaVersion = otelInstrumentationVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
9-
val otelContribAlphaVersion = "1.57.0-alpha"
9+
val otelContribAlphaVersion = "1.58.0-alpha"
1010

1111
val autoValueVersion = "1.11.1"
1212
val dockerJavaVersion = "3.7.1"

deployments/cloudfoundry/buildpack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If you want to use a specific version of the Java agent in your application, you
4040
environment variable before application deployment, either using `cf set-env` or the `manifest.yml` file:
4141

4242
```sh
43-
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.28.0
43+
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.29.0
4444
```
4545

4646
By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.

licenses/licenses.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# splunk-otel-javaagent
33
## Dependency License Report
4-
_2026-06-12 09:37:13 EEST_
4+
_2026-06-19 23:45:34 EEST_
55
## Apache License, Version 2.0
66

77
**1** **Group:** `com.squareup.okhttp3` **Name:** `okhttp` **Version:** `5.4.0`
@@ -76,19 +76,19 @@ _2026-06-12 09:37:13 EEST_
7676
> - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java)
7777
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
7878
79-
**19** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-opamp-client` **Version:** `1.57.0-alpha`
79+
**19** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-opamp-client` **Version:** `1.58.0-alpha`
8080
> - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib)
8181
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
8282
83-
**20** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-resource-providers` **Version:** `1.57.0-alpha`
83+
**20** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-resource-providers` **Version:** `1.58.0-alpha`
8484
> - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib)
8585
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
8686
87-
**21** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-samplers` **Version:** `1.57.0-alpha`
87+
**21** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-samplers` **Version:** `1.58.0-alpha`
8888
> - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib)
8989
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
9090
91-
**22** **Group:** `io.opentelemetry.instrumentation` **Name:** `opentelemetry-instrumentation-bom-alpha` **Version:** `2.29.0-alpha-SNAPSHOT`
91+
**22** **Group:** `io.opentelemetry.instrumentation` **Name:** `opentelemetry-instrumentation-bom-alpha` **Version:** `2.29.0-alpha`
9292
> - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-instrumentation](https://github.com/open-telemetry/opentelemetry-java-instrumentation)
9393
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
9494

opamp/src/main/java/io/opentelemetry/api/internal/InstrumentationUtil.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

version.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// do NOT update that variable manually - it is managed by the pre/post release scripts
2-
val distroVersion = "2.29.0-SNAPSHOT"
2+
val distroVersion = "2.29.0"
33

44
allprojects {
55
version = distroVersion

0 commit comments

Comments
 (0)