fix: bump brace-expansion to patch GHSA-rgw5-rvv9-x895 (DEVX-8506) - #93
Open
warp-agent-staging[bot] wants to merge 1 commit into
Open
fix: bump brace-expansion to patch GHSA-rgw5-rvv9-x895 (DEVX-8506)#93warp-agent-staging[bot] wants to merge 1 commit into
warp-agent-staging[bot] wants to merge 1 commit into
Conversation
Bump the transitive, dev-scope brace-expansion entries in package-lock.json to their patched versions: - 1.1.17 -> 1.1.18 (node_modules/brace-expansion) - 2.1.3 -> 2.1.4 (node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion) - 2.1.3 -> 2.1.4 (node_modules/glob/node_modules/brace-expansion) Fixes GHSA-rgw5-rvv9-x895 (DoS via unbounded intermediate arrays, bypassing the CVE-2026-14257 mitigation). Lockfile-only change; no package.json ranges were touched. Co-Authored-By: Warp <agent@warp.dev>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Author
|
This PR was generated with Warp. |
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
Bumps the transitive, dev-scope
brace-expansiondependency entries inpackage-lock.jsonto their patched versions, fixing GHSA-rgw5-rvv9-x895 ("brace-expansion: DoS via unbounded intermediate arrays, bypassing the CVE-2026-14257 mitigation").Tracked by DEVX-8506.
Note:
brace-expansionis not a direct dependency here — it's pulled in transitively by dev-only tooling (eslint/minimatch,typescript-eslint,glob/tailwindcss/sucrase). There's no production/runtime exposure. GitHub had already auto-dismissed the two open Dependabot alerts for this GHSA in this repo (#120 for the<1.1.18range, #121 for the>=2.0.0 <2.1.4range) as low-impact dev-dependency alerts. This PR is hygiene, not an incident response.Changes
package-lock.json: bumped 3brace-expansionentries, lockfile-only (nopackage.jsonranges touched, no unrelated packages upgraded):node_modules/brace-expansion:1.1.17->1.1.18node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion:2.1.3->2.1.4node_modules/glob/node_modules/brace-expansion:2.1.3->2.1.4Verification
npm ci: succeeds against the updated lockfile.npm ls brace-expansion: shows only1.1.18and2.1.4in the tree — no vulnerable version remains.npm run lint: passes with no errors.npm run build: fails withError: appId is missingduring static page data collection for Algolia-backed pages. Confirmed this is pre-existing onmain(reproduced the identical failure on the unmodified lockfile) — it requires Algolia search environment secrets that aren't available in this sandbox, and is unrelated to this change.package.json, so no test run was applicable.