fix(#1323): fixing security findings in frontend - #1326
Merged
Conversation
CVEs fixed: - CVE-2026-41907 (uuid) Added exact-pinned override `"uuid": "11.1.1"` in frontend/package.json. The vulnerable uuid@8.3.2 was pulled in by nyc → istanbul-lib-processinfo. No patched parent exists (istanbul-lib-processinfo@latest still pins uuid@^8.3.2), so an override is used as a last resort (Step D). The override crosses a major boundary (8.x → 11.x); a follow-up to remove it once upstream patches is tracked in #1325. Closes #1323
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the frontend’s npm dependency resolution to remediate CVE-2026-41907 by forcing uuid to a patched version across the dependency tree.
Changes:
- Add an exact
overridespin foruuidto11.1.1infrontend/package.json. - Update
frontend/package-lock.jsonso the resolveduuidversion is11.1.1(including removing the previously nesteduuid@8.3.2underistanbul-lib-processinfo).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
frontend/package.json |
Adds overrides.uuid = 11.1.1 to force patched uuid version across installs. |
frontend/package-lock.json |
Lockfile updates reflecting uuid@11.1.1 resolution and removal of the vulnerable nested uuid@8.3.2. |
Files not reviewed (1)
- frontend/package-lock.json: Language not supported
paulushcgcj
enabled auto-merge (squash)
May 28, 2026 22:17
Abradat
approved these changes
May 28, 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 the open Dependabot vulnerability CVE-2026-41907 in the
frontenddependency tree.CVE: CVE-2026-41907
Package:
uuidSeverity: Moderate
Vulnerable range:
<11.1.1Fix version:
11.1.1Root cause
uuid@8.3.2was pulled in transitively via:istanbul-lib-processinfo@latest (3.0.0)still declaresuuid@^8.3.2, so no patched parent exists.Fix applied (Step D — last-resort override)
An exact-pinned
overridesentry was added tofrontend/package.json:This forces the entire dependency tree to use
uuid@11.1.1. The override crosses a major version boundary (8.x → 11.x); this was confirmed acceptable by the repository maintainer before applying.Version Resolution Details
Package: uuid
npm ls uuidshows all three occurrences at11.1.1 overridden / dedupedfound 0 vulnerabilitiesOverride removal
A follow-up issue has been opened at #1325 to remove this override once
istanbul-lib-processinfo(ornyc) ships a version that depends onuuid >=11.1.1natively.Fixes #1323
Type of change
How Has This Been Tested?
npm installcompleted successfully with 0 vulnerabilitiesnpm ls uuidconfirms all instances resolve to11.1.1git diff --stat package-lock.jsonconfirmspackage-lock.jsonwas modifiedNo new tests are required
Manual tests (description below)
Manual: ran
npm auditbefore and after — before showed 1 moderate vulnerability (CVE-2026-41907); after shows 0.Checklist
Further comments
This is a security-only patch. Only
frontend/package.json(override entry) andfrontend/package-lock.json(lock update) are changed. No application code was modified.Closes #1323
Thanks for the PR!
Deployments, as required, will be available below:
Please create PRs in draft mode. Mark as ready to enable:
After merge, new images are deployed in: