Restore google.golang.org/grpc to v1.79.3 (re-fix CVE)#437
Merged
Conversation
Commit 944d459 ("Drop dead Error field from *IPUpdateResponse") regenerated .pb.go files via `make generate` inside the proto-gen container, which had a stale module graph and silently rewrote go.mod to drop grpc from v1.79.3 back to v1.59.0. v1.79.3 was specifically pinned by commit 5a3c9db to fix a gRPC authorization bypass CVE, so this undo re-introduced the vulnerability. Restore the intended version. No code changes — only go.mod / go.sum. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
raghavendra-nataraj
approved these changes
Jun 8, 2026
jeanlag1
approved these changes
Jun 8, 2026
yingzhan-msft
added a commit
to microsoft/moc-sdk-for-go
that referenced
this pull request
Jun 8, 2026
Picks up microsoft/moc#437 which restores google.golang.org/grpc to v1.79.3 (CVE fix that was accidentally undone in v0.43.0). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
Summary
Commit
944d459("Drop dead Error field from *IPUpdateResponse", merged in #435) regenerated.pb.gofiles viamake generateinside the proto-gen container. That container had a stale module graph and silently rewrotego.modto dropgoogle.golang.org/grpcfrom v1.79.3 → v1.59.0.v1.79.3was specifically pinned in commit5a3c9db(#429) to fix a gRPC authorization-bypass CVE — so the unintended downgrade re-introduced the vulnerability onmain.Changes
go.mod/go.sum: restoregoogle.golang.org/grpc v1.79.3and refresh transitive deps.Testing
go build ./...✅go test ./...✅