From e0541db91de1e1c4548d60b3ddd87fe622d540fa Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Mon, 21 Feb 2022 14:00:12 +0200 Subject: [PATCH] v1.8.1 pre release changes (#677) * v1.8.1 pre release changes * Update CHANGELOG.md Co-authored-by: Fabrizio Ferri-Benedetti --- CHANGELOG.md | 10 ++++++++++ README.md | 8 ++++---- .../src/main/kotlin/splunk.java-conventions.gradle.kts | 4 ++-- deployments/cloudfoundry/buildpack/README.md | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a316b7d..85e603896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +## v1.8.1 - 2022-02-21 + +### General + +- OpenTelemetry Instrumentation for Java has been updated to version 1.11.1. + +### Bugfixes + +- Fixed regression in loading the Prometheus exporter. + ## v1.8.0 - 2022-02-15 ### General diff --git a/README.md b/README.md index 98d8f42b5..943d11fc0 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@

Stable - - OpenTelemetry Instrumentation for Java Version + + OpenTelemetry Instrumentation for Java Version Splunk GDI specification @@ -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.8.0 is compatible +The Splunk Distribution of OpenTelemetry Java version 1.8.1 is compatible with: * OpenTelemetry API version 1.11.0 -* OpenTelemetry Instrumentation for Java version 1.11.0 +* OpenTelemetry Instrumentation for Java version 1.11.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 28fcb8653..0e479203e 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.11.0" val otelAlphaVersion = "1.11.0-alpha" val otelContribAlphaVersion = "1.7.0-alpha" -val otelInstrumentationVersion = "1.11.0" -val otelInstrumentationAlphaVersion = "1.11.0-alpha" +val otelInstrumentationVersion = "1.11.1" +val otelInstrumentationAlphaVersion = "1.11.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 170014052..5373a89f9 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.8.0 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.8.1 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.