security(deps): bump x/crypto, x/sys, Go toolchain, and npm transitives - #9
Merged
Conversation
Fixes all 22 open Dependabot alerts plus pnpm audit findings: - golang.org/x/crypto 2021 pseudo-version -> v0.54.0 (20 alerts: 7 critical, 4 high, 9 medium, mostly ssh/agent auth bypass and DoS) - golang.org/x/sys 2021 pseudo-version -> v0.47.0 (1 medium) - toolchain pinned to go1.26.5 so CI/release builds pick up stdlib fixes (GO-2026-5856 crypto/tls, GO-2026-5039 net/textproto, GO-2026-5037 crypto/x509), setup-go reads it via go-version-file: go.mod - fast-uri 3.1.3 -> 3.1.5 (high, GHSA-v2hh-gcrm-f6hx) - brace-expansion 1.1.15 -> 1.1.18 (high, GHSA-mh99-v99m-4gvg + GHSA-3jxr-9vmj-r5cp) govulncheck now reports 0 vulnerabilities affecting this code. The only remaining informational finding is GO-2026-5932 (x/crypto/openpgp is unmaintained), which has no fixed version and is not imported by this code. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Code Review
This pull request updates several dependencies across Go and Node.js package managers. Specifically, it introduces Go toolchain version 1.26.5, upgrades the 'golang.org/x/crypto' and 'golang.org/x/sys' Go modules, and updates the 'brace-expansion' and 'fast-uri' packages in 'pnpm-lock.yaml'. There are no review comments, and I have no feedback to provide.
v2.6.2 was built with go1.25 and refuses to load config when the target Go version (toolchain go1.26.5) is newer than its own build toolchain. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
khanhhuy
approved these changes
Aug 3, 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.
What
Fixes all 22 open Dependabot alerts plus local
pnpm auditfindings. Dependency and toolchain bumps only, no code changes.Go (
go.mod/go.sum)golang.org/x/crypto: 2021 pseudo-version -> v0.54.0. Clears 20 alerts (7 critical, 4 high, 9 medium), mostly ssh/agent auth bypasses and DoS, including GHSA-jppx-rxg9-jmrx, GHSA-x527-x647-q7gg, GHSA-5cgq-3rg8-m6cv, GHSA-v778-237x-gjrc.golang.org/x/sys: 2021 pseudo-version -> v0.47.0 (GHSA-p782-xgp4-8hr8, medium).toolchain go1.26.5pinned so CI/release builds pick up Go stdlib fixes flagged by govulncheck as reachable from this code (GO-2026-5856 crypto/tls, GO-2026-5039 net/textproto, GO-2026-5037 crypto/x509). CI already resolves Go viago-version-file: go.mod, and setup-go honors the toolchain directive.npm (
pnpm-lock.yaml, dev tooling only)fast-uri3.1.3 -> 3.1.5 (high, GHSA-v2hh-gcrm-f6hx)brace-expansion1.1.15 -> 1.1.18 (high, GHSA-mh99-v99m-4gvg + GHSA-3jxr-9vmj-r5cp)Both are in-range lockfile refreshes, no overrides.
Verification
go build ./...,go vet ./...,go test ./...all passgovulncheck ./...: 0 vulnerabilities affecting this code. Only remaining informational finding is GO-2026-5932 (x/crypto/openpgpunmaintained, no fixed version, not imported here)pnpm audit: no known vulnerabilities🤖 Generated with Claude Code
CI