Skip to content

Commit b959db6

Browse files
authored
Prepare for 2.4.0-alpha release (#1868)
* prepare for 2.4.0 release * update to alpha
1 parent 3dcc6bf commit b959db6

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ The format is based on
66
the [Splunk GDI specification](https://github.com/signalfx/gdi-specification/blob/v1.0.0/specification/repository.md),
77
and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## Unreleased
9+
## v2.4.0-alpha - 2024-04-30
10+
11+
- OpenTelemetry Java SDK has been updated to version 1.38.0.
12+
- OpenTelemetry Instrumentation for Java has been updated to version 2.4.0.
13+
14+
Note: 2.4.0-alpha release is considered experimental, Splunk recommends using 1.x version of the agent.
15+
16+
- Thread pool metrics for Liberty, Tomcat, and WebLogic have been removed.
17+
[#1848](https://github.com/signalfx/splunk-otel-java/pull/1848)
1018

1119
## v1.32.0 - 2024-04-23
1220

README.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<p align="center">
1414
<img alt="Stable" src="https://img.shields.io/badge/status-stable-informational?style=for-the-badge">
15-
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.3.0">
16-
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-2.3.0-blueviolet?style=for-the-badge">
15+
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v2.4.0">
16+
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-2.4.0-blueviolet?style=for-the-badge">
1717
</a>
1818
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.6.0">
1919
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.6.0-blueviolet?style=for-the-badge">
@@ -73,11 +73,6 @@ see [Migrate from the SignalFx Java Agent](https://quickdraw.splunk.com/redirect
7373

7474
<!-- Comments, spacing, empty and new lines in the section below are intentional, please do not modify them! -->
7575
<!--DEV_DOCS_WARNING-->
76-
<!--DEV_DOCS_WARNING_START-->
77-
The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v2.3.0-alpha](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v2.3.0-alpha/README.md).
78-
79-
---
80-
<!--DEV_DOCS_WARNING_END-->
8176

8277
## Requirements
8378

@@ -109,11 +104,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
109104
you have to use a compatible API version.
110105

111106
<!-- IMPORTANT: do not change comments or break those lines below -->
112-
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.3.0-alpha<!--SPLUNK_VERSION--> is compatible
107+
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->2.4.0-alpha<!--SPLUNK_VERSION--> is compatible
113108
with:
114109

115-
* OpenTelemetry API version <!--OTEL_VERSION-->1.37.0<!--OTEL_VERSION-->
116-
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.3.0<!--OTEL_INSTRUMENTATION_VERSION-->
110+
* OpenTelemetry API version <!--OTEL_VERSION-->1.38.0<!--OTEL_VERSION-->
111+
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->2.4.0<!--OTEL_INSTRUMENTATION_VERSION-->
117112

118113
## Snapshot builds
119114

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.3.0-alpha
43+
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.4.0-alpha
4444
```
4545

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

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.4.0-alpha-SNAPSHOT"
2+
val distroVersion = "2.4.0-alpha"
33

44
allprojects {
55
version = distroVersion

0 commit comments

Comments
 (0)