Skip to content

Commit

Permalink
v1.12.0 pre-release changes (#811)
Browse files Browse the repository at this point in the history
* prep for v1.12.0 release

* correct gradle plugin version
  • Loading branch information
breedx-splk authored Jun 9, 2022
1 parent 4978a0f commit e6fb1b9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.

## Unreleased

## v1.12.0 - 2022-06-09

- Compliance with [GDI spec version 1.3.0](https://github.com/signalfx/gdi-specification/releases/tag/v1.3.0)
- Bug fix for `OTEL_EXPORTER_OTLP_ENDPOINT` not overriding the `splunk.realm` property (#795)
- Profiling stack trace data defaults to pprof format (#799)
- Change metric names used by memory profiling:
- `jvm.experimental.memory.allocated` -> `process.runtime.jvm.memory.allocated`
- `jvm.experimental.memory.reclaimed` -> `process.runtime.jvm.memory.reclaimed`
(these two have also been migrated from Gauge to Counter)

## v1.11.0 - 2022-05-18

### General
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,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.11.0](https://github.com/signalfx/splunk-otel-java/releases/latest)) can be found [here](https://github.com/signalfx/splunk-otel-java/blob/v1.11.0/README.md).

---
<!--DEV_DOCS_WARNING_END-->

## Requirements

Expand Down Expand Up @@ -165,7 +160,7 @@ 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.11.0<!--SPLUNK_VERSION--> is compatible
The Splunk Distribution of OpenTelemetry Java version <!--SPLUNK_VERSION-->1.12.0<!--SPLUNK_VERSION--> is compatible
with:

* OpenTelemetry API version <!--OTEL_VERSION-->1.14.0<!--OTEL_VERSION-->
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {

implementation("com.diffplug.spotless:spotless-plugin-gradle:6.4.2")
// TODO: remove the snapshot version once 1.15 is released
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.15.0-alpha-SNAPSHOT")
implementation("io.opentelemetry.instrumentation:gradle-plugins:1.14.0-alpha")
implementation("io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE")

// keep these versions in sync with settings.gradle.kts
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ repositories {
val otelVersion = "1.14.0"
val otelAlphaVersion = "1.14.0-alpha"
val otelContribAlphaVersion = "1.14.0-alpha"
val otelInstrumentationVersion = "1.15.0-SNAPSHOT"
val otelInstrumentationAlphaVersion = "1.15.0-alpha-SNAPSHOT"
val otelInstrumentationVersion = "1.14.0"
val otelInstrumentationAlphaVersion = "1.14.0-alpha"
val micrometerVersion = "1.9.0"

// instrumentation version is used to compute Implementation-Version manifest attribute
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.11.0
$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.12.0
```

By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used.
Expand Down

0 comments on commit e6fb1b9

Please sign in to comment.