fix: update brace-expansion to resolve CVE-2026-69152, CVE-2026-14257, CVE-2026-13149 - #24
Open
independabot-soc2[bot] wants to merge 1 commit into
Open
Conversation
…CVE-2026-13149 Co-Authored-By: Oz <oz-agent@warp.dev>
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.
Hi, this is independabot — not Lili! You can ask her if you have questions, but she had no hand in generating this PR other than setting up the independabot schedule.
Please merge this PR yourself, if you approve.
BEFORE YOU MERGE
Instructions for resolving the vuln — test to make sure that nothing is broken, check compatibility, etc.
brace-expansionis a transitive dependency present in three major-version lines in the lockfile, all vulnerable to DoS advisories. Replaced the single existingbrace-expansion@5.0.6override with one pin per major line so every copy resolves to a patched version.brace-expansionpinned via npmoverridesbrace-expansion@1:1.1.12→1.1.18brace-expansion@2:2.0.2→2.1.4brace-expansion@5:5.0.7→5.0.9minimatchcopies resolve through these pins, so its audit finding clears too)npm audit:brace-expansionandminimatchno longer reported (were 4 high findings)npm cifrom the regenerated lockfile: clean, 901 packagesprisma generate: OKnpm run lint: 0 errors (6 pre-existing warnings, unchanged)next build: compiled successfully, TypeScript clean, all 35 pages generatedHighlight the risky code / where the dependency was used
No application source changed — only
package.json(overrides) andpackage-lock.json.brace-expansionis never imported directly by this repo. Consumers:node_modules/brace-expansion(1.1.18) ←minimatch@3←eslint(dev tooling / lint)node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion(2.1.4) ← TS lint toolingnode_modules/@ts-morph/common/node_modules/brace-expansion(5.0.9) ←shadcnCLIAll are glob-pattern expansion paths in build/lint/CLI tooling, so runtime app behavior is not affected. Risk is limited to lint/build tooling, both of which were exercised above.
Special instructions for this PR — e.g. if it's a Stainless thing
The pins deliberately go past the minimum Dependabot-required versions (
1.1.16/2.1.2): the npm advisory DB flags<=1.1.17and2.0.0 - 2.1.3for the OOM advisories, so1.1.18/2.1.4are needed fornpm auditto come back clean. These are patch-level bumps within each major.The existing
brace-expansion@5.0.6override key was removed because the installed 5.x version had already moved past5.0.6, making that key a no-op going forward;brace-expansion@5is the durable form.AFTER YOU MERGE
Nothing. Remaining
oz-workspaceDependabot alerts (hono,ip-address,sharp,valibot,@hono/node-server) are out of scope here and will be handled in follow-up PRs.