fix(deps): resolve outstanding npm audit advisories - #604
Merged
Conversation
This action was missed by the earlier dependency sweeps. Clears all remaining advisories: - brace-expansion: new advisory GHSA-mh99-v99m-4gvg flags every version <=5.0.7 (including 1.1.16/2.1.2), and only 5.0.8 is patched. Added an overrides entry forcing brace-expansion ^5.0.8 across the tree; its expand() API is unchanged so minimatch/glob still work (build + tests pass). The bundled glob copy means dist is rebuilt. - jest-junit -> 17.0.0 (clears its transitive uuid advisory) - js-yaml -> 5.2.2 npm audit now reports 0 vulnerabilities. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
liamhughes
reviewed
Jul 27, 2026
| "version": "4.0.3" | ||
| "version": "4.0.3", | ||
| "overrides": { | ||
| "brace-expansion": "^5.0.8" |
Contributor
There was a problem hiding this comment.
Overrides always make me think twice. I appreciate you noting in the PR description that the current API surface for what we use is unchanged, but there could be future changes that do. I guess we rely on tests to break...
liamhughes
approved these changes
Jul 27, 2026
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
This action was missed by the earlier dependency sweeps. Brings it to 0 vulnerabilities.
overridesentry forcingbrace-expansion@^5.0.8across the whole tree. Itsexpand()API is unchanged across majors, so minimatch/glob keep working (build + unit tests pass). Theglobcopy is bundled, sodistis rebuilt.uuidadvisory)Note
The brace-expansion override approach (and the js-yaml 5.2.2 bump) likely apply to the rest of the fleet too — these are new advisories that supersede the earlier fixes. Flagging separately.
🤖 Generated with Claude Code