go mod update - #441
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the module dependency graph for grpcui by bumping gRPC and related transitive dependencies, without changing application source code.
Changes:
- Bump
google.golang.org/grpctov1.83.2and advancegoogle.golang.org/genproto/googleapis/rpcto a newer pseudo-version. - Update select direct deps (
jhump/protoreflect,pkg/browser) and refresh indirect dependencies (xDS/Envoy, OpenTelemetry, SPIFFE, Google auth-related modules) reflected ingo.sum.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates direct and indirect module versions (notably gRPC) to newer releases/pseudo-versions. |
| go.sum | Refreshes checksums for the updated module graph, adding/removing transitive sums accordingly. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This was referenced Aug 31, 2026
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.
Note
Medium Risk
Large gRPC minor-line jump can affect TLS, credentials, xDS, and reflection behavior at runtime even without local code edits; validate CLI connectivity and reflection against real targets.
Overview
This PR only updates
go.modandgo.sum—no changes to application source.The most significant direct bump is
google.golang.org/grpcfrom 1.66.2 to 1.83.2, along with matchinggoogle.golang.org/genproto/googleapis/rpcupdates. Other direct bumps includejhump/protoreflect1.18.1,pkg/browserto a 2024 revision, whilegrpcurl,protobuf, andgolang.org/x/*direct versions stay as they were in the diff.The
go.sumchurn reflects a refreshed indirect graph typical of newer gRPC: added OpenTelemetry, SPIFFE,cloud.google.com/go/auth, and split Envoy/xDS modules, and dropped older opencensus-proto / monolithic go-control-plane entries.Reviewed by Cursor Bugbot for commit 5b1450d. Bugbot is set up for automated code reviews on this repo. Configure here.