Conversation
Resolves all open Dependabot alerts by updating transitive dependencies to patched versions via `npm audit fix`: - fast-uri 3.1.5 -> 3.1.8 (host confusion via percent-encoded scheme normalization; host confusion via skipped IDN canonicalization on scheme-relative references; SSRF via malformed IPv6 normalization; SSRF via repeated hostname percent-decoding) - js-yaml 4.3.1 -> 4.3.2 (maxTotalMergeKeys does not limit CPU use for empty merge sources) - qs 6.15.2 -> 6.16.0 (DoS via attacker-controlled isBuffer; array-limit bypass via bracket-key comma parsing), pulling in side-channel 1.1.1 and side-channel-list 1.0.1 The `qs` override floor in package.json is raised from ^6.15.2 to ^6.16.0 so the override itself excludes the vulnerable range. All affected packages are dev-only (via @vscode/vsce), so the bundled extension is unaffected. `npm audit` now reports 0 vulnerabilities; `tsc --noEmit` and `vsce package` both still pass. Co-Authored-By: Claude Opus 5 (1M context) <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.
Resolves all 7 open Dependabot alerts (#42–#48), all of which are transitive dev dependencies of
vscode-extension/pulled in through@vscode/vsce.fast-urijs-yamlmaxTotalMergeKeysdoes not limit CPU use for empty merge sources (high)qsisBuffer(moderate)qs6.16.0 also pulls inside-channel1.1.0 → 1.1.1 andside-channel-list1.0.0 → 1.0.1.Changes
package-lock.json: updated vianpm audit fix(all bumps are within existing semver ranges).package.json: raised theqsoverride floor from^6.15.2to^6.16.0, so the override itself no longer admits the vulnerable range.None of these packages are bundled into
out/extension.js, so the shipped extension is unchanged.Verification
npm audit: 0 vulnerabilitiesnpx tsc --noEmit: passesnpx vsce package: bundles and packages successfully (this runs secretlint, which exercises the bumpedjs-yaml/fast-uri)npm ls --all: tree is consistent with the lockfile🤖 Generated with Claude Code