Bump transitive deps postcss, fast-xml-parser, uuid to patched versions#752
Merged
IEvangelist merged 1 commit intomainfrom Apr 24, 2026
Merged
Bump transitive deps postcss, fast-xml-parser, uuid to patched versions#752IEvangelist merged 1 commit intomainfrom
IEvangelist merged 1 commit intomainfrom
Conversation
Addresses Dependabot alerts: - #68 fast-xml-parser < 5.7.0 (XML Comment/CDATA injection) -> 5.7.1 - #71 uuid < 14.0.0 (missing buffer bounds check) -> 14.0.0 - #72 postcss < 8.5.10 (XSS via unescaped </style>) -> 8.5.10 Updated pnpm overrides in src/frontend/package.json to force patched versions of these transitive dependencies and regenerated pnpm-lock.yaml. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the frontend dependency resolution to remediate Dependabot alerts by forcing patched transitive dependency versions via pnpm overrides and lockfile regeneration.
Changes:
- Updated
pnpm.overridesin the frontendpackage.jsonto force patched versions offast-xml-parser,postcss, anduuid. - Regenerated
pnpm-lock.yamlto reflect the overridden resolutions.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/frontend/package.json | Adds/updates pnpm overrides to force patched transitive dependency versions. |
| src/frontend/pnpm-lock.yaml | Lockfile regeneration reflecting the new override constraints and resolved package versions. |
Files not reviewed (1)
- src/frontend/pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
radical
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.
Addresses Dependabot alerts #68, #71, and #72 by adding/updating pnpm overrides in
src/frontend/package.jsonto force patched versions of these transitive dependencies, and regeneratingpnpm-lock.yaml.< 5.7.05.7.05.7.1< 14.0.014.0.014.0.0bufis provided< 8.5.108.5.108.5.10</style>in CSS stringify outputAll three are transitive dependencies surfaced through
src/frontend/pnpm-lock.yaml. No direct dependencies inpackage.jsonneeded to change.Each override lower bound matches the advisory's
first_patched_version; theResolved tocolumn shows the actual version picked during lockfile regeneration (pnpm selects the highest compatible).