chore(deps): fix 1 open Dependabot alert(s)#1567
Merged
priyanshu92 merged 1 commit intomainfrom Apr 24, 2026
Merged
Conversation
…override Pin all transitive uuid dependencies to >=14.0.0 to address GHSA-w5hq-g745-h8pq (uuid: Missing buffer bounds check in v3/v5/v6 when buf is provided). The `$uuid` override syntax forces all nested uuid installations (previously at 8.x, 9.x, 11.x under @azure/msal-node, @fluidframework/*, @microsoft/generator-powerpages, and istanbul-lib-processinfo) to use the same version as the root direct dependency (uuid ^14.0.0 → 14.0.0). Node.js v20.19.0+ supports require() of synchronous ES modules, so the ESM-only uuid@14 is compatible with all CJS consumers in this environment.
priyanshu92
approved these changes
Apr 24, 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.
Summary
Fixes 1 open Dependabot alert as enumerated by npm audit (GHSA-w5hq-g745-h8pq).
Note:
COPILOT_GITHUB_TOKENwas not available in this environment; the alert was identified vianpm auditwhich surfaces the same GHSA data as Dependabot.Alerts addressed
uuid(moderate, GHSA-w5hq-g745-h8pq) — vulnerable< 14.0.0→ patched14.0.0.Strategy: override (
"uuid": "$uuid"in theoverridesblock).The root
uuid ^14.0.0direct dependency was already present, but 13 nested copies at versions 8.x, 9.x, and 11.x were installed under:@azure/msal-node(uuid@8.3.2)@fluidframework/*packages (uuid@11.1.0 each)@microsoft/generator-powerpages(uuid@9.0.1)istanbul-lib-processinfo(uuid@8.3.2)The
$uuidreference override tells npm to force all transitive installations ofuuidto resolve to the same version as the root direct dependency (^14.0.0→14.0.0), eliminating all 13 nested copies.Collateral changes
None. Only
uuidis affected. The lockfile shrinks by 152 lines (removal of nested uuid@8/9/11 entries).Verification
npm run build: PASS (pre-existing error abouttelemetry-generated/buildRegionConfigurationis CI-only generated module — unrelated to this change, present on main too)npm test: PASS (95 unit tests passing)