chore(vscode): refresh extension lockfile for July 2026 advisories - #80
Merged
Conversation
`npm audit --audit-level=high` in the VS Code extension workflow fails on main today. Four high-severity advisories land on editor/vscode/package-lock.json: - brace-expansion 5.0.7 and 2.1.1 -> GHSA-mh99-v99m-4gvg (CVE-2026-14257), unbounded-expansion OOM DoS; patched in 5.0.8 / 2.1.3. - fast-uri 3.1.3 -> GHSA-v2hh-gcrm-f6hx, host confusion via a literal backslash authority delimiter; patched in 3.1.4. - linkify-it 5.0.1 -> GHSA-v245-v573-v5vm, quadratic-complexity DoS in the mailto: validator scan loop. Resolved via `npm update --package-lock-only`, so package.json ranges are unchanged and only the lockfile moves. `npm ci --ignore-scripts`, `npm run check`, and `npm audit --audit-level=high` all pass. 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
Lockfile-only refresh of
editor/vscode/package-lock.jsonvianpm update --package-lock-only.package.jsonranges are unchanged.Why
.github/workflows/vscode-extension.ymlrunsnpm audit --audit-level=highas a blocking step. All four advisories above land on the lockfile as it stands onmain, so that workflow fails today for any change undereditor/vscode/**.make audit(the blocking CIauditjob) is pip-audit only, so it does not cover this lockfile — this is the workflow that does.Verification
Run in
editor/vscode:npm ci --ignore-scripts— cleannpm run check(tsc --noEmit) — cleannpm audit --audit-level=high—found 0 vulnerabilitiesNot merged; leaving that to you.
🤖 Generated with Claude Code