vscode: refresh bun.lock to pull patched transitive deps - #283
Merged
Conversation
Regenerate the lockfile so stale transitive resolutions float to their patched in-range versions, clearing all 12 bun audit findings: - undici 7.28.0 -> 7.29.0 (GHSA-4cwx-7wf7-3272 and four more) - fast-uri 3.1.3 -> 3.1.6 (GHSA-7p8r-x3mc-p8w7, GHSA-v2hh-gcrm-f6hx) - brace-expansion 2.1.2 -> 2.1.4 (GHSA-mh99-v99m-4gvg, GHSA-rgw5-rvv9-x895) - js-yaml 4.3.0 -> 4.3.2 (GHSA-5p4m-2wfm-xmqj) package.json ranges are unchanged; all patched versions were already allowed by the existing semver ranges. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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 and why
Regenerates
vscode/bun.lockso stale transitive resolutions float to their patched in-range versions, clearing all 12bun auditfindings (8 high, 4 moderate):All affected packages are transitive devDependencies (via
@vscode/vsce, minimatch, mocha, secretlint); none ship in the extension bundle.package.jsonranges are untouched since every patched version was already allowed by the existing semver ranges.Why:
bun auditflagged 12 vulnerabilities in the lockfile. The pins were simply stale; no range changes were needed.How to test
Notes for reviewers
A plain
bun updatewas deliberately avoided: it bumps@types/vscodeto^1.134.0, which would exceed theengines.vscodeminimum (^1.110.0) and breakvsce package. Extension tests could not run locally (headless machine missinglibatk-1.0.so.0); thevscode.ymlworkflow covers them.Checklist
mise run checkruns fmt, vet, lint, and test)🤖 Generated with Claude Code