Skip to content

Commit 22e0841

Browse files
author
Mateusz Rzeszutek
authored
Update the upstream instrumentation version and prepare for patch release (#618)
Upstream v1.9.2 contains a reactor-netty fix that we need to release.
1 parent b8fb63c commit 22e0841

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

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

99
## Unreleased
1010

11+
## v1.6.1 - 2022-01-12
12+
13+
### General
14+
15+
- OpenTelemetry Instrumentation for Java has been updated to version 1.9.2.
16+
17+
### Bugfixes
18+
19+
- Fixed the connection leak in the reactor-netty upstream instrumentation.
20+
1121
## v1.6.0 - 2021-12-01
1222

1323
### General

README.md

Lines changed: 4 additions & 4 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/v1.9.1">
16-
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.9.1-blueviolet?style=for-the-badge">
15+
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.9.2">
16+
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.9.2-blueviolet?style=for-the-badge">
1717
</a>
1818
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.2.0">
1919
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.2.0-blueviolet?style=for-the-badge">
@@ -159,11 +159,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
159159
you have to use a compatible API version.
160160

161161
<!-- IMPORTANT: do not change comments or break those lines below -->
162-
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.6.0<!--SPLUNK_VERSION--> is compatible
162+
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.6.1<!--SPLUNK_VERSION--> is compatible
163163
with:
164164

165165
* OpenTelemetry API version <!--OTEL_VERSION-->1.9.1<!--OTEL_VERSION-->
166-
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.9.1<!--OTEL_INSTRUMENTATION_VERSION-->
166+
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.9.2<!--OTEL_INSTRUMENTATION_VERSION-->
167167
* Micrometer version 1.8.0
168168

169169
## Snapshot builds

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies {
1515
implementation(gradleApi())
1616

1717
implementation("com.diffplug.spotless:spotless-plugin-gradle:5.16.0")
18-
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.9.1-alpha")
18+
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.9.2-alpha")
1919
implementation("io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE")
2020

2121
// keep these versions in sync with settings.gradle.kts

buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ repositories {
1616
val otelVersion = "1.9.1"
1717
val otelAlphaVersion = "1.9.1-alpha"
1818
val otelContribAlphaVersion = "1.7.0-alpha"
19-
val otelInstrumentationVersion = "1.9.1"
20-
val otelInstrumentationAlphaVersion = "1.9.1-alpha"
19+
val otelInstrumentationVersion = "1.9.2"
20+
val otelInstrumentationAlphaVersion = "1.9.2-alpha"
2121
val micrometerVersion = "1.8.0"
2222

2323
// instrumentation version is used to compute Implementation-Version manifest attribute

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 1.6.0
43+
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.6.1
4444
```
4545

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

0 commit comments

Comments
 (0)