Fix high-severity brace-expansion and fast-uri audit findings - #9598
Merged
Conversation
Re-resolved the pnpm lock file with `rush update --full`, which picks up patched releases of `brace-expansion` (1.x, 2.x and 5.x lines) and `fast-uri`, clearing all high-severity `rush audit` findings. With those resolved, GHSA-mh99-v99m-4gvg no longer surfaces, so the `--ignore GHSA-mh99-v99m-4gvg` argument is removed from the `audit` command in `common/config/rush/command-line.json`. Future occurrences of that advisory will now fail the audit instead of being silently skipped. `rush audit` now reports 0 high/critical (5 remaining: 1 low, 4 moderate). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
brace-expansion and fast-uri audit findings
GytisCepk
enabled auto-merge (squash)
August 6, 2026 08:43
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Rush monorepo’s pnpm lockfile to pick up patched transitive dependency versions addressing the reported high-severity advisories (notably brace-expansion and fast-uri), and removes an obsolete pnpm audit suppression so future occurrences will fail the audit as intended.
Changes:
- Regenerates
common/config/rush/pnpm-lock.yamlviarush update --full, pulling in patched versions of vulnerable transitive packages. - Removes the
--ignore GHSA-mh99-v99m-4gvgsuppression from the repo’srush auditcommand definition.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| common/config/rush/pnpm-lock.yaml | Regenerated lockfile resolving patched dependency versions (including brace-expansion and fast-uri), plus assorted transitive bumps from rush update --full. |
| common/config/rush/command-line.json | Updates the audit shell command to stop suppressing an advisory that no longer appears. |
Files not reviewed (1)
- common/config/rush/pnpm-lock.yaml: Generated file
hl662
approved these changes
Aug 6, 2026
aruniverse
approved these changes
Aug 6, 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.
A plain
rush update --fullwas enough — noglobalOverridesneeded.pnpm-lock.yaml— regenerated. Picks up patchedbrace-expansion(1.x, 2.x, 5.x lines — GHSA-rgw5-rvv9-x895) andfast-uri>= 3.1.5 (host confusion via backslash).command-line.json— removed--ignore GHSA-mh99-v99m-4gvg. That advisory no longer surfaces, so the suppression is obsolete and future occurrences will correctly fail the audit.rush auditgoes from1 low, 4 moderate, 6 high (2 ignored)to1 low, 4 moderate— the remainder are below the--audit-level highthreshold.This PR was created by an AI Assistant (powered by Claude Opus 5).