Bump google.golang.org/grpc from 1.82.1 to 1.83.1 in /ecs-agent, /ecs-agent/daemonimages/csidriver and /agent - #5123
Open
TheanLim wants to merge 3 commits into
Open
Bump google.golang.org/grpc from 1.82.1 to 1.83.1 in /ecs-agent, /ecs-agent/daemonimages/csidriver and /agent#5123TheanLim wants to merge 3 commits into
TheanLim wants to merge 3 commits into
Conversation
added 3 commits
September 2, 2026 15:26
…s-agent/daemonimages/csidriver
grpc was bumped in /ecs-agent and /ecs-agent/daemonimages/csidriver; /agent imports both via replace directives, so go mod tidy propagates the grpc requirement here too. grpc v1.83.1 transitively requires go.opentelemetry.io/otel v1.44.0 (and otelhttp v0.61.0), which move together as part of the same MVS resolution. Updated go.mod, go.sum, and re-vendored.
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.
Combines the grpc 1.82.1 -> 1.83.1 bump across all affected modules into a single PR (supersedes the split dependabot PRs #5121 and #5122).
What changed
/ecs-agent: grpc 1.82.1 -> 1.83.1/ecs-agent/daemonimages/csidriver: grpc 1.82.1 -> 1.83.1 (standalone leaf module)/agent: propagated viamake gomod—agent/imports both modules through localreplacedirectives, so its go.mod/go.sum/vendor must carry grpc v1.83.1 too.Coupled otel bump
grpc v1.83.1 transitively requires
go.opentelemetry.io/otelv1.44.0 andotelhttpv0.61.0 in the module graph (pinning otel to v1.43.0 forces grpc down to a broken v1.83.0-dev pseudo-version). So/agentalso moves otel/metric/trace -> v1.44.0 and otelhttp -> v0.61.0. This is a hard transitive requirement, not tidy churn.Why combine
PRs #5121 and #5122 each carry the identical
agent/go.mod/go.sumchange, so merging one makes the other conflict and require a manualmake gomodreconciliation. Landing all three modules in one PR avoids that serialization.Verification
go mod verifyclean on all three modulesecs-agent,csidriver, andagent