fix(blob): raise undici floor to ^6.27.0 to exclude CVE-2026-12151 - #1094
Open
Diwak4r wants to merge 2 commits into
Open
fix(blob): raise undici floor to ^6.27.0 to exclude CVE-2026-12151#1094Diwak4r wants to merge 2 commits into
Diwak4r wants to merge 2 commits into
Conversation
Contributor
|
@Normanyadav is attempting to deploy a commit to the Curated Tests - Permanent E2E Team on Vercel. A member of the Team first needs to authorize it. |
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Diwak4r
force-pushed
the
fix/undici-cve-floor
branch
from
August 5, 2026 02:20
ff66a9f to
28f2029
Compare
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
Raises the
undicidependency floor for@vercel/blobfrom^6.23.0to^6.27.0.The previous range (
^6.23.0) still resolves versions affected by CVE-2026-12151 (GHSA-vxpw-j846-p89q), a request-smuggling vulnerability in undici. Pinning the floor to^6.27.0guarantees any install of@vercel/blobpulls a patched undici, without forcing a breaking major upgrade.Changes
packages/blob/package.json:"undici": "^6.23.0"→"^6.27.0"pnpm-lock.yaml: synced viapnpm install --lockfile-only— now resolvesundici@6.28.0(undici-only diff)Tests
All three test environments pass on
undici@6.28.0:test:node— 6 suites, 172 tests, 20 snapshots ✅test:edge— 1 suite, 1 test, 2 snapshots ✅test:browser— 3 suites, 19 tests, 3 snapshots ✅Fixes #1090