fix(deps): patch 19 Go security advisories - #37
Merged
Conversation
Clears every open Dependabot advisory against go.mod, including eight rated critical: - golang.org/x/crypto 0.47.0 -> 0.52.0 (13 advisories; auth bypass via unenforced key/agent constraints, FIDO/U2F presence bypass, server deadlock and panic paths) - google.golang.org/grpc 1.78.0 -> 1.82.1 (xDS RBAC and HTTP/2) - golang.org/x/net 0.49.0 -> 0.55.0 - go.opentelemetry.io/otel and sdk/trace/otlptracehttp 1.40.0 -> 1.43.0 All indirect except otel. `go build ./...`, `go vet ./...` and `go test ./...` (21 packages) pass. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
otel 1.43 and x/crypto 0.52 both declare go 1.25, so `go mod tidy` raised the module's go directive. CI and the images still pinned 1.24, which made the toolchain switch at runtime and broke coverage with `go: no such tool "covdata"` — every test passed, only the coverage step failed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This was referenced Aug 16, 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.
Clears every open Dependabot advisory against
go.mod— 19 alerts, 8 of them critical. These sat unnoticed because Dependabot only opened PRs for the npm side (/web), so the Go backend never surfaced in the PR list.golang.org/x/cryptogoogle.golang.org/grpcgolang.org/x/netgo.opentelemetry.io/otel+sdk/trace/otlptracehttpThe critical
x/cryptoones are the notable set: authentication bypass through unenforced key and agent constraints, FIDO/U2F physical-presence bypass, plus server deadlock and panic paths reachable from a client.Everything except
otelis an indirect dependency, so this is ago get+go mod tidywith no source changes.Verification
go build ./...cleango vet ./...cleango test ./...— 21 packages pass, 0 failures