chore(deps): bump google.golang.org/grpc to v1.82.1 across all modules - #2114
Merged
Merged
Conversation
Closes the last open Dependabot advisory on the repository: "gRPC-Go: xDS RBAC
and HTTP/2 Vulnerabilities", which affects every version below v1.82.1. Six
modules pinned v1.79.3, and one of them is immudb itself, so this was the only
alert touching shipped code.
Modules bumped:
go.mod (ships)
tools/mkdb/go.mod
test/columns/go.mod
test/e2e/truncation/go.mod
docs/security/vulnerabilities/linear-fake/go/go.mod
docs/security/vulnerabilities/linear-fake/server/go.mod
go mod tidy pulled the transitive updates grpc v1.82.1 requires. In the main
module those are:
google.golang.org/genproto/googleapis/{api,rpc} -> 20260414002931-afd174a4e478
google.golang.org/protobuf 1.36.10 -> 1.36.11
github.com/envoyproxy/protoc-gen-validate 1.3.0 -> 1.3.3
github.com/spf13/afero 1.10.0 -> 1.15.0 (indirect, via viper)
Verified on this branch: go build ./... and go vet over pkg/server, pkg/client
and pkg/api are clean; go test passes for pkg/client (8 packages), pkg/server
(3 packages) and pkg/api/schema, with no failures. grpc sits on the server wire
path, so this was checked rather than assumed.
Collaborator
SimoneLazzaris
approved these changes
Jul 30, 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.
Closes the last open Dependabot advisory on the repository: "gRPC-Go: xDS RBAC and HTTP/2 Vulnerabilities", which affects every version below v1.82.1.
Six modules pinned
v1.79.3, and one of them is immudb itself — so this was the only remaining alert touching shipped code.Modules bumped
go.modtools/mkdb/go.modtest/columns/go.modtest/e2e/truncation/go.moddocs/security/vulnerabilities/linear-fake/go/go.moddocs/security/vulnerabilities/linear-fake/server/go.modTransitive updates
go mod tidypulled what grpc v1.82.1 requires. In the main module:google.golang.org/genproto/googleapis/{api,rpc}20260414002931-afd174a4e478google.golang.org/protobufgithub.com/envoyproxy/protoc-gen-validategithub.com/spf13/aferoCalling out
aferoexplicitly — it is a larger jump than the rest and arrives indirectly through viper rather than through grpc.Verification
grpc sits on the server wire path, so this was checked rather than assumed:
Context
With #2111 merged, open alerts dropped from 35 to 6 — all six being this one grpc advisory. This PR takes it to zero.