Skip to content

Commit

Permalink
Prepare changelog for 1.15.0 (#4521)
Browse files Browse the repository at this point in the history
* Prepare changelog for 1.15.0

* Add changelog entry to authority override
  • Loading branch information
jack-berg authored Jun 10, 2022
1 parent 86cc4bc commit 37772d7
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 4 deletions.
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,63 @@
# Changelog

## Version 1.15.0 (Unreleased)

### API

* Add batch callback API, allowing a single callback to record measurements to multiple metric
instruments.

### SDK

#### Metrics

* `SdkMeterProvider#toString()` now returns a useful string describing configuration.
* Fix bug preventing proper function of Metrics SDK when multiple readers are
present ([#4436](https://github.com/open-telemetry/opentelemetry-java/pull/4436)).
* Fix reporting intervals for metrics for delta
readers ([#4400](https://github.com/open-telemetry/opentelemetry-java/issues/4400)).

#### Exporter

* BREAKING: merge all stable OTLP exporters into `opentelemetry-exporter-otlp`.
`opentelemetry-exporter-otlp-trace`, `opentelemetry-exporter-otlp-metrics`,
`opentelemetry-exporter-otlp-http-trace`, and `opentelemetry-exporter-otlp-http-metrics` are no
longer published and their contents have been merged into a single artifact.
* BREAKING: merge log OTLP exporters into `opentelemetry-exporter-otlp-logs`.
`opentelemetry-exporter-otlp-http-logs` is no longer published and its contents have been merged
into a single artifact.
* Upgrade to OTLP protobuf version 0.18.0.
* RetryInterceptor retries on `SocketTimeoutException` with no message.
* Added `JaegerGrpcSpanExporterBuilder#setMeterProvider()`, enabling support of experimental jaeger
span export metrics.
* DEPRECATION: the `opentelemetry-exporter-jaeger-proto` module containing jaeger proto definitions
and corresponding generated classes is deprecated for removal in next major version.
* OTLP gRPC exporters support overriding `:authority`
via `OtlpGrpc*ExporterBuilder#addHeader("host", "my-authority-override")`.

#### SDK Extensions

* BREAKING: Move `ConfigureableMetricExporterProvider`
from `opentelemetry-sdk-extension-autoconfigure` to
stable `opentelemetry-sdk-extension-autoconfigure-spi`.
* Autoconfigure now supports multiple values for `otel.metrics.exporter`.
* Autoconfigure now
supports [general attribute limits](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#attribute-limits),
applicable to span attributes, span event attributes, span link attributes, and log attributes.
* Autoconfigure now supports an experimental option to disable the SDK.
If `otel.experimental.sdk.enabled=true`, `AutoConfiguredOpenTelemetrySdk#getOpenTelemetrySdk()`
returns a minimal (but not noop) `OpenTelemetrySdk`. The same minimal instance is set
to `GlobalOpenTelemetry`.
* New "get or default" methods have been added to `ConfigProperties`.
E.g. `ConfigProperties#getString("otel.metrics.exporter", "otlp")` fetches the value for the
property `otel.metrics.exporter` and returns `otlp` if it is not set.
* Fix bug in `ContainerResource` provider that caused it to throw an exception in some instances
when containerd is used.

### Micrometer shim

* Cache descriptions such that metrics with the same name use the first seen description.

## Version 1.14.0 (2022-05-09)

The metrics SDK is stable! New stable artifacts include:
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ so you still have to run `spotlessApply` from time to time.
* Each API element should have a `@since` tag specifying the minor version when it was released (or
the next minor version).
* There MUST be NO javadoc errors.
*

See [section 7.3.1](https://google.github.io/styleguide/javaguide.html#s7.3.1-javadoc-exception-self-explanatory)
in the guide for exceptions to the Javadoc requirement.
Expand Down
7 changes: 4 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# OpenTelemetry Release Process

Before releasing, it is a good idea to run `./gradlew japicmp` on the main branch
and verify that there are no unexpected public API changes seen in the `docs/apidiffs/current_vs_latest`
directory.
Before releasing, it is a good idea to run `./gradlew japicmp` on the main branch and verify that
there are no unexpected public API changes seen in the `docs/apidiffs/current_vs_latest`
directory. Additionally, ensure that appropriate `@since` annotations are added to any additions to
the public APIs.

When preparing the change log, you can use
`git log upstream/v$MAJOR.$((MINOR-1)).x..upstream/v$MAJOR.$MINOR.x --graph --first-parent`
Expand Down

0 comments on commit 37772d7

Please sign in to comment.