Fix 24 high severity vulnerabilities by overriding brace-expansion to 5.0.8 - #1351
Merged
v-HarithaVattikuti merged 2 commits intoJul 27, 2026
Merged
Conversation
Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 5.9.3 to 5.10.1. - [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases) - [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md) - [Commits](NaturalIntelligence/fast-xml-parser@v5.9.3...v5.10.1) --- updated-dependencies: - dependency-name: fast-xml-parser dependency-version: 5.10.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
- Updated `balanced-match` to version 4.0.4 in `package-lock.json`. - Updated `brace-expansion` to version 5.0.8 in `package-lock.json` and `package.json`. - Removed unused nested dependencies of `balanced-match` and `brace-expansion` from `package-lock.json`. - Adjusted `overrides` in `package.json` to reflect the new version of `brace-expansion`.
v-gowridurgad
approved these changes
Jul 27, 2026
v-priya-kinthali
approved these changes
Jul 27, 2026
v-HarithaVattikuti
approved these changes
Jul 27, 2026
dependabot
Bot
deleted the
dependabot/npm_and_yarn/fast-xml-parser-5.10.1
branch
July 27, 2026 17:11
luketainton
pushed a commit
to luketainton/repos_TeamsUserEnroller
that referenced
this pull request
Jul 28, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/stale](https://github.com/actions/stale) | action | major | `v10` → `v11` | --- ### Release Notes <details> <summary>actions/stale (actions/stale)</summary> ### [`v11.0.0`](https://github.com/actions/stale/releases/tag/v11.0.0) [Compare Source](actions/stale@v11.0.0...v11.0.0) #### What's Changed ##### Enhancement - Migrate to ESM and update dependencies by [@​chiranjib-swain](https://github-grid.enterprise.slack.com/team/U08CVLQ4JKE) in [#​1350](actions/stale#1350) ##### Dependency Update - Override brace-expansion to 5.0.8 to address 24 high-severity dependency vulnerabilities by [@​dependabot](https://github.com/dependabot) in [#​1351](actions/stale#1351) **Full Changelog**: <actions/stale@v10...v11.0.0> ### [`v11`](actions/stale@v10.4.0...v11.0.0) [Compare Source](actions/stale@v10.4.0...v11.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODUuMyIsInVwZGF0ZWRJblZlciI6IjQzLjI4NS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->Reviewed-on: https://git.tainton.uk/repos/TeamsUserEnroller/pulls/17 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
This was referenced Jul 30, 2026
This was referenced Aug 18, 2026
1 task
This was referenced Sep 3, 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.
Description:
Fixes 24 high severity vulnerabilities caused by two CVEs in
brace-expansion:Root cause
All 24 vulnerabilities traced back to a single root:
brace-expansion ≤ 5.0.7across three dependency chains —eslint,@typescript-eslint, andjest. The second CVE has no patch in v1 or v2, making5.0.8the only safe version.Fix
Added a single
overridesentry in package.json:"overrides": { - "undici": "6.27.0" + "brace-expansion": "5.0.8" }undicioverride —@actions/github@9.1.1already declares^6.23.0, which naturally resolves to6.27.0brace-expansion@5.0.8ships dual CJS + ESM exports, making it a safe drop-in for all consumers (minimatch@3,@9,@10)fast-xml-parser@5.10.1(from Dependabot) and updates license cache accordinglyWhy not
--forcenpm audit fix --forcewould downgradejest 30.4.2 → 25.0.0— a 5 major version regression that breaks ES module support. It also doesn't fully eliminate the vulnerabilities; it just replaces the chain with an older one that predates CVE indexing.Verification
npm audit— 0 vulnerabilities (was 24 high)licensed status— 63 dependencies, 0 errors