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

Update module go.opentelemetry.io/contrib/propagators/b3 to v1.33.0 - autoclosed #71

Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
go.opentelemetry.io/contrib/propagators/b3 v1.20.0 -> v1.33.0 age adoption passing confidence

Release Notes

open-telemetry/opentelemetry-go-contrib (go.opentelemetry.io/contrib/propagators/b3)

v1.33.0: /v0.58.0/v0.27.0/v0.13.0/v0.8.0/v0.6.0/v0.5.0

Compare Source

Overview
Added
  • Added support for providing endpoint, pollingIntervalMs and initialSamplingRate using environment variable OTEL_TRACES_SAMPLER_ARG in go.opentelemetry.io/contrib/samples/jaegerremote. (#​6310)
  • Added support exporting logs via OTLP over gRPC in go.opentelemetry.io/contrib/config. (#​6340)
  • The go.opentelemetry.io/contrib/bridges/otellogr module.
    This module provides an OpenTelemetry logging bridge for github.com/go-logr/logr. (#​6386)
  • Added SNS instrumentation in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws. (#​6388)
Changed
  • Change the span name to be GET /path so it complies with the OTel HTTP semantic conventions in go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho. (#​6365)
  • Record errors instead of setting the gin.errors attribute in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​6346)
  • The go.opentelemetry.io/contrib/config now supports multiple schemas in subdirectories (i.e. go.opentelemetry.io/contrib/config/v0.3.0) for easier migration. (#​6412)
Fixed
  • Fix broken AWS presigned URLs when using instrumentation in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws. (#​5975)
  • Fixed the value for configuring the OTLP exporter to use grpc instead of grpc/protobuf in go.opentelemetry.io/contrib/config. (#​6338)
  • Allow marshaling types in go.opentelemetry.io/contrib/config. (#​6347)
  • Removed the redundant handling of panic from the HTML function in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​6373)
  • The code.function attribute emitted by go.opentelemetry.io/contrib/bridges/otelslog now stores just the function name instead the package path-qualified function name. The code.namespace attribute now stores the package path. (#​6415)
  • The code.function attribute emitted by go.opentelemetry.io/contrib/bridges/otelzap now stores just the function name instead the package path-qualified function name. The code.namespace attribute now stores the package path. (#​6423)
What's Changed
New Contributors

Full Changelog: open-telemetry/opentelemetry-go-contrib@v1.32.0...v1.33.0

v1.32.0: /v0.57.0/v0.26.0/v0.12.0/v0.7.0/v0.5.0/v0.4.0

Compare Source

Overview

Added
  • Add the WithSource option to the go.opentelemetry.io/contrib/bridges/otelslog log bridge to set the code.* attributes in the log record that includes the source location where the record was emitted. (#​6253)
  • Add ContextWithStartTime and StartTimeFromContext to go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp, which allows setting the start time using go context. (#​6137)
  • Set the code.* attributes in go.opentelemetry.io/contrib/bridges/otelzap if the zap.Logger was created with the AddCaller or AddStacktrace option. (#​6268)
  • Add a LogProcessor to go.opentelemetry.io/contrib/processors/baggagecopy to copy baggage members to log records. (#​6277)
    • Use baggagecopy.NewLogProcessor when configuring a Log Provider.
      • NewLogProcessor accepts a Filter function type that selects which baggage members are added to the log record.
Changed
  • Transform raw (slog.KindAny) attribute values to matching log.Value types.
    For example, []string{"foo", "bar"} attribute value is now transformed to log.SliceValue(log.StringValue("foo"), log.StringValue("bar")) instead of log.String("[foo bar"]). (#​6254)
  • Upgrade go.opentelemetry.io/otel/semconv/v1.17.0 to go.opentelemetry.io/otel/semconv/v1.21.0 in go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo. (#​6272)
  • Resource doesn't merge with defaults if a valid resource is configured in go.opentelemetry.io/contrib/config. (#​6289)
Fixed
  • Transform nil attribute values to log.Value zero value instead of panicking in go.opentelemetry.io/contrib/bridges/otellogrus. (#​6237)
  • Transform nil attribute values to log.Value zero value instead of panicking in go.opentelemetry.io/contrib/bridges/otelzap. (#​6237)
  • Transform nil attribute values to log.Value zero value instead of log.StringValue("<nil>") in go.opentelemetry.io/contrib/bridges/otelslog. (#​6246)
  • Fix NewClientHandler so that rpc.client.request.* metrics measure requests instead of responses and rpc.client.responses.* metrics measure responses instead of requests in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc. (#​6250)
  • Fix issue in go.opentelemetry.io/contrib/config causing otelprom.WithResourceAsConstantLabels configuration to not be respected. (#​6260)
  • otel.Handle is no longer called on a successful shutdown of the Prometheus exporter in go.opentelemetry.io/contrib/config. (#​6299)

What's Changed

New Contributors

Full Changelog: open-telemetry/opentelemetry-go-contrib@v1.31.0...v1.32.0

v1.31.0: /v0.56.0/v0.25.0/v0.11.0/v0.6.0/v0.4.0/v0.3.0

Compare Source

Overview

Added
  • The Severitier and SeverityVar types are added to go.opentelemetry.io/contrib/processors/minsev allowing dynamic configuration of the severity used by the LogProcessor. (#​6116)
  • Move examples from go.opentelemetry.io/otel to this repository under examples directory. (#​6158)
  • Support yaml/json struct tags for generated code in go.opentelemetry.io/contrib/config. (#​5433)
  • Add support for parsing YAML configuration via ParseYAML in go.opentelemetry.io/contrib/config. (#​5433)
  • Add support for temporality preference configuration in go.opentelemetry.io/contrib/config. (#​5860)
Changed
  • The function signature of NewLogProcessor in go.opentelemetry.io/contrib/processors/minsev has changed to accept the added Severitier interface instead of a log.Severity. (#​6116)
  • Updated go.opentelemetry.io/contrib/config to use the v0.3.0 release of schema which includes backwards incompatible changes. (#​6126)
  • NewSDK in go.opentelemetry.io/contrib/config now returns a no-op SDK if disabled is set to true. (#​6185)
  • The deprecated go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho package has found a Code Owner. The package is no longer deprecated. (#​6207)
Fixed
  • Possible nil dereference panic in go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace. (#​5965)
  • logrus.Level transformed to appropriate log.Severity in go.opentelemetry.io/contrib/bridges/otellogrus. (#​6191)
Removed
  • The Minimum field of the LogProcessor in go.opentelemetry.io/contrib/processors/minsev is removed.
    Use NewLogProcessor to configure this setting. (#​6116)
  • The deprecated go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron package is removed. (#​6186)
  • The deprecated go.opentelemetry.io/contrib/samplers/aws/xray package is removed. (#​6187)

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.21.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.21.1 Nov 17, 2023
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 1704206 to cf9ed25 Compare November 17, 2023 00:08
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from cf9ed25 to 2c3a8c0 Compare December 28, 2023 03:43
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.21.1 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.22.0 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 2c3a8c0 to 7060460 Compare January 18, 2024 17:34
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 7060460 to 006b911 Compare February 6, 2024 21:15
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.22.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.23.0 Feb 6, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch 2 times, most recently from 54c70e0 to 0ae8fee Compare February 9, 2024 00:31
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 0ae8fee to e659f34 Compare February 16, 2024 01:40
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from e659f34 to 72ca2ff Compare February 23, 2024 19:54
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.23.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.24.0 Feb 23, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 72ca2ff to 5263c5b Compare February 28, 2024 03:15
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch 2 times, most recently from 1df2731 to 1bdbd30 Compare March 20, 2024 23:41
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 1bdbd30 to 582734b Compare March 28, 2024 22:03
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 582734b to 2631b46 Compare April 5, 2024 15:51
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.24.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.25.0 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 2631b46 to ee1cf1b Compare April 24, 2024 19:50
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.25.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.26.0 Apr 24, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from ee1cf1b to 252f5f9 Compare May 22, 2024 02:38
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.26.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.27.0 May 22, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 252f5f9 to 00a26c9 Compare July 9, 2024 14:29
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.27.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.28.0 Jul 9, 2024
Copy link
Contributor Author

renovate bot commented Jul 9, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 4 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.21 -> 1.23.4
go.opentelemetry.io/otel v1.19.0 -> v1.33.0
go.opentelemetry.io/otel/trace v1.19.0 -> v1.33.0
github.com/go-logr/logr v1.2.4 -> v1.4.2
go.opentelemetry.io/otel/metric v1.19.0 -> v1.33.0

@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 00a26c9 to 5bde36f Compare August 24, 2024 02:30
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.28.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.29.0 Aug 24, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 5bde36f to 3104c70 Compare September 12, 2024 01:58
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.29.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.30.0 Sep 12, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 3104c70 to 0add256 Compare October 14, 2024 19:38
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.30.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.31.0 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 0add256 to d60e792 Compare November 8, 2024 21:45
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.31.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.32.0 Nov 8, 2024
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from d60e792 to 103c357 Compare November 14, 2024 09:06
@renovate renovate bot force-pushed the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch from 103c357 to 9ea2831 Compare December 12, 2024 22:37
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.32.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.33.0 Dec 12, 2024
@renovate renovate bot changed the title Update module go.opentelemetry.io/contrib/propagators/b3 to v1.33.0 Update module go.opentelemetry.io/contrib/propagators/b3 to v1.33.0 - autoclosed Dec 22, 2024
@renovate renovate bot closed this Dec 22, 2024
@renovate renovate bot deleted the renovate/go.opentelemetry.io-contrib-propagators-b3-1.x branch December 22, 2024 15:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants