Skip to content

chore(deps): update go #2019

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

Merged
merged 1 commit into from
May 26, 2025
Merged

chore(deps): update go #2019

merged 1 commit into from
May 26, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go v0.121.1 -> v0.121.2 age adoption passing confidence indirect patch
cloud.google.com/go/compute v1.37.0 -> v1.38.0 age adoption passing confidence indirect minor
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 -> v0.61.0 age adoption passing confidence indirect minor
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 -> v0.61.0 age adoption passing confidence indirect minor
go.opentelemetry.io/otel v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
go.opentelemetry.io/otel/metric v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
go.opentelemetry.io/otel/sdk v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
go.opentelemetry.io/otel/sdk/metric v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
go.opentelemetry.io/otel/trace v1.35.0 -> v1.36.0 age adoption passing confidence indirect minor
google.golang.org/api v0.233.0 -> v0.234.0 age adoption passing confidence indirect minor
google.golang.org/genproto 5a2f75b -> 55703ea age adoption passing confidence indirect digest
google.golang.org/genproto/googleapis/api 5a2f75b -> 55703ea age adoption passing confidence indirect digest
google.golang.org/genproto/googleapis/rpc 5a2f75b -> 55703ea age adoption passing confidence indirect digest

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

googleapis/google-cloud-go (cloud.google.com/go)

v0.121.2

Compare Source

Documentation
open-telemetry/opentelemetry-go-contrib (go.opentelemetry.io/contrib/detectors/gcp)

v1.36.0: /v0.61.0/v0.30.0/v0.16.0/v0.11.0/v0.9.0/v0.8.0

Compare Source

Overview

Added
  • http.route attribute to otelhttp server request spans, when net/http.Request.Pattern is set in the modules below. (#​6905, #​6937)
    • go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful
    • go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
    • go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
    • go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
    • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  • Add WithAttributes option to set instrumentation scope attributes on the created log.Logger in go.opentelemetry.io/contrib/bridges/otelzap. (#​6962)
  • Add WithAttributes option to set instrumentation scope attributes on the created log.Logger in go.opentelemetry.io/contrib/bridges/otelslog. (#​6965)
  • Add WithAttributes option to set instrumentation scope attributes on the created log.Logger in go.opentelemetry.io/contrib/bridges/otellogrus. (#​6966)
  • Add WithAttributes option to set instrumentation scope attributes on the created log.Logger in go.opentelemetry.io/contrib/bridges/otellogr. (#​6967)
  • Add the WithGinMetricAttributes option to allow setting dynamic, per-request metric attributes based on *gin.Context in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​6932)
  • Use Gin's own ClientIP method to detect the client's IP, which supports custom proxy headers in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​6095)
  • Added test for Fields in go.opentelemetry.io/contrib/propagators/jaeger. (#​7119)
  • Allow configuring samplers in go.opentelemetry.io/contrib/otelconf. (#​7148)
  • Slog log bridge now sets SeverityText attribute using source value in go.opentelemetry.io/contrib/bridges/otelslog. (#​7198)
  • Add http.route metric attribute in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​7275)
  • Add the WithSpanStartOptions option to add custom options to new spans go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​7261)
  • Add instrumentation support for go.mongodb.org/mongo-driver/v2 in go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/v2/mongo/otelmongo. (#​6539)
  • Rerun the span name formatter after the request ran if a req.Pattern is set, so the span name can include it in go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp. (#​7192)
Changed
  • Jaeger remote sampler's probabilistic strategy now uses the same sampling algorithm as trace.TraceIDRatioBased in go.opentelemetry.io/contrib/samplers/jaegerremote. (#​6892)

  • Switched the default for OTEL_SEMCONV_STABILITY_OPT_IN to emit the v1.26.0 semantic conventions by default in the following modules.

    • go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful
    • go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
    • go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
    • go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
    • go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
    • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
      The OTEL_SEMCONV_STABILITY_OPT_IN=http/dup environment variable can be still used to emit both the v1.20.0 and v1.26.0 semantic conventions.
      It is however impossible to emit only the 1.20.0 semantic conventions, as the next release will drop support for that environment variable. (#​6899)
  • Improve performance by reducing allocations for http request when using OTEL_SEMCONV_STABILITY_OPT_IN=http/dup in the modules below. (#​7180)

    • go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful
    • go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
    • go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
    • go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
    • go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
    • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  • Update the Jaeger remote sampler to use "github.com/jaegertracing/jaeger-idl/proto-gen/api_v2" in go.opentelemetry.io/contrib/samplers/jaegerremote. (#​7061)

  • Improve performance by reducing allocations in the gRPC stats handler in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc. (#​7186)

  • Update http.route attribute to support request.Pattern in go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux. (#​7108)

  • Change the default span name to be GET /path so it complies with the HTTP semantic conventions in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​6381)

  • Set url.scheme attribute to the request URL.Scheme when possible for HTTP client metrics in go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp. (#​6938)

  • The semantic conventions have been upgraded from v1.17.0 to v1.30.0 in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc. (#​7270)

    • All net.peer.* and net.host.* attributes are now set to correct server.* attributes.
    • No net.socket.* attributes are set.
  • Only sample spans when Sampled=1 in go.opentelemetry.io/contrib/propagators/aws/xray. (#​7318)

Fixed
  • Record request duration in seconds rather than milliseconds for semconv v1.26.0, per the specifications in the following packages. (#​6942)
    • go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful
    • go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
    • go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
    • go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
    • go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
    • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  • Cleaned up indentations under Unreleased/Fixed of ./CHANGELOG.md. (#​7163)
  • Removed a duplicate instance of the Changed subheader under 1.18.0/0.43.0/0.12.0 in ./CHANGELOG.md. (#​7163)
  • Check for TLS related options to be set before creating TLS config go.opentelemetry.io/contrib/otelconf. (#​6984)
  • Fixed handling of the OTEL_SEMCONV_STABILITY_OPT_IN environment variable in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin. (#​7215)
  • Support mixed categories for OTEL_SEMCONV_STABILITY_OPT_IN opt-in in the following packages. (#​7246)
    • go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful.
    • go.opentelemetry.io/contrib/instrumentation/gin-gonic/gin/otelgin.
    • go.opentelemetry.io/contrib/instrumentation/gorilla/mux/otelmux.
    • go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo.
    • go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace.
    • go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp.
Removed
  • Drop support for [Go 1.22]. (#​6853)
  • The deprecated go.opentelemetry.io/contrib/config package is removed, use go.opentelemetry.io/contrib/otelconf instead. (#​6894)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda, use Version function instead. (#​7058)
  • The deprecated SemVersion function in go.opentelemetry.io/contrib/samplers/probability/consistent is removed, use Version instead. (#​7072)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test package, use Version instead. (#​7077)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux, use Version function instead. (#​7084)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin, use Version function instead. (#​7085)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test, use Version function instead. (#​7142)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux/test, use Version function instead. (#​7086)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo, use Version function instead. (#​7140)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin/test, use Version function instead. (#​7087)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho, use Version function instead. (#​7089)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/test, use Version function instead. (#​7090)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful, use Version function instead. (#​7091)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful/test, use Version function instead. (#​7092)
  • The deprecated UnaryServerInterceptor in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc is removed, use NewServerHandler instead. (#​7115)
  • The deprecated DynamoDBAttributeSetter function is removed opentelemetry-go-contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/dynamodbattributes.go , use Version function instead.(#​7128)
  • The deprecated SNSAttributeSetter function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws, use SNSAttributeBuilder function instead. (#​7136)
  • The deprecated AttributeSetter function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws, use the AttributeBuilder function instead. (#​7137)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/zpages, use Version function instead. (#​7147)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/samplers/jaegerremote, use Version function instead. (#​7147)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/propagators/opencensus, use Version function instead. (#​7147)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/runtime, use Version function instead. (#​7147)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws, use Version function instead. (#​7154)
  • The deprecated DefaultAttributeSetter in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws is removed, use the DefaultAttributeBuilder function instead. (#​7127)
  • The deprecated UnaryClientInterceptor function is removed in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc use NewClientHandler function instead. (#​7125)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp, use Version function instead. (#​7167)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace, use Version function instead. (#​7144)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/test, use Version function instead. (#​7144)
  • The deprecated go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters/interceptor package is removed, use go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/filters instead. (#​7110)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc, use Version function instead. (#​7143)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/test, use Version function instead. (#​7143)
  • The deprecated SQSAttributeSetter function is removed in go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws package, use SQSAttributeBuilder instead. (#​7145)
  • The deprecated SemVersion function is removed in go.opentelemetry.io/contrib/instrumentation/host package, use Version instead. (#​7203)
  • The GRPCStatusCodeKey constant from go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc is removed.
    Use semconv.RPCGRPCStatusCodeKey from go.opentelemetry.io/otel/semconv/* instead. (#​7270)

What's Changed


Configuration

📅 Schedule: Branch creation - On day 1 and 15 of the month ( * * 1,15 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 requested review from commjoen and bendehaan as code owners May 24, 2025 05:37
@renovate renovate bot added dependencies Pull requests that update a dependency file renovate labels May 24, 2025
@renovate renovate bot force-pushed the renovate/go branch 3 times, most recently from fb1a08b to c37e00b Compare May 24, 2025 20:56
Copy link
Contributor Author

renovate bot commented May 25, 2025

ℹ Artifact update notice

File name: aws/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):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/trace v1.35.0 -> v1.36.0
File name: azure/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):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/trace v1.35.0 -> v1.36.0
File name: gcp/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):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/trace v1.35.0 -> v1.36.0

@commjoen commjoen merged commit 840ddd0 into master May 26, 2025
17 checks passed
@commjoen commjoen deleted the renovate/go branch May 26, 2025 04:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant