diff --git a/CHANGELOG.md b/CHANGELOG.md index b7df31794..86b060882 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,17 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +## v1.9.1 - 2022-03-18 + +### General + +- OpenTelemetry Instrumentation for Java has been updated to version 1.12.1. + +### Bugfixes + +- Fixed Elasticsearch rest client using high cardinality span name. +- Fixed a possible deadlock. + ## v1.9.0 - 2022-03-14 ### General diff --git a/README.md b/README.md index 1385fc321..7a04632e6 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@
- - + + @@ -159,11 +159,11 @@ 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 1.9.0 is compatible +The Splunk Distribution of OpenTelemetry Java version 1.9.1 is compatible with: * OpenTelemetry API version 1.12.0 -* OpenTelemetry Instrumentation for Java version 1.12.0 +* OpenTelemetry Instrumentation for Java version 1.12.1 * Micrometer version 1.8.2 ## Snapshot builds diff --git a/buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts b/buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts index 8d488e4e1..d8fe5b16f 100644 --- a/buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts @@ -16,8 +16,8 @@ repositories { val otelVersion = "1.12.0" val otelAlphaVersion = "1.12.0-alpha" val otelContribAlphaVersion = "1.12.0-alpha" -val otelInstrumentationVersion = "1.12.0" -val otelInstrumentationAlphaVersion = "1.12.0-alpha" +val otelInstrumentationVersion = "1.12.1" +val otelInstrumentationAlphaVersion = "1.12.1-alpha" val micrometerVersion = "1.8.2" // instrumentation version is used to compute Implementation-Version manifest attribute diff --git a/deployments/cloudfoundry/buildpack/README.md b/deployments/cloudfoundry/buildpack/README.md index b28c1c2f0..a4104fe77 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 1.9.0 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.9.1 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.