Skip to content

chore(deps): update dependency minimatch to ~10.2.0 [security]#14460

Merged
edison1105 merged 1 commit intomainfrom
renovate/npm-minimatch-vulnerability
Feb 24, 2026
Merged

chore(deps): update dependency minimatch to ~10.2.0 [security]#14460
edison1105 merged 1 commit intomainfrom
renovate/npm-minimatch-vulnerability

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 19, 2026

This PR contains the following updates:

Package Change Age Confidence
minimatch ~10.1.2~10.2.0 age confidence

GitHub Vulnerability Alerts

CVE-2026-26996

Summary

minimatch is vulnerable to Regular Expression Denial of Service (ReDoS) when a glob pattern contains many consecutive * wildcards followed by a literal character that doesn't appear in the test string. Each * compiles to a separate [^/]*? regex group, and when the match fails, V8's regex engine backtracks exponentially across all possible splits.

The time complexity is O(4^N) where N is the number of * characters. With N=15, a single minimatch() call takes ~2 seconds. With N=34, it hangs effectively forever.

Details

Give all details on the vulnerability. Pointing to the incriminated source code is very helpful for the maintainer.

PoC

When minimatch compiles a glob pattern, each * becomes [^/]*? in the generated regex. For a pattern like ***************X***:

/^(?!\.)[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?X[^/]*?[^/]*?[^/]*?$/

When the test string doesn't contain X, the regex engine must try every possible way to distribute the characters across all the [^/]*? groups before concluding no match exists. With N groups and M characters, this is O(C(N+M, N)) — exponential.

Impact

Any application that passes user-controlled strings to minimatch() as the pattern argument is vulnerable to DoS. This includes:

  • File search/filter UIs that accept glob patterns
  • .gitignore-style filtering with user-defined rules
  • Build tools that accept glob configuration
  • Any API that exposes glob matching to untrusted input

Release Notes

isaacs/minimatch (minimatch)

v10.2.1

Compare Source

v10.2.0

Compare Source

v10.1.3

Compare Source


Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Feb 19, 2026
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Feb 19, 2026

Size Report

Bundles

File Size Gzip Brotli
runtime-dom.global.prod.js 104 kB 39.3 kB 35.4 kB
vue.global.prod.js 162 kB 59.4 kB 52.8 kB

Usages

Name Size Gzip Brotli
createApp (CAPI only) 47.8 kB 18.6 kB 17.1 kB
createApp 56 kB 21.7 kB 19.8 kB
createSSRApp 60.2 kB 23.4 kB 21.4 kB
defineCustomElement 61.6 kB 23.4 kB 21.4 kB
overall 70.4 kB 27 kB 24.6 kB

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Feb 19, 2026

Open in StackBlitz

@vue/compiler-core

pnpm add https://pkg.pr.new/@vue/compiler-core@14460
npm i https://pkg.pr.new/@vue/compiler-core@14460
yarn add https://pkg.pr.new/@vue/compiler-core@14460.tgz

@vue/compiler-dom

pnpm add https://pkg.pr.new/@vue/compiler-dom@14460
npm i https://pkg.pr.new/@vue/compiler-dom@14460
yarn add https://pkg.pr.new/@vue/compiler-dom@14460.tgz

@vue/compiler-sfc

pnpm add https://pkg.pr.new/@vue/compiler-sfc@14460
npm i https://pkg.pr.new/@vue/compiler-sfc@14460
yarn add https://pkg.pr.new/@vue/compiler-sfc@14460.tgz

@vue/compiler-ssr

pnpm add https://pkg.pr.new/@vue/compiler-ssr@14460
npm i https://pkg.pr.new/@vue/compiler-ssr@14460
yarn add https://pkg.pr.new/@vue/compiler-ssr@14460.tgz

@vue/reactivity

pnpm add https://pkg.pr.new/@vue/reactivity@14460
npm i https://pkg.pr.new/@vue/reactivity@14460
yarn add https://pkg.pr.new/@vue/reactivity@14460.tgz

@vue/runtime-core

pnpm add https://pkg.pr.new/@vue/runtime-core@14460
npm i https://pkg.pr.new/@vue/runtime-core@14460
yarn add https://pkg.pr.new/@vue/runtime-core@14460.tgz

@vue/runtime-dom

pnpm add https://pkg.pr.new/@vue/runtime-dom@14460
npm i https://pkg.pr.new/@vue/runtime-dom@14460
yarn add https://pkg.pr.new/@vue/runtime-dom@14460.tgz

@vue/server-renderer

pnpm add https://pkg.pr.new/@vue/server-renderer@14460
npm i https://pkg.pr.new/@vue/server-renderer@14460
yarn add https://pkg.pr.new/@vue/server-renderer@14460.tgz

@vue/shared

pnpm add https://pkg.pr.new/@vue/shared@14460
npm i https://pkg.pr.new/@vue/shared@14460
yarn add https://pkg.pr.new/@vue/shared@14460.tgz

vue

pnpm add https://pkg.pr.new/vue@14460
npm i https://pkg.pr.new/vue@14460
yarn add https://pkg.pr.new/vue@14460.tgz

@vue/compat

pnpm add https://pkg.pr.new/@vue/compat@14460
npm i https://pkg.pr.new/@vue/compat@14460
yarn add https://pkg.pr.new/@vue/compat@14460.tgz

commit: bfb92e0

@renovate renovate Bot force-pushed the renovate/npm-minimatch-vulnerability branch 2 times, most recently from 7e1df10 to b45ff05 Compare February 24, 2026 03:46
@renovate renovate Bot force-pushed the renovate/npm-minimatch-vulnerability branch from b45ff05 to bfb92e0 Compare February 24, 2026 03:47
@edison1105 edison1105 merged commit 5b0227d into main Feb 24, 2026
14 of 15 checks passed
@edison1105 edison1105 deleted the renovate/npm-minimatch-vulnerability branch February 24, 2026 03:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant