Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bot: Bump go.opentelemetry.io/otel/metric from 1.19.0 to 1.20.0 #2046

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2023

Bumps go.opentelemetry.io/otel/metric from 1.19.0 to 1.20.0.

Changelog

Sourced from go.opentelemetry.io/otel/metric's changelog.

[1.20.0/0.43.0] 2023-11-10

This release brings a breaking change for custom trace API implementations. Some interfaces (TracerProvider, Tracer, Span) now embed the go.opentelemetry.io/otel/trace/embedded types. Implementors need to update their implementations based on what they want the default behavior to be. See the "API Implementations" section of the [trace API] package documentation for more information about how to accomplish this.

Added

  • Add go.opentelemetry.io/otel/bridge/opencensus.InstallTraceBridge, which installs the OpenCensus trace bridge, and replaces opencensus.NewTracer. (#4567)
  • Add scope version to trace and metric bridges in go.opentelemetry.io/otel/bridge/opencensus. (#4584)
  • Add the go.opentelemetry.io/otel/trace/embedded package to be embedded in the exported trace API interfaces. (#4620)
  • Add the go.opentelemetry.io/otel/trace/noop package as a default no-op implementation of the trace API. (#4620)
  • Add context propagation in go.opentelemetry.io/otel/example/dice. (#4644)
  • Add view configuration to go.opentelemetry.io/otel/example/prometheus. (#4649)
  • Add go.opentelemetry.io/otel/metric.WithExplicitBucketBoundaries, which allows defining default explicit bucket boundaries when creating histogram instruments. (#4603)
  • Add Version function in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc. (#4660)
  • Add Version function in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#4660)
  • Add Summary, SummaryDataPoint, and QuantileValue to go.opentelemetry.io/sdk/metric/metricdata. (#4622)
  • go.opentelemetry.io/otel/bridge/opencensus.NewMetricProducer now supports exemplars from OpenCensus. (#4585)
  • Add support for WithExplicitBucketBoundaries in go.opentelemetry.io/otel/sdk/metric. (#4605)
  • Add support for Summary metrics in go.opentelemetry.io/otel/bridge/opencensus. (#4668)

Deprecated

  • Deprecate go.opentelemetry.io/otel/bridge/opencensus.NewTracer in favor of opencensus.InstallTraceBridge. (#4567)
  • Deprecate go.opentelemetry.io/otel/example/fib package is in favor of go.opentelemetry.io/otel/example/dice. (#4618)
  • Deprecate go.opentelemetry.io/otel/trace.NewNoopTracerProvider. Use the added NewTracerProvider function in go.opentelemetry.io/otel/trace/noop instead. (#4620)
  • Deprecate go.opentelemetry.io/otel/example/view package in favor of go.opentelemetry.io/otel/example/prometheus. (#4649)
  • Deprecate go.opentelemetry.io/otel/exporters/otlp/otlpmetric. (#4693)

Changed

  • go.opentelemetry.io/otel/bridge/opencensus.NewMetricProducer returns a *MetricProducer struct instead of the metric.Producer interface. (#4583)
  • The TracerProvider in go.opentelemetry.io/otel/trace now embeds the go.opentelemetry.io/otel/trace/embedded.TracerProvider type. This extends the TracerProvider interface and is is a breaking change for any existing implementation. Implementors need to update their implementations based on what they want the default behavior of the interface to be. See the "API Implementations" section of the go.opentelemetry.io/otel/trace package documentation for more information about how to accomplish this. (#4620)
  • The Tracer in go.opentelemetry.io/otel/trace now embeds the go.opentelemetry.io/otel/trace/embedded.Tracer type. This extends the Tracer interface and is is a breaking change for any existing implementation. Implementors need to update their implementations based on what they want the default behavior of the interface to be. See the "API Implementations" section of the go.opentelemetry.io/otel/trace package documentation for more information about how to accomplish this. (#4620)
  • The Span in go.opentelemetry.io/otel/trace now embeds the go.opentelemetry.io/otel/trace/embedded.Span type. This extends the Span interface and is is a breaking change for any existing implementation. Implementors need to update their implementations based on what they want the default behavior of the interface to be. See the "API Implementations" section of the go.opentelemetry.io/otel/trace package documentation for more information about how to accomplish this. (#4620)
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc does no longer depend on go.opentelemetry.io/otel/exporters/otlp/otlpmetric. (#4660)
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp does no longer depend on go.opentelemetry.io/otel/exporters/otlp/otlpmetric. (#4660)
  • Retry for 502 Bad Gateway and 504 Gateway Timeout HTTP statuses in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#4670)
  • Retry for 502 Bad Gateway and 504 Gateway Timeout HTTP statuses in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#4670)
  • Retry for RESOURCE_EXHAUSTED only if RetryInfo is returned in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc. (#4669)
  • Retry for RESOURCE_EXHAUSTED only if RetryInfo is returned in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc. (#4669)

... (truncated)

Commits
  • 85e4c46 Release v1.20.0/v0.43.0 (#4705)
  • 94a41d7 logs: Update project status (#4702)
  • be5064a Use url.PathUnescape rather than url.QueryUnescape when parsing OTLP headers ...
  • 0c5ebd5 otlp: Refine documentation (#4695)
  • 0f5179f Deprecate otlpmetric (#4693)
  • 3560dc5 dependabot updates Sun Nov 5 15:10:14 UTC 2023 (#4692)
  • 1635737 Add summary support in the OpenCensus bridge (#4668)
  • 480edcc otlpmetricgrpc otlpmetrichttp: Add README.md (#4336)
  • e3d0c50 Use WithExplicitBucketBoundaries in the prometheus example (#4686)
  • 437bc82 otlptracegrpc otlpmetricgrpc: Remove redundant append of DialOptions (#4684)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

@dependabot dependabot bot added the dependencies Related to dependencies label Nov 13, 2023
@dependabot dependabot bot force-pushed the dependabot/go_modules/go.opentelemetry.io/otel/metric-1.20.0 branch from a4ae051 to 944f8d0 Compare November 13, 2023 22:32
Copy link

codecov bot commented Nov 13, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (bf63b0a) 73.78% compared to head (1e40f7b) 73.86%.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##           develop    #2046      +/-   ##
===========================================
+ Coverage    73.78%   73.86%   +0.08%     
===========================================
  Files          248      248              
  Lines        24801    24801              
===========================================
+ Hits         18298    18317      +19     
+ Misses        5236     5222      -14     
+ Partials      1267     1262       -5     
Flag Coverage Δ
all-tests 73.86% <ø> (+0.08%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

see 7 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update bf63b0a...1e40f7b. Read the comment docs.

Bumps [go.opentelemetry.io/otel/metric](https://github.com/open-telemetry/opentelemetry-go) from 1.19.0 to 1.20.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.19.0...v1.20.0)

---
updated-dependencies:
- dependency-name: go.opentelemetry.io/otel/metric
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@shahzadlone shahzadlone force-pushed the dependabot/go_modules/go.opentelemetry.io/otel/metric-1.20.0 branch from 21af290 to 1e40f7b Compare November 16, 2023 21:52
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 20, 2023

A newer version of go.opentelemetry.io/otel/metric exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

shahzadlone added a commit that referenced this pull request Nov 22, 2023
✅ This PR was created by the Combine PRs action by combining the
following PRs:
#2063 bot: Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.11.0
in /playground
#2062 bot: Bump @vitejs/plugin-react-swc from 3.4.1 to 3.5.0 in
/playground
#2060 bot: Bump swagger-ui-react from 5.9.4 to 5.10.0 in /playground
#2059 bot: Bump go.opentelemetry.io/otel/sdk/metric from 1.19.0 to
1.21.0

⚠️ The following PRs had merge conflicts which were resolved manually:
#2061 bot: Bump eslint from 8.53.0 to 8.54.0 in /playground
#2046 bot: Bump go.opentelemetry.io/otel/metric from 1.19.0 to 1.20.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shahzad Lone <[email protected]>
@shahzadlone
Copy link
Member

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 22, 2023

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@shahzadlone
Copy link
Member

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 22, 2023

Looks like go.opentelemetry.io/otel/metric is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Nov 22, 2023
@dependabot dependabot bot deleted the dependabot/go_modules/go.opentelemetry.io/otel/metric-1.20.0 branch November 22, 2023 11:38
shahzadlone added a commit to shahzadlone/defradb that referenced this pull request Jan 22, 2024
…ork#2066)

✅ This PR was created by the Combine PRs action by combining the
following PRs:
sourcenetwork#2063 bot: Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.11.0
in /playground
sourcenetwork#2062 bot: Bump @vitejs/plugin-react-swc from 3.4.1 to 3.5.0 in
/playground
sourcenetwork#2060 bot: Bump swagger-ui-react from 5.9.4 to 5.10.0 in /playground
sourcenetwork#2059 bot: Bump go.opentelemetry.io/otel/sdk/metric from 1.19.0 to
1.21.0

⚠️ The following PRs had merge conflicts which were resolved manually:
sourcenetwork#2061 bot: Bump eslint from 8.53.0 to 8.54.0 in /playground
sourcenetwork#2046 bot: Bump go.opentelemetry.io/otel/metric from 1.19.0 to 1.20.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shahzad Lone <[email protected]>
shahzadlone added a commit to shahzadlone/defradb that referenced this pull request Feb 23, 2024
…ork#2066)

✅ This PR was created by the Combine PRs action by combining the
following PRs:
sourcenetwork#2063 bot: Bump @typescript-eslint/eslint-plugin from 6.10.0 to 6.11.0
in /playground
sourcenetwork#2062 bot: Bump @vitejs/plugin-react-swc from 3.4.1 to 3.5.0 in
/playground
sourcenetwork#2060 bot: Bump swagger-ui-react from 5.9.4 to 5.10.0 in /playground
sourcenetwork#2059 bot: Bump go.opentelemetry.io/otel/sdk/metric from 1.19.0 to
1.21.0

⚠️ The following PRs had merge conflicts which were resolved manually:
sourcenetwork#2061 bot: Bump eslint from 8.53.0 to 8.54.0 in /playground
sourcenetwork#2046 bot: Bump go.opentelemetry.io/otel/metric from 1.19.0 to 1.20.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shahzad Lone <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant