Bump js-yaml to 3.15.2 to clear GHSA-2883-xcg3-v3hh - #13
Merged
KidkArolis merged 1 commit intoSep 14, 2026
Merged
Conversation
js-yaml 3.15.1 is affected by a high-severity advisory where maxTotalMergeKeys fails to limit CPU use for empty merge sources. It reaches us only as a dev-only transitive of ava, via supertap's js-yaml@^3.14.1. 3.15.2 is the patched release inside that range, so this is a plain in-range bump with no overrides. npm audit now reports 0 vulnerabilities. The demo workspace was already clean. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
matt-humaan
marked this pull request as ready for review
September 14, 2026 16:39
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.


Clears the one
npm auditfinding in this repo, for SUP-4013.The finding
js-yaml3.15.1, high severity — GHSA-2883-xcg3-v3hh, wheremaxTotalMergeKeysfails to limit CPU use for empty merge sources.It is dev-only, and reaches us as a transitive of the test runner:
The fix
3.15.2 is the patched release inside supertap's
^3.14.1range, so a plainnpm update js-yamlresolves it. Nooverridesneeded. The diff is 3 lines ofpackage-lock.json.npm auditnow reports 0 vulnerabilities. Thedemo/workspace was already clean, and those are the only two manifests in the repo.Verification
Fresh
npm cion node 22.23.2, thennpm test(build + oxlint + oxfmt + ava) — 102 tests passed, matching the baseline taken before the change.Not run:
npm run test:browser(Playwright) and the React 18/19 CI matrix. A dev-only YAML test reporter can't affect either, and CI covers both on this PR.Note for anyone updating deps here
The first attempt at this produced a 108-line diff, because npm 10 strips the
libcfields from optional platform-specific packages — a field npm 11 wrote and npm 10 doesn't understand. This lockfile was generated with npm 11, so runningnpm updateunder npm 10 silently degrades it. This commit was made with npm 11.11.0 to keep the diff clean.npm ciis unaffected, so CI on node 22 is fine either way.🤖 Generated with Claude Code