deps: bump minimatch from 9.0.5 to 10.0.1 (#1186)

Bumps [minimatch](https://github.com/isaacs/minimatch) from 9.0.5 to 10.0.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/isaacs/minimatch/blob/main/changelog.md">minimatch's changelog</a>.</em></p> <blockquote> <h1>change log</h1> <h2>10.0</h2> <ul> <li>Require node 20 or 22 and higher</li> </ul> <h2>9.0</h2> <ul> <li>No default export, only named exports.</li> </ul> <h2>8.0</h2> <ul> <li>Recursive descent parser for extglob, allowing correct support for arbitrarily nested extglob expressions</li> <li>Bump required Node.js version</li> </ul> <h2>7.4</h2> <ul> <li>Add <code>escape()</code> method</li> <li>Add <code>unescape()</code> method</li> <li>Add <code>Minimatch.hasMagic()</code> method</li> </ul> <h2>7.3</h2> <ul> <li>Add support for posix character classes in a unicode-aware way.</li> </ul> <h2>7.2</h2> <ul> <li>Add <code>windowsNoMagicRoot</code> option</li> </ul> <h2>7.1</h2> <ul> <li>Add <code>optimizationLevel</code> configuration option, and revert the default back to the 6.2 style minimal optimizations, making the advanced transforms introduced in 7.0 opt-in. Also, process provided file paths in the same way in optimizationLevel:2 mode, so <em>most</em> things that matched with optimizationLevel 1 or 0 <em>should</em> match with level 2 as well. However, level 1 is the default, out of an abundance of caution.</li> </ul> <h2>7.0</h2> <ul> <li>Preprocess patterns to simplify complicated patterns and reduce out <code>..</code> pattern portions where possible. Note that this means a pattern like <code>a/b/../*</code> will be equivalent to <code>a/*</code>, and will <em>not</em> match the string <code>a/b/../c</code>. If this causes problems, it can be addressed in a patch release by resolving <code>..</code> portions in the test string.</li> </ul> <h2>6.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/isaacs/minimatch/commit/0569cd3373408f9d701d3aab187b3f43a24a0db7"><code>0569cd3</code></a> 10.0.1</li> <li><a href="https://github.com/isaacs/minimatch/commit/17d31c75ee4a6c4e516b6610647274285dc493c7"><code>17d31c7</code></a> rollback to brace-expansion 2, for cjs support</li> <li><a href="https://github.com/isaacs/minimatch/commit/346685ced5203464bb10fd3d4dfa6964f6102ede"><code>346685c</code></a> 10.0.0</li> <li><a href="https://github.com/isaacs/minimatch/commit/632e0da294b644ce2b537df4d64d4316fd84e0f1"><code>632e0da</code></a> modernize, drop old node versions</li> <li>See full diff in <a href="https://github.com/isaacs/minimatch/compare/v9.0.5...v10.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=minimatch&package-manager=npm_and_yarn&previous-version=9.0.5&new-version=10.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

dependabot[bot] committed Jul 17, 2024 at 07:26 UTC 69c9dd5afda060cb2bd0679bc63f7201236574c2
2 files changed +108 -6
cli/package.json
+1 -1
@@ -21,7 +21,7 @@
21 "@octokit/rest": "^21.0.0",
22 "@prettier/sync": "^0.5.0",
23 "front-matter": "^4.0.2",
24 - "minimatch": "^9.0.3",
24 + "minimatch": "^10.0.1",
25 "minipass": "^7.0.4",
26 "pacote": "^18.0.3",
27 "proc-log": "^4.2.0",
package-lock.json
+107 -5
@@ -81,7 +81,7 @@
81 "@octokit/rest": "^21.0.0",
82 "@prettier/sync": "^0.5.0",
83 "front-matter": "^4.0.2",
84 - "minimatch": "^9.0.3",
84 + "minimatch": "^10.0.1",
85 "minipass": "^7.0.4",
86 "pacote": "^18.0.3",
87 "proc-log": "^4.2.0",
@@ -5115,6 +5115,21 @@
5115 "node": "^16.14.0 || >=18.0.0"
5116 }
5117 },
5118 + "node_modules/@npmcli/arborist/node_modules/minimatch": {
5119 + "version": "9.0.5",
5120 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
5121 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
5122 + "dev": true,
5123 + "dependencies": {
5124 + "brace-expansion": "^2.0.1"
5125 + },
5126 + "engines": {
5127 + "node": ">=16 || 14 >=14.17"
5128 + },
5129 + "funding": {
5130 + "url": "https://github.com/sponsors/isaacs"
5131 + }
5132 + },
5133 "node_modules/@npmcli/config": {
5134 "version": "8.3.3",
5135 "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-8.3.3.tgz",
@@ -5251,6 +5266,21 @@
5266 "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
5267 }
5268 },
5269 + "node_modules/@npmcli/map-workspaces/node_modules/minimatch": {
5270 + "version": "9.0.5",
5271 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
5272 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
5273 + "dev": true,
5274 + "dependencies": {
5275 + "brace-expansion": "^2.0.1"
5276 + },
5277 + "engines": {
5278 + "node": ">=16 || 14 >=14.17"
5279 + },
5280 + "funding": {
5281 + "url": "https://github.com/sponsors/isaacs"
5282 + }
5283 + },
5284 "node_modules/@npmcli/metavuln-calculator": {
5285 "version": "7.1.1",
5286 "resolved": "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-7.1.1.tgz",
@@ -5611,6 +5641,21 @@
5641 "node": ">=0.10.0"
5642 }
5643 },
5644 + "node_modules/@npmcli/template-oss/node_modules/minimatch": {
5645 + "version": "9.0.5",
5646 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
5647 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
5648 + "dev": true,
5649 + "dependencies": {
5650 + "brace-expansion": "^2.0.1"
5651 + },
5652 + "engines": {
5653 + "node": ">=16 || 14 >=14.17"
5654 + },
5655 + "funding": {
5656 + "url": "https://github.com/sponsors/isaacs"
5657 + }
5658 + },
5659 "node_modules/@octokit/auth-token": {
5660 "version": "5.1.1",
5661 "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.1.tgz",
@@ -7819,6 +7864,20 @@
7864 "node": "^16.14.0 || >=18.0.0"
7865 }
7866 },
7867 + "node_modules/@tufjs/models/node_modules/minimatch": {
7868 + "version": "9.0.5",
7869 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
7870 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
7871 + "dependencies": {
7872 + "brace-expansion": "^2.0.1"
7873 + },
7874 + "engines": {
7875 + "node": ">=16 || 14 >=14.17"
7876 + },
7877 + "funding": {
7878 + "url": "https://github.com/sponsors/isaacs"
7879 + }
7880 + },
7881 "node_modules/@turist/fetch": {
7882 "version": "7.2.0",
7883 "resolved": "https://registry.npmjs.org/@turist/fetch/-/fetch-7.2.0.tgz",
@@ -14142,6 +14201,21 @@
14201 "url": "https://opencollective.com/typescript-eslint"
14202 }
14203 },
14204 + "node_modules/eslint-plugin-github/node_modules/minimatch": {
14205 + "version": "9.0.5",
14206 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
14207 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
14208 + "dev": true,
14209 + "dependencies": {
14210 + "brace-expansion": "^2.0.1"
14211 + },
14212 + "engines": {
14213 + "node": ">=16 || 14 >=14.17"
14214 + },
14215 + "funding": {
14216 + "url": "https://github.com/sponsors/isaacs"
14217 + }
14218 + },
14219 "node_modules/eslint-plugin-i18n-text": {
14220 "version": "1.0.1",
14221 "resolved": "https://registry.npmjs.org/eslint-plugin-i18n-text/-/eslint-plugin-i18n-text-1.0.1.tgz",
@@ -18510,6 +18584,20 @@
18584 "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
18585 "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
18586 },
18587 + "node_modules/glob/node_modules/minimatch": {
18588 + "version": "9.0.5",
18589 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
18590 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
18591 + "dependencies": {
18592 + "brace-expansion": "^2.0.1"
18593 + },
18594 + "engines": {
18595 + "node": ">=16 || 14 >=14.17"
18596 + },
18597 + "funding": {
18598 + "url": "https://github.com/sponsors/isaacs"
18599 + }
18600 + },
18601 "node_modules/global-directory": {
18602 "version": "4.0.1",
18603 "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz",
@@ -19413,6 +19501,20 @@
19501 "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
19502 }
19503 },
19504 + "node_modules/ignore-walk/node_modules/minimatch": {
19505 + "version": "9.0.5",
19506 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
19507 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
19508 + "dependencies": {
19509 + "brace-expansion": "^2.0.1"
19510 + },
19511 + "engines": {
19512 + "node": ">=16 || 14 >=14.17"
19513 + },
19514 + "funding": {
19515 + "url": "https://github.com/sponsors/isaacs"
19516 + }
19517 + },
19518 "node_modules/immer": {
19519 "version": "9.0.21",
19520 "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
@@ -28260,14 +28362,14 @@
28362 }
28363 },
28364 "node_modules/minimatch": {
28263 - "version": "9.0.5",
28264 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
28265 - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
28365 + "version": "10.0.1",
28366 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz",
28367 + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
28368 "dependencies": {
28369 "brace-expansion": "^2.0.1"
28370 },
28371 "engines": {
28270 - "node": ">=16 || 14 >=14.17"
28372 + "node": "20 || >=22"
28373 },
28374 "funding": {
28375 "url": "https://github.com/sponsors/isaacs"