build(deps): raise brace-expansion and nanoid past their advisories - #981
Merged
Conversation
Both are transitive dev dependencies, and npm audit reported a high-severity denial of service in each. Neither reaches the shipped bundle, so the exposure was a lint or build step. brace-expansion moves 5.0.7 to 5.0.9 under eslint's minimatch, and nanoid moves 3.3.16 to 3.3.18 under vite's postcss. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This was referenced Aug 31, 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.
npm auditreported a high-severity denial of service in two transitive dev dependencies ofthe frontend.
npm audit fix --package-lock-onlyresolves both, and the change is confined tothe lockfile.
brace-expansion5.0.7 to 5.0.9, undereslint > minimatch(GHSA-mh99-v99m-4gvg,GHSA-rgw5-rvv9-x895)
nanoid3.3.16 to 3.3.18, undervite > postcss(GHSA-2v37-7h3g-55p8)Neither package reaches the shipped bundle.
npm audit --omit=devwas already clean, so whatwas exposed is a lint or build step reading our own source.
Dependabot had not proposed these on its own because its version updates sit behind a 14-day
cooldown. A security update is exempt from that cooldown, but neither of these arrived as one.
website/package-lock.jsoncarries 18 more high-severity findings, all of them the sameimage-sizeparser reached through Docusaurus. Every published version is affected and nopatched release exists, so that one waits on upstream. Left as a note on #980 rather than
folded in here.
Closes #980.
Tested:
npm auditnow reports zero, plus the frontend's lint, format check, test(1661 passed) and build, and
pytest tests/test_repo_hygiene.pyfor the lockfile guards.Co-Authored-By: Claude Opus 5 (1M context) noreply@anthropic.com