fix(security): raise undici/fast-uri override floors to patched versions - #3733
Merged
Merged
Conversation
This was referenced Aug 5, 2026
This was referenced Aug 13, 2026
This was referenced Aug 21, 2026
Remediates two high-severity transitive dev-dependency advisories: - undici GHSA-4cwx-7wf7-3272 (cross-user info disclosure / parse-time crash via degenerate private cache directives); floor >=7.28.0 -> >=8.9.0, resolves 8.5.0 -> 8.10.0. - fast-uri GHSA-7p8r-x3mc-p8w7 (host confusion via backslash authority introducer); floor >=3.1.4 -> >=4.1.2, resolves 4.1.1 -> 4.1.2. Both floors live in pnpm-workspace.yaml overrides. Minimal, reversible: only the two floors and their resolved lockfile entries change. No package.json manifest change and no unrelated dependency drift. check-types, lint, and test (2600 passed) all green locally.
marcusrbrown
force-pushed
the
frobot/security-undici-fast-uri-2026-08-05
branch
from
August 26, 2026 04:24
0fa0be7 to
beb80a7
Compare
marcusrbrown
approved these changes
Aug 26, 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.
What
Raises two pnpm override floors in
pnpm-workspace.yamlto their patched versions, remediating two confirmed high-severity Dependabot advisories on transitive dev dependencies in the ESLint toolchain.undici>=7.28.0>=8.9.08.5.0→8.10.0fast-uri>=3.1.4>=4.1.24.1.1→4.1.2Why the floors, not a direct bump
Neither package is a direct dependency.
undiciarrives viaeslint-plugin-node-dependencies;fast-uriviaajv→eslint-plugin-json-schema-validator. The existing floors (>=7.28.0,>=3.1.4) sat below the patched versions, so pnpm was free to resolve the vulnerable8.5.0/4.1.1. Raising the floor is the minimal, reversible lever — no manifest change, no version pin, and Renovate keeps ownership of routine bumps.Verification
Local, on this branch:
pnpm check-types— cleanpnpm lint— cleanpnpm test— 2600 passed, 3 todoRisk
Low. Both are patch/compatible-range moves within the same major (
fast-uri) or a minor forward within an already-overridden major (undici), and the toolchain exercises them at lint time — which passes.Opened by the daily Fro Bot pass under category 2 (Security). Renovate retains ownership of routine version bumps; this is a scoped remediation of confirmed high advisories.