chore: bump direct Go dependencies#2918
Merged
Merged
Conversation
Assisted-By: docker-agent
Assisted-By: docker-agent
Assisted-By: docker-agent
Assisted-By: docker-agent
….44.0 Bumps: - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp from v0.68.0 to v0.69.0 - go.opentelemetry.io/otel from v1.43.0 to v1.44.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from v1.43.0 to v1.44.0 - go.opentelemetry.io/otel/sdk from v1.43.0 to v1.44.0 - go.opentelemetry.io/otel/trace from v1.43.0 to v1.44.0 Also updates the semconv import to v1.41.0 to match the version provided by otel v1.44.0. Assisted-By: docker-agent
Assisted-By: docker-agent
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🟢 APPROVE
This PR correctly bumps 11 direct Go dependencies. The semconv migration from v1.40.0 to v1.41.0 in cmd/root/otel.go and cmd/root/otel_test.go is applied correctly and resolves the runtime "conflicting Schema URL" failure. All five coordinated OTel packages are consistently versioned at v1.44.0. The new go.sum entry for go.opentelemetry.io/otel/metric/x v0.66.0 is valid (transitive dependency — standard go mod tidy output). The grpc exporter packages at v1.40.0 are pre-existing indirect dependencies unchanged by this PR. No issues found in the changed code.
aheritier
approved these changes
May 28, 2026
This was referenced May 29, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR bumps 11 direct Go dependencies to their latest versions. All changes have been validated with
task lintandtask test.The five
go.opentelemetry.io/*modules are bumped together in a single commit because they are released as a coordinated set. Bumping otelhttp v0.69.0 transitively requires all of them at v1.44.0. The semconv import incmd/root/otel.go(and its test) was updated from v1.40.0 to v1.41.0 to match what otel v1.44.0 ships, which also fixed a runtime "conflicting Schema URL" failure inTestNewOTelResourceUsesCurrentSchemaURL.The
google.golang.org/adkv1.3.0 bump was reverted. The new release deprecatesserver/adka2ain favor ofserver/adka2a/v2, which our project lints as an error. That migration is non-trivial and out of scope for a routine bump.