fix: Dependency audit — brace-expansion and fast-uri advisories - #116
Merged
Aukevanoost merged 1 commit intoAug 4, 2026
Merged
Conversation
`pnpm audit --audit-level moderate` fails on main since two advisories were published: - brace-expansion (GHSA-rgw5-rvv9-x895, high): DoS via unbounded intermediate arrays, bypassing the CVE-2026-14257 mitigation. Vulnerable >=4.0.0 <5.0.9; the existing override pinned >=5.0.8. - fast-uri (GHSA-7p8r-x3mc-p8w7, high): reached through @angular-devkit/core > ajv. Patched >=3.1.5. Both are transitive and the tree holds exactly one version of each (brace-expansion@5.0.8, fast-uri@3.1.4), so the existing overrides mechanism resolves them with a single patch bump each — no direct dependency changes. Both patched versions clear the configured minimumReleaseAge. Verified: typecheck, build, lint, knip, test and audit all pass.
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.
pnpm audit --audit-level moderatecurrently fails on main (and therefore on every open PR) because two advisories were published after the last green run:brace-expansion5.0.8>=5.0.9fast-uri@angular-devkit/core > ajv3.1.4>=3.1.5Both are transitive, and the tree holds exactly one version of each, so the existing
overridesblock resolves them with a single patch bump each — no direct dependency changes and no API-compatibility risk.brace-expansionwas already pinned there at>=5.0.8for the previous advisory; this bumps it to>=5.0.9and addsfast-uri.Both patched versions were published on 2026-07-30 and 2026-07-31, so they clear the configured
minimumReleaseAge: 4320.Verified locally on a clean checkout of
main: the audit reproduces before the change, andtypecheck,build,lint,knip,testandauditall pass after it.