Skip to content

Commit

Permalink
Prepare release 1.32.0 (#1819)
Browse files Browse the repository at this point in the history
* Prepare release 1.32.0

* downgrade contrib version

* update signalfx-metrics version
  • Loading branch information
laurit authored Apr 23, 2024
1 parent 9aa6b5b commit fde3b17
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 60 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.

## Unreleased

## v1.32.0 - 2024-04-23

### General

- OpenTelemetry Java SDK has been updated to version 1.37.0.
- OpenTelemetry Instrumentation for Java has been updated to version 1.33.1.
- Micrometer dependency has been updated to version 1.12.5.

### ⚠️⚠️ Breaking changes ⚠️⚠️
- splunk-otel-javaagent-all.jar is not published anymore, use splunk-otel-javaagent.jar (#1756)

## v1.31.1 - 2024-03-21

### General
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

<p align="center">
<img alt="Stable" src="https://img.shields.io/badge/status-stable-informational?style=for-the-badge">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.33.1">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.33.1-blueviolet?style=for-the-badge">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.33.2">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.33.2-blueviolet?style=for-the-badge">
</a>
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.6.0">
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.6.0-blueviolet?style=for-the-badge">
Expand Down Expand Up @@ -104,11 +104,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
you have to use a compatible API version.

<!-- IMPORTANT: do not change comments or break those lines below -->
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.31.1<!--SPLUNK_VERSION--> is compatible
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.32.0<!--SPLUNK_VERSION--> is compatible
with:

* OpenTelemetry API version <!--OTEL_VERSION-->1.36.0<!--OTEL_VERSION-->
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.33.1<!--OTEL_INSTRUMENTATION_VERSION-->
* OpenTelemetry API version <!--OTEL_VERSION-->1.37.0<!--OTEL_VERSION-->
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.33.2<!--OTEL_INSTRUMENTATION_VERSION-->
* Micrometer version 1.12.2

## Snapshot builds
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
implementation(gradleApi())

implementation("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.33.1-alpha")
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.33.2-alpha")

// keep these versions in sync with settings.gradle.kts
implementation("gradle.plugin.com.github.johnrengelman:shadow:8.0.0")
Expand Down
8 changes: 4 additions & 4 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ plugins {
`java-platform`
}

val otelVersion = "1.36.0"
val otelVersion = "1.37.0"
val otelAlphaVersion = otelVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
val otelInstrumentationVersion = "1.33.1"
val otelInstrumentationVersion = "1.33.2"
val otelInstrumentationAlphaVersion = otelInstrumentationVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
val otelContribAlphaVersion = "1.33.0-alpha"
val otelContribAlphaVersion = "1.34.0-alpha"

val autoValueVersion = "1.10.4";
val dockerJavaVersion = "3.3.6"
Expand Down Expand Up @@ -43,7 +43,7 @@ dependencies {
api("com.google.auto.service:auto-service:1.1.1")
api("org.assertj:assertj-core:3.25.3")
api("org.awaitility:awaitility:4.2.1")
api("com.signalfx.public:signalfx-metrics:1.0.40")
api("com.signalfx.public:signalfx-metrics:1.0.41")
api("commons-codec:commons-codec:1.16.1")

api("com.github.docker-java:docker-java-core:$dockerJavaVersion")
Expand Down
2 changes: 1 addition & 1 deletion deployments/cloudfoundry/buildpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 1.31.1
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.32.0
```

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

0 comments on commit fde3b17

Please sign in to comment.