chore(deps): refresh dependencies to latest and gofmt the tree#35
Merged
Conversation
Why: Prereq pass for adopting contrib/propagators/envcar (#33), which needs otel core v1.44 / go1.25 — already satisfied by the go1.26 + otel v1.44.0 merge on main. This brings the rest of the graph to latest in the same pass. Approach: - go get -u ./... + go mod tidy: cobra 1.8.0->1.10.2, proto/otlp 1.1.0->1.10.0, grpc 1.79.3->1.81.1, pterm 0.12.79->0.12.83, plus x/* and genproto chain. - otel core/sdk/trace/metric confirmed at v1.44.0 (latest tag). - gofmt -w . : fixes import-grouping drift left behind by the equinix-labs->tobert module rename (4c8b63a), never re-formatted since. Learned: remaining `go list -u -m all` stragglers (spiffe, goldmark, x/tools, gcp detectors) are transitive deps held down by MVS; tidy prunes any forced bump, so they can't advance until our direct deps require newer. No runtime impact. Next: #33 - wire envcar.Carrier + propagation.TraceContext for TRACEPARENT. Refs #31, #32 🤖 Claude <claude@anthropic.com>
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.
Dependency-refresh pass, the prerequisite groundwork for adopting
contrib/propagators/envcar(#33). The go1.26 + otel v1.44.0 bump already landed onmain; this pulls the rest of the graph to latest in the same pass and cleans up long-standing formatting drift.What changed
go get -u ./...+go mod tidy:cobra 1.8.0→1.10.2,proto/otlp 1.1.0→1.10.0,grpc 1.79.3→1.81.1,pterm 0.12.79→0.12.83, plus thegolang.org/x/*andgenprotochain.gofmt -w .: fixes import-grouping drift across 9otelcli/files left behind by theequinix-labs → tobertmodule rename (4c8b63a), which reshuffled import sort order and was never re-formatted.Notes
go list -u -m allstragglers (spiffe, goldmark, x/tools, gcp detectors) are transitive deps held down by minimal-version selection;go mod tidyprunes any forced bump, so they can't advance until our direct deps require newer. No runtime impact.Verification
go build✅go vet ./...✅go test ./...(full functional + unit suite) ✅gofmt -l .clean ✅Refs #31, #32
🤖 Generated with Claude Code