Skip to content

Commit ef85190

Browse files
author
Mateusz Rzeszutek
authored
v1.4.0 pre-release changes (#453)
1 parent 0f45c00 commit ef85190

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

CHANGELOG.md

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

99
## Unreleased
1010

11+
## v1.4.0 - 2021-09-20
12+
13+
### General
14+
15+
- OpenTelemetry Java SDK and OpenTelemetry Instrumentation for Java dependencies have been updated to version 1.6.0.
16+
- Micrometer dependency was updated to version 1.7.4.
17+
1118
## v1.3.1 - 2021-08-27
1219

1320
- OpenTelemetry Instrumentation for Java has been updated to version 1.5.2. This fixes

README.md

Lines changed: 6 additions & 11 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.5.2">
16-
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.5.2-blueviolet?style=for-the-badge">
15+
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.6.0">
16+
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.6.0-blueviolet?style=for-the-badge">
1717
</a>
1818
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.0.0">
1919
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.0.0-blueviolet?style=for-the-badge">
@@ -78,11 +78,6 @@ see [Migrate from the SignalFx Java Agent](https://docs.splunk.com/Observability
7878

7979
<!-- Comments, spacing, empty and new lines in the section below are intentional, please do not modify them! -->
8080
<!--DEV_DOCS_WARNING-->
81-
<!--DEV_DOCS_WARNING_START-->
82-
The documentation below refers to the in development version of this package. Docs for the latest version ([v1.3.1](https://github.com/signalfx/splunk-otel-java/releases/tag/v1.3.1)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v1.3.1/README.md).
83-
84-
---
85-
<!--DEV_DOCS_WARNING_END-->
8681

8782
## Requirements
8883

@@ -163,12 +158,12 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
163158
you have to use a compatible API version.
164159

165160
<!-- IMPORTANT: do not change comments or break those lines below -->
166-
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.3.1<!--SPLUNK_VERSION--> is compatible
161+
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.4.0<!--SPLUNK_VERSION--> is compatible
167162
with:
168163

169-
* OpenTelemetry API version <!--OTEL_VERSION-->1.5.0<!--OTEL_VERSION-->
170-
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.5.2<!--OTEL_INSTRUMENTATION_VERSION-->
171-
* Micrometer version 1.7.3
164+
* OpenTelemetry API version <!--OTEL_VERSION-->1.6.0<!--OTEL_VERSION-->
165+
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.6.0<!--OTEL_INSTRUMENTATION_VERSION-->
166+
* Micrometer version 1.7.4
172167

173168
## Snapshot builds
174169

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ repositories {
1515

1616
val otelVersion = "1.6.0"
1717
val otelAlphaVersion = "1.6.0-alpha"
18-
val otelInstrumentationVersion = "1.6.0-SNAPSHOT"
19-
val otelInstrumentationAlphaVersion = "1.6.0-alpha-SNAPSHOT"
20-
val micrometerVersion = "1.7.3";
18+
val otelInstrumentationVersion = "1.6.0"
19+
val otelInstrumentationAlphaVersion = "1.6.0-alpha"
20+
val micrometerVersion = "1.7.4"
2121

2222
// dependencyManagement can't into classifiers, we have to pass version the old way for deps with qualifiers
2323
extra["otelInstrumentationVersion"] = otelInstrumentationVersion

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.3.1
43+
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.4.0
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)