chore(deps): bump go-chi/chi/v5 and otel to fix govulncheck failures - #12662
Merged
Conversation
CI's govulncheck step fails on stable-8.0 HEAD due to newly disclosed, fixable CVEs against the currently pinned versions: GO-2026-5774/5775/5777 (IP spoofing via X-Forwarded-For in chi's RealIP middleware) and GO-2026-5158 (unbounded baggage header parsing in otel). Bump github.com/go-chi/chi/v5 to v5.3.0 and go.opentelemetry.io/otel (plus metric/trace) to v1.44.0 to pick up the fixes. Signed-off-by: Lukas Hirt <info@hirt.cz>
|
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
CI's govulncheck step fails on this branch due to a newly disclosed CVE against the currently pinned grpc version: GO-2026-6061 (vulnerabilities in the xDS RBAC authorization engine and the HTTP/2 transport server implementation). Bump google.golang.org/grpc to v1.82.1 (and the genproto googleapis/api, googleapis/rpc versions it pulls in) to pick up the fix. Signed-off-by: Lukas Hirt <info@hirt.cz>
2403905
approved these changes
Jul 27, 2026
mzner
self-requested a review
July 28, 2026 07:02
mzner
approved these changes
Jul 28, 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.
Description
CI's
govulncheckstep fails onstable-8.0HEAD due to newly disclosed, fixable CVEs against the currently pinned versions:X-Forwarded-Forin chi'sRealIPmiddleware)google.golang.org/grpc) — disclosed after this PR was opened, caught by CI on this branchBumps
github.com/go-chi/chi/v5to v5.3.0,go.opentelemetry.io/otel(plusmetric/trace) to v1.44.0, andgoogle.golang.org/grpc(plus thegenprotogoogleapis/api/googleapis/rpcversions it pulls in) to v1.82.1 to pick up the fixes.Split out of #12660 per review feedback, so the dependency bumps can be reviewed and merged independently of the LDAP connection pool feature.
Related Issue
N/A (unrelated CI/security fix)
Motivation and Context
govulncheckwas blocking CI on #12660 due to these newly-disclosed, unrelated vulnerabilities onstable-8.0's baseline.How Has This Been Tested?
go build ./...passes.go vet ./...and existing unit tests pass unmodified.make govulncheckpasses locally (no fixable vulnerabilities found).Types of changes
Checklist: