Skip to content

Commit

Permalink
Prepare for 1.20.0 release (#1081)
Browse files Browse the repository at this point in the history
* prepare for release

* skip 4.0.0 based on upstream message re: broken slf4j.version being taken literally

* fix incomplete sentence.

* Update CHANGELOG.md

Co-authored-by: Mateusz Rzeszutek <[email protected]>

* update more versions

* template foo

Co-authored-by: Mateusz Rzeszutek <[email protected]>
  • Loading branch information
breedx-splk and Mateusz Rzeszutek authored Jan 18, 2023
1 parent b81d6eb commit fbc7eee
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.

## Unreleased

## v1.20.0 - 2023-01-18

Regular maintenance release, coordinated after the upstream/vanilla release.

- OpenTelemetry Java SDK updated to version 1.22.0
- OpenTelemetry Instrumentation for Java dependencies updated to version 1.22.1.
- Upgrade to Gradle 7.6 (#1062)
- Upgrade to Micrometer 1.10.3 (#1065)
- Truncate `process.command_line` resource attribute when metrics are enabled (#1057)
- Numerous other minor dependency upgrades.

## v1.19.0 - 2022-12-16

### General
Expand Down
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

<p align="center">
<img alt="Stable" src="https://img.shields.io/badge/status-stable-informational?style=for-the-badge">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.21.0">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.21.0-blueviolet?style=for-the-badge">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.22.1">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.22.1-blueviolet?style=for-the-badge">
</a>
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.4.0">
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.4.0-blueviolet?style=for-the-badge">
Expand Down Expand Up @@ -75,11 +75,6 @@ see [Migrate from the SignalFx Java Agent](https://docs.splunk.com/Observability

<!-- Comments, spacing, empty and new lines in the section below are intentional, please do not modify them! -->
<!--DEV_DOCS_WARNING-->
<!--DEV_DOCS_WARNING_START-->
The following documentation refers to the in-development version of `splunk-otel-java`. Docs for the latest version ([v1.19.0](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v1.19.0/README.md).

---
<!--DEV_DOCS_WARNING_END-->

## Requirements

Expand Down Expand Up @@ -162,11 +157,11 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java,
you have to use a compatible API version.

<!-- IMPORTANT: do not change comments or break those lines below -->
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.19.0<!--SPLUNK_VERSION--> is compatible
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.20.0<!--SPLUNK_VERSION--> is compatible
with:

* OpenTelemetry API version <!--OTEL_VERSION-->1.21.0<!--OTEL_VERSION-->
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.21.0<!--OTEL_INSTRUMENTATION_VERSION-->
* OpenTelemetry API version <!--OTEL_VERSION-->1.22.0<!--OTEL_VERSION-->
* OpenTelemetry Instrumentation for Java version <!--OTEL_INSTRUMENTATION_VERSION-->1.22.1<!--OTEL_INSTRUMENTATION_VERSION-->
* Micrometer version 1.10.3

## Snapshot builds
Expand Down
4 changes: 2 additions & 2 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {

val otelVersion = "1.22.0"
val otelAlphaVersion = "1.22.0-alpha"
val otelInstrumentationVersion = "1.22.0-SNAPSHOT"
val otelInstrumentationAlphaVersion = "1.22.0-alpha-SNAPSHOT"
val otelInstrumentationVersion = "1.22.1"
val otelInstrumentationAlphaVersion = "1.22.1-alpha"
val otelContribAlphaVersion = "1.21.0-alpha"

val micrometerVersion = "1.10.3"
Expand Down
2 changes: 1 addition & 1 deletion deployments/cloudfoundry/buildpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.0
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.20.0
```

By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.
Expand Down
3 changes: 3 additions & 0 deletions instrumentation/hikaricp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ muzzle {
module.set("HikariCP")
versions.set("[3.0.0,)")
// muzzle does not detect PoolStats method references used - some of these methods were introduced in 3.0 and we can't assertInverse

// 4.0.0 uses a broken slf4j version: the "${slf4j.version}" placeholder is taken literally
skip("4.0.0")
}
}

Expand Down

0 comments on commit fbc7eee

Please sign in to comment.