International-Data-Spaces-Association / DataspaceConnector

This is an IDS Connector reference implementation.
Apache License 2.0
31 stars 26 forks source link

chore(deps): Bump opentelemetry.version from 1.20.1 to 1.23.1 #659

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps opentelemetry.version from 1.20.1 to 1.23.1. Updates opentelemetry-api from 1.20.1 to 1.23.1

Release notes

Sourced from opentelemetry-api's releases.

Version 1.23.1

This is a patch release on the previous 1.23.0 release, fixing the issue(s) below.

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments (#5157)
  • Reuse aggregation handles for delta temporality to reduce allocations (#5176)

Exporter

  • Add proper shutdown implementations for all exporters (#5113)

SDK Extensions

  • WARNING: Remove deprecated autoconfigure exemplar filter names. Previous names none, all , with_sampled_trace have been removed. Use always_off, always_on, trace_based instead. (#5098)
  • Add autoconfigure support for "none" option for propagator value (#5121)
  • Add autoconfigure support for parentbased_jaeger_remote sampler (#5123)
  • Autoconfigure closes up autoconfigured resources in case of exception (#5117)
  • View file based config has switched from snakeyaml to snakeyaml-engine for YAML parsing. (#5138)
  • Fix autoconfigure resource providers property docs (#5135)

Testing

  • WARNING: Merge opentelemetry-sdk-metrics-testing into opentelemetry-sdk-testing. Stop publishing opentelemetry-sdk-metrics-testing. (#5144)

... (truncated)

Changelog

Sourced from opentelemetry-api's changelog.

Version 1.23.1 (2023-02-15)

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0 (2023-02-10)

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments

... (truncated)

Commits


Updates opentelemetry-sdk from 1.20.1 to 1.23.1

Release notes

Sourced from opentelemetry-sdk's releases.

Version 1.23.1

This is a patch release on the previous 1.23.0 release, fixing the issue(s) below.

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments (#5157)
  • Reuse aggregation handles for delta temporality to reduce allocations (#5176)

Exporter

  • Add proper shutdown implementations for all exporters (#5113)

SDK Extensions

  • WARNING: Remove deprecated autoconfigure exemplar filter names. Previous names none, all , with_sampled_trace have been removed. Use always_off, always_on, trace_based instead. (#5098)
  • Add autoconfigure support for "none" option for propagator value (#5121)
  • Add autoconfigure support for parentbased_jaeger_remote sampler (#5123)
  • Autoconfigure closes up autoconfigured resources in case of exception (#5117)
  • View file based config has switched from snakeyaml to snakeyaml-engine for YAML parsing. (#5138)
  • Fix autoconfigure resource providers property docs (#5135)

Testing

  • WARNING: Merge opentelemetry-sdk-metrics-testing into opentelemetry-sdk-testing. Stop publishing opentelemetry-sdk-metrics-testing. (#5144)

... (truncated)

Changelog

Sourced from opentelemetry-sdk's changelog.

Version 1.23.1 (2023-02-15)

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0 (2023-02-10)

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments

... (truncated)

Commits


Updates opentelemetry-exporter-jaeger from 1.20.1 to 1.23.1

Release notes

Sourced from opentelemetry-exporter-jaeger's releases.

Version 1.23.1

This is a patch release on the previous 1.23.0 release, fixing the issue(s) below.

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments (#5157)
  • Reuse aggregation handles for delta temporality to reduce allocations (#5176)

Exporter

  • Add proper shutdown implementations for all exporters (#5113)

SDK Extensions

  • WARNING: Remove deprecated autoconfigure exemplar filter names. Previous names none, all , with_sampled_trace have been removed. Use always_off, always_on, trace_based instead. (#5098)
  • Add autoconfigure support for "none" option for propagator value (#5121)
  • Add autoconfigure support for parentbased_jaeger_remote sampler (#5123)
  • Autoconfigure closes up autoconfigured resources in case of exception (#5117)
  • View file based config has switched from snakeyaml to snakeyaml-engine for YAML parsing. (#5138)
  • Fix autoconfigure resource providers property docs (#5135)

Testing

  • WARNING: Merge opentelemetry-sdk-metrics-testing into opentelemetry-sdk-testing. Stop publishing opentelemetry-sdk-metrics-testing. (#5144)

... (truncated)

Changelog

Sourced from opentelemetry-exporter-jaeger's changelog.

Version 1.23.1 (2023-02-15)

  • Fix bug that broke AutoConfiguredOpenTelemetrySdk's shutdown hook. (#5221)

Version 1.23.0 (2023-02-10)

This release is a notable release for metrics:

  • The base2 exponential histogram aggregation has been marked as stable. To use, configure your MetricExporter with a default aggregation of Aggregation.base2ExponentialBucketHistogram() for histogram instruments. If using OTLP exporter with autoconfigure, set OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM. If using configuring OTLP programatically, use Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector).
  • The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.

API

Logs

  • WARNING: Split out Event API from Log API. Event API is now published in opentelemetry-api-events. API / SDK usage has also changed - see PR for details. (#5049)

SDK

  • Add shutdown / close to OpenTelemetrySdk (#5100)

Metrics

  • Base2 exponential histogram aggregations are now stable. Add base2ExponentialBucketHistogram() to Aggregation. (#5143)
  • Promote exponential histogram data interfaces to stable package (#5120)
  • Add Base2 prefix to internal exponential histogram classes (#5179)
  • Add MaxScale config parameter to Base2ExponentialBucketHistogram (#5044)
  • Add close method to MetricReader (#5109)
  • Reuse AggregatorHandle with cumulative temporality to reduce allocations (#5142)
  • Delete notion of accumulation to reduce allocations (#5154)
  • Delete bound instruments

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)