dependabot[bot] opened a new pull request, #229: URL: https://github.com/apache/cordova-mobile-spec/pull/229
Bumps [picomatch](https://github.com/micromatch/picomatch) from 4.0.3 to 4.0.7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/micromatch/picomatch/releases">picomatch's releases</a>.</em></p> <blockquote> <h2>4.0.7</h2> <h2>What's Changed</h2> <ul> <li>fix: handle terminal globstars in parenthesized patterns by <a href="https://github.com/mrmlnc"><code>@mrmlnc</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/198">micromatch/picomatch#198</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micromatch/picomatch/compare/4.0.6...4.0.7">https://github.com/micromatch/picomatch/compare/4.0.6...4.0.7</a></p> <h2>4.0.6</h2> <h2>What's Changed</h2> <ul> <li>fix: scan full pattern when tokens are requested by <a href="https://github.com/mrmlnc"><code>@mrmlnc</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/197">micromatch/picomatch#197</a></li> <li>fix: return complete pattern parts from scan by <a href="https://github.com/mrmlnc"><code>@mrmlnc</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/199">micromatch/picomatch#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micromatch/picomatch/compare/4.0.5...4.0.6">https://github.com/micromatch/picomatch/compare/4.0.5...4.0.6</a></p> <h2>4.0.5</h2> <h2>What's Changed</h2> <ul> <li>fix: preserve all branches when rewriting risky repeated extglobs by <a href="https://github.com/MerlijnW70"><code>@MerlijnW70</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/182">micromatch/picomatch#182</a></li> <li>fix: honor the windows option when matching basenames by <a href="https://github.com/MerlijnW70"><code>@MerlijnW70</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/183">micromatch/picomatch#183</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/MerlijnW70"><code>@MerlijnW70</code></a> made their first contribution in <a href="https://redirect.github.com/micromatch/picomatch/pull/182">micromatch/picomatch#182</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micromatch/picomatch/compare/4.0.4...4.0.5">https://github.com/micromatch/picomatch/compare/4.0.4...4.0.5</a></p> <h2>4.0.4</h2> <p>This is a security release fixing several security relevant issues.</p> <h2>What's Changed</h2> <ul> <li>Fix for <a href="https://github.com/micromatch/picomatch/security/advisories/GHSA-c2c7-rcm5-vvqj">CVE-2026-33671</a></li> <li>Fix for <a href="https://github.com/micromatch/picomatch/security/advisories/GHSA-3v7f-55p6-f55p">CVE-2026-33672</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micromatch/picomatch/compare/4.0.3...4.0.4">https://github.com/micromatch/picomatch/compare/4.0.3...4.0.4</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md">picomatch's changelog</a>.</em></p> <blockquote> <h2>4.0.7 (2026-08-24)</h2> <h3>Fixed</h3> <ul> <li>Fixed terminal globstars in parenthesized patterns (<a href="https://redirect.github.com/micromatch/picomatch/issues/142">#142</a>, <a href="https://github.com/micromatch/picomatch/commit/e279bd7">e279bd7</a>).</li> </ul> <h2>4.0.6 (2026-08-24)</h2> <h3>Fixed</h3> <ul> <li><code>scan()</code> now scans the full pattern when tokens are requested, instead of merging the remaining path segments into the final token (<a href="https://redirect.github.com/micromatch/picomatch/issues/62">#62</a>, <a href="https://github.com/micromatch/picomatch/commit/5f5819d">5f5819d</a>).</li> <li><code>scan()</code> now returns complete pattern parts, including leading and trailing empty segments, and handles nested and escaped parentheses correctly (<a href="https://redirect.github.com/micromatch/picomatch/issues/58">#58</a>, <a href="https://github.com/micromatch/picomatch/commit/f201165">f201165</a>).</li> </ul> <h2>4.0.5 (2026-07-02)</h2> <h3>Fixed</h3> <ul> <li>Preserved every branch when safely rewriting repeated extglobs (<a href="https://redirect.github.com/micromatch/picomatch/pull/182">#182</a>, <a href="https://github.com/micromatch/picomatch/commit/6289307">6289307</a>).</li> <li>Honored the <code>windows</code> option when matching basenames (<a href="https://redirect.github.com/micromatch/picomatch/pull/183">#183</a>, <a href="https://github.com/micromatch/picomatch/commit/ab8bc4d">ab8bc4d</a>).</li> </ul> <h2>4.0.4 (2026-03-23)</h2> <h3>Security</h3> <ul> <li>Prevented regular expression denial of service (ReDoS) from crafted repeated or nested extglob quantifiers by safely rewriting or treating risky patterns as literals. The new <code>maxExtglobRecursion</code> option defaults to <code>0</code>; positive numeric values allow limited nesting, while <code>false</code> disables the safeguard (<a href="https://github.com/advisories/GHSA-c2c7-rcm5-vvqj">CVE-2026-33671</a>, <a href="https://github.com/micromatch/picomatch/commit/5eceecd">5eceecd</a>).</li> <li>Prevented inherited object properties from being interpreted as POSIX character classes (<a href="https://github.com/advisories/GHSA-3v7f-55p6-f55p">CVE-2026-33672</a>, <a href="https://github.com/micromatch/picomatch/commit/4516eb5">4516eb5</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/picomatch/commit/6bb40679c218cefba5d4e9662408c5fdf699a8bb"><code>6bb4067</code></a> 4.0.7</li> <li><a href="https://github.com/micromatch/picomatch/commit/fdfb1559e4ef761f95c3009c1fd7afceb8830f55"><code>fdfb155</code></a> Merge pull request <a href="https://redirect.github.com/micromatch/picomatch/issues/198">#198</a> from micromatch/issue-142</li> <li><a href="https://github.com/micromatch/picomatch/commit/38c6b7aefe50af10cfa978f362120d295d39cfa2"><code>38c6b7a</code></a> 4.0.6</li> <li><a href="https://github.com/micromatch/picomatch/commit/ada9d3fe9eb5a606bb4f6d87bc5cd7ac87fe63a4"><code>ada9d3f</code></a> Merge pull request <a href="https://redirect.github.com/micromatch/picomatch/issues/199">#199</a> from micromatch/issue-58</li> <li><a href="https://github.com/micromatch/picomatch/commit/9b74f6fc70ed828ea4ef7106833a31428b8d7329"><code>9b74f6f</code></a> Merge pull request <a href="https://redirect.github.com/micromatch/picomatch/issues/197">#197</a> from micromatch/issue-62</li> <li><a href="https://github.com/micromatch/picomatch/commit/f2011653e8eaa13bae6dffed7e7016ea8e123485"><code>f201165</code></a> fix: return complete pattern parts from scan</li> <li><a href="https://github.com/micromatch/picomatch/commit/e279bd7f34c4f8b5f9d0490cf7810a1f0c2de178"><code>e279bd7</code></a> fix: handle terminal globstars in parenthesized patterns</li> <li><a href="https://github.com/micromatch/picomatch/commit/5f5819dd4c0572c87df9a8011dffa65df5b6879f"><code>5f5819d</code></a> fix: scan full pattern when tokens are requested</li> <li><a href="https://github.com/micromatch/picomatch/commit/4f41a8edade7a5ab19832f7b40ecce46b288767f"><code>4f41a8e</code></a> 4.0.5</li> <li><a href="https://github.com/micromatch/picomatch/commit/02cfc1bf912c79ea75ef1fe7da2ce4efade39903"><code>02cfc1b</code></a> Update .verb.md and run verb to generate README documentation</li> <li>Additional commits viewable in <a href="https://github.com/micromatch/picomatch/compare/4.0.3...4.0.7">compare view</a></li> </ul> </details> <br /> [](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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/cordova-mobile-spec/network/alerts). </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
