2021-06-18 17:22:16 +02:00
|
|
|
# Copyright The OpenTelemetry Authors
|
2024-02-29 08:05:28 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-06-18 17:22:16 +02:00
|
|
|
|
|
|
|
module-sets:
|
|
|
|
stable-v1:
|
Release v1.31.0/v0.53.0/v0.7.0/v0.0.10 (#5883)
### Added
- Add `go.opentelemetry.io/otel/sdk/metric/exemplar` package which
includes `Exemplar`, `Filter`, `TraceBasedFilter`, `AlwaysOnFilter`,
`HistogramReservoir`, `FixedSizeReservoir`, `Reservoir`, `Value` and
`ValueType` types. These will be used for configuring the exemplar
reservoir for the metrics sdk. (#5747, #5862)
- Add `WithExportBufferSize` option to log batch processor.(#5877)
### Changed
- Enable exemplars by default in `go.opentelemetry.io/otel/sdk/metric`.
Exemplars can be disabled by setting
`OTEL_METRICS_EXEMPLAR_FILTER=always_off` (#5778)
- `Logger.Enabled` in `go.opentelemetry.io/otel/log` now accepts a newly
introduced `EnabledParameters` type instead of `Record`. (#5791)
- `FilterProcessor.Enabled` in
`go.opentelemetry.io/otel/sdk/log/internal/x` now accepts
`EnabledParameters` instead of `Record`. (#5791)
- The `Record` type in `go.opentelemetry.io/otel/log` is no longer
comparable. (#5847)
- Performance improvements for the trace SDK `SetAttributes` method in
`Span`. (#5864)
- Reduce memory allocations for the `Event` and `Link` lists in `Span`.
(#5858)
- Performance improvements for the trace SDK `AddEvent`, `AddLink`,
`RecordError` and `End` methods in `Span`. (#5874)
### Deprecated
- Deprecate all examples under `go.opentelemetry.io/otel/example` as
they are moved to [Contrib
repository](https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/examples).
(#5854)
### Fixed
- The race condition for multiple `FixedSize` exemplar reservoirs
identified in #5814 is resolved. (#5819)
- Fix log records duplication in case of heterogeneous resource
attributes by correctly mapping each log record to it's resource and
scope. (#5803)
- Fix timer channel drain to avoid hanging on Go 1.23. (#5868)
- Fix delegation for global meter providers, and panic when calling
otel.SetMeterProvider. (#5827)
- Change the `reflect.TypeOf` to use a nil pointer to not allocate on
the heap unless necessary. (#5827)
2024-10-11 18:59:27 +02:00
|
|
|
version: v1.31.0
|
2021-06-18 17:22:16 +02:00
|
|
|
modules:
|
|
|
|
- go.opentelemetry.io/otel
|
2024-01-18 22:26:17 +02:00
|
|
|
- go.opentelemetry.io/otel/bridge/opencensus
|
|
|
|
- go.opentelemetry.io/otel/bridge/opencensus/test
|
2021-07-26 21:09:33 +02:00
|
|
|
- go.opentelemetry.io/otel/bridge/opentracing
|
2023-02-27 23:57:23 +02:00
|
|
|
- go.opentelemetry.io/otel/bridge/opentracing/test
|
2023-09-26 16:10:58 +02:00
|
|
|
- go.opentelemetry.io/otel/example/dice
|
2021-06-18 17:22:16 +02:00
|
|
|
- go.opentelemetry.io/otel/example/namedtracer
|
2024-01-18 22:26:17 +02:00
|
|
|
- go.opentelemetry.io/otel/example/opencensus
|
2021-06-18 17:22:16 +02:00
|
|
|
- go.opentelemetry.io/otel/example/otel-collector
|
|
|
|
- go.opentelemetry.io/otel/example/passthrough
|
|
|
|
- go.opentelemetry.io/otel/example/zipkin
|
2024-01-18 22:26:17 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
|
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
|
2021-06-18 17:22:16 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlptrace
|
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
|
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
|
2024-01-18 22:26:17 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/stdout/stdoutmetric
|
2021-06-18 17:22:16 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/stdout/stdouttrace
|
2023-03-02 17:43:27 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/zipkin
|
2023-05-02 20:00:42 +02:00
|
|
|
- go.opentelemetry.io/otel/metric
|
2021-06-18 17:22:16 +02:00
|
|
|
- go.opentelemetry.io/otel/sdk
|
2023-09-14 21:57:45 +02:00
|
|
|
- go.opentelemetry.io/otel/sdk/metric
|
2023-03-02 17:43:27 +02:00
|
|
|
- go.opentelemetry.io/otel/trace
|
2021-06-18 17:22:16 +02:00
|
|
|
experimental-metrics:
|
Release v1.31.0/v0.53.0/v0.7.0/v0.0.10 (#5883)
### Added
- Add `go.opentelemetry.io/otel/sdk/metric/exemplar` package which
includes `Exemplar`, `Filter`, `TraceBasedFilter`, `AlwaysOnFilter`,
`HistogramReservoir`, `FixedSizeReservoir`, `Reservoir`, `Value` and
`ValueType` types. These will be used for configuring the exemplar
reservoir for the metrics sdk. (#5747, #5862)
- Add `WithExportBufferSize` option to log batch processor.(#5877)
### Changed
- Enable exemplars by default in `go.opentelemetry.io/otel/sdk/metric`.
Exemplars can be disabled by setting
`OTEL_METRICS_EXEMPLAR_FILTER=always_off` (#5778)
- `Logger.Enabled` in `go.opentelemetry.io/otel/log` now accepts a newly
introduced `EnabledParameters` type instead of `Record`. (#5791)
- `FilterProcessor.Enabled` in
`go.opentelemetry.io/otel/sdk/log/internal/x` now accepts
`EnabledParameters` instead of `Record`. (#5791)
- The `Record` type in `go.opentelemetry.io/otel/log` is no longer
comparable. (#5847)
- Performance improvements for the trace SDK `SetAttributes` method in
`Span`. (#5864)
- Reduce memory allocations for the `Event` and `Link` lists in `Span`.
(#5858)
- Performance improvements for the trace SDK `AddEvent`, `AddLink`,
`RecordError` and `End` methods in `Span`. (#5874)
### Deprecated
- Deprecate all examples under `go.opentelemetry.io/otel/example` as
they are moved to [Contrib
repository](https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/examples).
(#5854)
### Fixed
- The race condition for multiple `FixedSize` exemplar reservoirs
identified in #5814 is resolved. (#5819)
- Fix log records duplication in case of heterogeneous resource
attributes by correctly mapping each log record to it's resource and
scope. (#5803)
- Fix timer channel drain to avoid hanging on Go 1.23. (#5868)
- Fix delegation for global meter providers, and panic when calling
otel.SetMeterProvider. (#5827)
- Change the `reflect.TypeOf` to use a nil pointer to not allocate on
the heap unless necessary. (#5827)
2024-10-11 18:59:27 +02:00
|
|
|
version: v0.53.0
|
2021-06-18 17:22:16 +02:00
|
|
|
modules:
|
|
|
|
- go.opentelemetry.io/otel/example/prometheus
|
|
|
|
- go.opentelemetry.io/otel/exporters/prometheus
|
2024-02-23 12:59:03 +02:00
|
|
|
experimental-logs:
|
Release v1.31.0/v0.53.0/v0.7.0/v0.0.10 (#5883)
### Added
- Add `go.opentelemetry.io/otel/sdk/metric/exemplar` package which
includes `Exemplar`, `Filter`, `TraceBasedFilter`, `AlwaysOnFilter`,
`HistogramReservoir`, `FixedSizeReservoir`, `Reservoir`, `Value` and
`ValueType` types. These will be used for configuring the exemplar
reservoir for the metrics sdk. (#5747, #5862)
- Add `WithExportBufferSize` option to log batch processor.(#5877)
### Changed
- Enable exemplars by default in `go.opentelemetry.io/otel/sdk/metric`.
Exemplars can be disabled by setting
`OTEL_METRICS_EXEMPLAR_FILTER=always_off` (#5778)
- `Logger.Enabled` in `go.opentelemetry.io/otel/log` now accepts a newly
introduced `EnabledParameters` type instead of `Record`. (#5791)
- `FilterProcessor.Enabled` in
`go.opentelemetry.io/otel/sdk/log/internal/x` now accepts
`EnabledParameters` instead of `Record`. (#5791)
- The `Record` type in `go.opentelemetry.io/otel/log` is no longer
comparable. (#5847)
- Performance improvements for the trace SDK `SetAttributes` method in
`Span`. (#5864)
- Reduce memory allocations for the `Event` and `Link` lists in `Span`.
(#5858)
- Performance improvements for the trace SDK `AddEvent`, `AddLink`,
`RecordError` and `End` methods in `Span`. (#5874)
### Deprecated
- Deprecate all examples under `go.opentelemetry.io/otel/example` as
they are moved to [Contrib
repository](https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/examples).
(#5854)
### Fixed
- The race condition for multiple `FixedSize` exemplar reservoirs
identified in #5814 is resolved. (#5819)
- Fix log records duplication in case of heterogeneous resource
attributes by correctly mapping each log record to it's resource and
scope. (#5803)
- Fix timer channel drain to avoid hanging on Go 1.23. (#5868)
- Fix delegation for global meter providers, and panic when calling
otel.SetMeterProvider. (#5827)
- Change the `reflect.TypeOf` to use a nil pointer to not allocate on
the heap unless necessary. (#5827)
2024-10-11 18:59:27 +02:00
|
|
|
version: v0.7.0
|
2024-02-23 12:59:03 +02:00
|
|
|
modules:
|
|
|
|
- go.opentelemetry.io/otel/log
|
2024-04-20 13:24:51 +02:00
|
|
|
- go.opentelemetry.io/otel/sdk/log
|
2024-07-18 19:41:34 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc
|
2024-04-20 13:24:51 +02:00
|
|
|
- go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
|
|
|
|
- go.opentelemetry.io/otel/exporters/stdout/stdoutlog
|
2021-10-15 18:44:13 +02:00
|
|
|
experimental-schema:
|
Release v1.31.0/v0.53.0/v0.7.0/v0.0.10 (#5883)
### Added
- Add `go.opentelemetry.io/otel/sdk/metric/exemplar` package which
includes `Exemplar`, `Filter`, `TraceBasedFilter`, `AlwaysOnFilter`,
`HistogramReservoir`, `FixedSizeReservoir`, `Reservoir`, `Value` and
`ValueType` types. These will be used for configuring the exemplar
reservoir for the metrics sdk. (#5747, #5862)
- Add `WithExportBufferSize` option to log batch processor.(#5877)
### Changed
- Enable exemplars by default in `go.opentelemetry.io/otel/sdk/metric`.
Exemplars can be disabled by setting
`OTEL_METRICS_EXEMPLAR_FILTER=always_off` (#5778)
- `Logger.Enabled` in `go.opentelemetry.io/otel/log` now accepts a newly
introduced `EnabledParameters` type instead of `Record`. (#5791)
- `FilterProcessor.Enabled` in
`go.opentelemetry.io/otel/sdk/log/internal/x` now accepts
`EnabledParameters` instead of `Record`. (#5791)
- The `Record` type in `go.opentelemetry.io/otel/log` is no longer
comparable. (#5847)
- Performance improvements for the trace SDK `SetAttributes` method in
`Span`. (#5864)
- Reduce memory allocations for the `Event` and `Link` lists in `Span`.
(#5858)
- Performance improvements for the trace SDK `AddEvent`, `AddLink`,
`RecordError` and `End` methods in `Span`. (#5874)
### Deprecated
- Deprecate all examples under `go.opentelemetry.io/otel/example` as
they are moved to [Contrib
repository](https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/examples).
(#5854)
### Fixed
- The race condition for multiple `FixedSize` exemplar reservoirs
identified in #5814 is resolved. (#5819)
- Fix log records duplication in case of heterogeneous resource
attributes by correctly mapping each log record to it's resource and
scope. (#5803)
- Fix timer channel drain to avoid hanging on Go 1.23. (#5868)
- Fix delegation for global meter providers, and panic when calling
otel.SetMeterProvider. (#5827)
- Change the `reflect.TypeOf` to use a nil pointer to not allocate on
the heap unless necessary. (#5827)
2024-10-11 18:59:27 +02:00
|
|
|
version: v0.0.10
|
2021-10-15 18:44:13 +02:00
|
|
|
modules:
|
|
|
|
- go.opentelemetry.io/otel/schema
|
2021-06-18 17:22:16 +02:00
|
|
|
excluded-modules:
|
2021-07-26 21:09:33 +02:00
|
|
|
- go.opentelemetry.io/otel/internal/tools
|