diff --git a/CHANGELOG.md b/CHANGELOG.md index 5820b474d..c73548898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,21 @@ the [Splunk GDI specification](https://github.com/signalfx/gdi-specification/blo and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +- tbd + +## v1.14.0 - 2022-07-22 + +### Bugfixes +- Exclude transitive gson dependency (mitigates [CVE-2022-25647](https://nvd.nist.gov/vuln/detail/CVE-2022-25647)) (#829) + +### Enhancements +- Add `splunk.metrics.implementation` config property to allow switching metrics implementation (#836) +- Several instrumentation additions, including C3P0 connection pool metrics, Kafka client metrics, JVM buffer pool metrics, and more! + - See the upstream [1.16.0 release notes](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.16.0) for additional details. ### General +- OpenTelemetry Java SDK and OpenTelemetry Instrumentation for Java dependencies have been updated to version 1.16.0. - Micrometer dependency has been updated to version 1.9.2. ## v1.13.1 - 2022-07-04 diff --git a/README.md b/README.md index bb4812763..a97a33709 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,6 @@ see [Migrate from the SignalFx Java Agent](https://docs.splunk.com/Observability - -The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v1.13.1](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v1.13.1/README.md). - ---- - ## Requirements @@ -162,7 +157,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 1.13.1 is compatible +The Splunk Distribution of OpenTelemetry Java version 1.14.0 is compatible with: * OpenTelemetry API version 1.15.0 diff --git a/deployments/cloudfoundry/buildpack/README.md b/deployments/cloudfoundry/buildpack/README.md index a2fd4e44e..628d2823e 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.13.1 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.14.0 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.