chore: dependency updates + transitive CVE fixes#138
Conversation
Bump direct deps pgx/v5 (v5.10.0), golang.org/x/text (v0.38.0), and
grpc (v1.81.1), plus indirect golang.org/x/{crypto,net,sync,sys,term}.
Re-vendored; build and tests pass.
Co-authored-by: c1-squire-dev[bot] <c1-squire-dev[bot]@users.noreply.github.com>
Patch-level updates: google/cel-go v0.28.0 -> v0.28.1 and vertica/vertica-sql-go v1.3.5 -> v1.3.6. Both CVE-clean; re-vendored, build and tests pass. Co-authored-by: c1-squire-dev[bot] <c1-squire-dev[bot]@users.noreply.github.com>
|
@- |
Resolves advisories in reachable transitive dependencies: - go-viper/mapstructure/v2 v2.2.1 -> v2.4.0 (GO-2025-3787, GO-2025-3900) - golang-jwt/jwt/v5 v5.2.1 -> v5.2.2 (GO-2025-3553) - go.mongodb.org/mongo-driver v1.17.4 -> v1.17.7 (GHSA-cp6g-7hqx-qxhp) OSV recheck reports all three clean; re-vendored, build and tests pass. Co-authored-by: c1-squire-dev[bot] <c1-squire-dev[bot]@users.noreply.github.com>
Connector PR Review: chore: dependency updates + transitive CVE fixesBlocking Issues: 0 | Suggestions: 1 | Threads Resolved: 0 Review SummaryScanned the full PR diff for security and correctness. This is a dependency-maintenance PR with no source-code changes: Security IssuesNone found. Correctness IssuesNone found. Suggestions
Prompt for AI agents``` SuggestionsIn `vendor/modules.txt` (and the PR description):
|
What
Dependency maintenance across three commits.
1. Requested dependency bumps (minor/patch)
Direct:
github.com/jackc/pgx/v5v5.7.4 → v5.10.0golang.org/x/textv0.36.0 → v0.38.0google.golang.org/grpcv1.81.0 → v1.81.1Indirect:
golang.org/x/cryptov0.50.0 → v0.53.0golang.org/x/netv0.53.0 → v0.56.0golang.org/x/syncv0.20.0 → v0.21.0golang.org/x/sysv0.43.0 → v0.46.0golang.org/x/termv0.42.0 → v0.44.02. Patch bumps
github.com/google/cel-gov0.28.0 → v0.28.1github.com/vertica/vertica-sql-gov1.3.5 → v1.3.63. Security: transitive CVE fixes
An OSV scan of the full dependency tree flagged advisories in reachable transitive deps. Patched:
github.com/go-viper/mapstructure/v2v2.2.1 → v2.4.0 — GO-2025-3787, GO-2025-3900 (log info-leak)github.com/golang-jwt/jwt/v5v5.2.1 → v5.2.2 — GO-2025-3553 (DoS, header parsing)go.mongodb.org/mongo-driverv1.17.4 → v1.17.7 — GHSA-cp6g-7hqx-qxhp (heap OOB read, GSSAPI)Not included (present in the module graph but not compiled into the binary, so not exploitable here):
quic-go(GHSA-vvgj-x9jq-8cj9),logrus(GO-2025-4188).How
go get(pinned versions) →go mod tidy→go mod vendorfor each group.Verification
go build ./...go test ./...(all packages pass)🤖 Generated with Claude Code