chore(deps): bump golang.org/x/crypto to v0.52.0#672
Merged
Conversation
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Vadman97
approved these changes
Jul 9, 2026
abelonogov-ld
added a commit
that referenced
this pull request
Jul 16, 2026
* main: chore: release main (#675) fix(flutter): remove conflicting ios-client-sdk pin in SPM manifest (#674) chore(deps): remediate critical dependency alerts (#673) chore(deps): bump golang.org/x/crypto to v0.52.0 (#672) fix: stabilize flaky Next.js server instrumentation test (#671) chore: release main (#669) feat: add app_reload event with session preservation across reloads (React Native) (#670) fix: use secure RNG for React Native session ids (#668) ci: skip Build Yarn Turborepo job for non-yarn SDK-only changes (#665) # Conflicts: # sdk/@launchdarkly/flutter/packages/observability/ios/launchdarkly_flutter_observability.podspec # sdk/@launchdarkly/flutter/packages/observability/ios/launchdarkly_flutter_observability/Package.swift
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.
Summary
Remediates 21 critical Dependabot alerts (the recent SSH/x/crypto CVE cluster, patched in 0.52.0) across the three Go modules that carry the vulnerable
golang.org/x/crypto(all indirect):go mod tidyalso carried the required transitive bumps (x/net 0.52→0.54,x/sys 0.42→0.45,x/text 0.35→0.37). Thegodirective stays at 1.25.0 in every module (0.52.0 needs Go ≥1.25, already satisfied) — no toolchain cascade. Manifest/lockfile changes only, no source changes.No existing PR fully covered this — the closest (Dependabot #667) only reached x/crypto 0.51.0, which does not satisfy the advisory (needs ≥0.52.0).
How did you test this change?
Per module:
go build ./...andgo vet ./...pass fore2e/go-pluginandsdk/highlight-go. Ine2e/go, the individual example apps compile;go build ./...reports a pre-existingmain redeclared(echo.go/fiber.go share a package), which exists onmainand is unrelated to this bump.Are there any deployment considerations?
No. Dependency/lockfile bumps only; no migrations or data changes.
Link to Devin session: https://app.devin.ai/sessions/80cb21c20f43409c867eef56680a601b
Requested by: @kparkinson-ld
Note
Low Risk
Lockfile-only dependency bumps with no runtime code changes; risk is limited to transitive crypto/network library behavior in e2e and SDK builds.
Overview
Bumps indirect
golang.org/x/cryptofrom v0.49.0 to v0.52.0 ine2e/go-plugin,e2e/go, andsdk/highlight-go, with matchinggo.sumupdates, to address Dependabot/CVE advisories that require ≥0.52.0.go mod tidyalso refreshes related transitive pins:golang.org/x/net(0.52→0.54),x/sys(0.42→0.45), andx/text(0.35→0.37). No application source changes—only module manifests and lockfiles.Reviewed by Cursor Bugbot for commit 5ff9d98. Bugbot is set up for automated code reviews on this repo. Configure here.