From ab13c40c4d3d8c151b8aa664e51d89d415a2234e Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Fri, 20 Sep 2024 08:42:20 +0300 Subject: [PATCH] Prepare release 2.8.1 --- CHANGELOG.md | 4 ++++ README.md | 2 +- dependencyManagement/build.gradle.kts | 2 +- deployments/cloudfoundry/buildpack/README.md | 2 +- licenses/licenses.md | 4 ++-- version.gradle.kts | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1f4a3e90..172c5d7ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +## v2.8.1 - 2024-09-20 + +- Protobuf dependency has been updated to version 3.25.5. + ## v2.8.0 - 2024-09-18 - OpenTelemetry Java SDK has been updated to version 1.42.1. diff --git a/README.md b/README.md index a17b63827..1828aa764 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ 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 2.8.0 is compatible +The Splunk Distribution of OpenTelemetry Java version 2.8.1 is compatible with: * OpenTelemetry API version 1.42.1 diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index ef4bfa04d..978762c7a 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -11,7 +11,7 @@ val otelContribAlphaVersion = "1.39.0-alpha" val autoValueVersion = "1.11.0" val dockerJavaVersion = "3.4.0" val mockitoVersion = "5.13.0" -val protobufVersion = "3.25.4" +val protobufVersion = "3.25.5" val slf4jVersion = "2.0.16" // 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 db0675da2..f063ac459 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 2.8.0 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 2.8.1 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used. diff --git a/licenses/licenses.md b/licenses/licenses.md index 99cb2c184..36b534ee1 100644 --- a/licenses/licenses.md +++ b/licenses/licenses.md @@ -1,7 +1,7 @@ # splunk-otel-javaagent ## Dependency License Report -_2024-09-18 12:43:15 EEST_ +_2024-09-20 08:39:53 EEST_ ## Apache License, Version 2.0 **1** **Group:** `com.squareup.okhttp3` **Name:** `okhttp` **Version:** `4.12.0` @@ -132,7 +132,7 @@ _2024-09-18 12:43:15 EEST_ ## The 3-Clause BSD License -**30** **Group:** `com.google.protobuf` **Name:** `protobuf-java` **Version:** `3.25.4` +**30** **Group:** `com.google.protobuf` **Name:** `protobuf-java` **Version:** `3.25.5` > - **Manifest Project URL**: [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) > - **Manifest License**: The 3-Clause BSD License (Not Packaged) > - **POM License**: The 3-Clause BSD License - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) diff --git a/version.gradle.kts b/version.gradle.kts index 3e9ca8d4c..736c12cb8 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,5 +1,5 @@ // do NOT update that variable manually - it is managed by the pre/post release scripts -val distroVersion = "2.8.0" +val distroVersion = "2.8.1" allprojects { version = distroVersion