dependabot[bot] opened a new pull request, #30589: URL: https://github.com/apache/superset/pull/30589
Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 6.3.0 and updates ancestor dependencies [path-to-regexp](https://github.com/pillarjs/path-to-regexp) and [fetch-mock](https://github.com/wheresrhys/fetch-mock/tree/HEAD/packages/fetch-mock). These dependencies need to be updated together. Updates `path-to-regexp` from 1.8.0 to 6.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pillarjs/path-to-regexp/releases">path-to-regexp's releases</a>.</em></p> <blockquote> <h2>Fix backtracking in 6.x</h2> <p><strong>Fixed</strong></p> <ul> <li>Add backtrack protection to 6.x (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/324">#324</a>) f1253b4</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.2...v6.3.0">https://github.com/pillarjs/path-to-regexp/compare/v6.2.2...v6.3.0</a></p> <h2>Updated README</h2> <p>No API changes. Documentation only release.</p> <p><strong>Changed</strong></p> <ul> <li>Fix readme example c7ec332</li> <li>Update shield URL e828000</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.1...v6.2.2">https://github.com/pillarjs/path-to-regexp/compare/v6.2.1...v6.2.2</a></p> <h2>Fix matching <code>:name*</code> parameter</h2> <p><strong>Fixed</strong></p> <ul> <li>Fix invalid matching of <code>:name*</code> parameter (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/261">#261</a>) 762bc6b</li> <li>Compare delimiter string over regexp 86baef8</li> </ul> <p><strong>Added</strong></p> <ul> <li>New example in documentation (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/256">#256</a>) ae9e576</li> <li>Update demo link (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/250">#250</a>) 77df638</li> <li>Update README encode example b39edd4</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.0...v6.2.1">https://github.com/pillarjs/path-to-regexp/compare/v6.2.0...v6.2.1</a></p> <h2>Named Capturing Groups</h2> <p><strong>Added</strong></p> <ul> <li>Support named capturing groups for RegExps (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/225">#225</a>)</li> </ul> <p><strong>Fixed</strong></p> <ul> <li>Update <code>strict</code> flag documentation (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/227">#227</a>)</li> <li>Ignore test files when bundling (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/220">#220</a>)</li> </ul> <h2>Use <code>/#?</code> as Default Delimiter</h2> <p><strong>Fixed</strong></p> <ul> <li>Use <code>/#?</code> as default delimiter to avoid matching on query or fragment parameters <ul> <li>If you are matching non-paths (e.g. hostnames), you can adjust <code>delimiter: '.'</code></li> </ul> </li> </ul> <h2>Custom Prefix and Suffix Groups</h2> <p>This release reverts the prefix behavior added in v3 back to the behavior seen in v2. For the most part, path matching is backward compatible with v2 with these enhancements:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pillarjs/path-to-regexp/blob/master/History.md">path-to-regexp's changelog</a>.</em></p> <blockquote> <h1>Moved to <a href="https://github.com/pillarjs/path-to-regexp/releases">GitHub Releases</a></h1> <h2>3.0.0 / 2019-01-13</h2> <ul> <li>Always use prefix character as delimiter token, allowing any character to be a delimiter (e.g. <code>/:att1-:att2-:att3-:att4-:att5</code>)</li> <li>Remove <code>partial</code> support, prefer escaping the prefix delimiter explicitly (e.g. <code>\\/(apple-)?icon-:res(\\d+).png</code>)</li> </ul> <h2>2.4.0 / 2018-08-26</h2> <ul> <li>Support <code>start</code> option to disable anchoring from beginning of the string</li> </ul> <h2>2.3.0 / 2018-08-20</h2> <ul> <li>Use <code>delimiter</code> when processing repeated matching groups (e.g. <code>foo/bar</code> has no prefix, but has a delimiter)</li> </ul> <h2>2.2.1 / 2018-04-24</h2> <ul> <li>Allow empty string with <code>end: false</code> to match both relative and absolute paths</li> </ul> <h2>2.2.0 / 2018-03-06</h2> <ul> <li>Pass <code>token</code> as second argument to <code>encode</code> option (e.g. <code>encode(value, token)</code>)</li> </ul> <h2>2.1.0 / 2017-10-20</h2> <ul> <li>Handle non-ending paths where the final character is a delimiter <ul> <li>E.g. <code>/foo/</code> before required either <code>/foo/</code> or <code>/foo//</code> to match in non-ending mode</li> </ul> </li> </ul> <h2>2.0.0 / 2017-08-23</h2> <ul> <li>New option! Ability to set <code>endsWith</code> to match paths like <code>/test?query=string</code> up to the query string</li> <li>New option! Set <code>delimiters</code> for specific characters to be treated as parameter prefixes (e.g. <code>/:test</code>)</li> <li>Remove <code>isarray</code> dependency</li> <li>Explicitly handle trailing delimiters instead of trimming them (e.g. <code>/test/</code> is now treated as <code>/test/</code> instead of <code>/test</code> when matching)</li> <li>Remove overloaded <code>keys</code> argument that accepted <code>options</code></li> <li>Remove <code>keys</code> list attached to the <code>RegExp</code> output</li> <li>Remove asterisk functionality (it's a real pain to properly encode)</li> <li>Change <code>tokensToFunction</code> (e.g. <code>compile</code>) to accept an <code>encode</code> function for pretty encoding (e.g. pass your own implementation)</li> </ul> <h2>1.7.0 / 2016-11-08</h2> <ul> <li>Allow a <code>delimiter</code> option to be passed in with <code>tokensToRegExp</code> which will be used for "non-ending" token match situations</li> </ul> <h2>1.6.0 / 2016-10-03</h2> <ul> <li>Populate <code>RegExp.keys</code> when using the <code>tokensToRegExp</code> method (making it consistent with the main export)</li> <li>Allow a <code>delimiter</code> option to be passed in with <code>parse</code></li> <li>Updated TypeScript definition with <code>Keys</code> and <code>Options</code> updated</li> </ul> <h2>1.5.3 / 2016-06-15</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/75a92c3d7c42159f459ab42f346899152906ea8c"><code>75a92c3</code></a> 6.3.0</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/f1253b47b347dcb909e3e80b0eb2649109e59894"><code>f1253b4</code></a> Add backtrack protection to 6.x (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/324">#324</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/28a5b27bb9e7f09dddb573ac50923f2337ea0dbf"><code>28a5b27</code></a> 6.2.2</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/270876d30b77c83b16c7bb01b578ae9e278c3faa"><code>270876d</code></a> Test on min node 16</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/d5a42b69ae5fc128f85783714bbf08408d1560ee"><code>d5a42b6</code></a> Run tests on ubuntu</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/1c265a158c8ffc8c4fb490fc1a9a5020b147d1f2"><code>1c265a1</code></a> Upgrade dev deps, prettier format</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/c7ec332e87d8560673884d5629e1cb23cb03cb87"><code>c7ec332</code></a> Fix readme example</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/25da491127d5dfd13eb5ad839bd3559622b77c56"><code>25da491</code></a> Bump node v14 for tests</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/980d1db9b82fc85019c30da6e689df3beb27e12b"><code>980d1db</code></a> Add v8 coverage</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/e8280006c80604baaf18e8572a983d2a265a6e83"><code>e828000</code></a> Update shield URL</li> <li>Additional commits viewable in <a href="https://github.com/pillarjs/path-to-regexp/compare/v1.8.0...v6.3.0">compare view</a></li> </ul> </details> <br /> Updates `path-to-regexp` from 6.2.2 to 6.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pillarjs/path-to-regexp/releases">path-to-regexp's releases</a>.</em></p> <blockquote> <h2>Fix backtracking in 6.x</h2> <p><strong>Fixed</strong></p> <ul> <li>Add backtrack protection to 6.x (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/324">#324</a>) f1253b4</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.2...v6.3.0">https://github.com/pillarjs/path-to-regexp/compare/v6.2.2...v6.3.0</a></p> <h2>Updated README</h2> <p>No API changes. Documentation only release.</p> <p><strong>Changed</strong></p> <ul> <li>Fix readme example c7ec332</li> <li>Update shield URL e828000</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.1...v6.2.2">https://github.com/pillarjs/path-to-regexp/compare/v6.2.1...v6.2.2</a></p> <h2>Fix matching <code>:name*</code> parameter</h2> <p><strong>Fixed</strong></p> <ul> <li>Fix invalid matching of <code>:name*</code> parameter (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/261">#261</a>) 762bc6b</li> <li>Compare delimiter string over regexp 86baef8</li> </ul> <p><strong>Added</strong></p> <ul> <li>New example in documentation (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/256">#256</a>) ae9e576</li> <li>Update demo link (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/250">#250</a>) 77df638</li> <li>Update README encode example b39edd4</li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v6.2.0...v6.2.1">https://github.com/pillarjs/path-to-regexp/compare/v6.2.0...v6.2.1</a></p> <h2>Named Capturing Groups</h2> <p><strong>Added</strong></p> <ul> <li>Support named capturing groups for RegExps (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/225">#225</a>)</li> </ul> <p><strong>Fixed</strong></p> <ul> <li>Update <code>strict</code> flag documentation (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/227">#227</a>)</li> <li>Ignore test files when bundling (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/220">#220</a>)</li> </ul> <h2>Use <code>/#?</code> as Default Delimiter</h2> <p><strong>Fixed</strong></p> <ul> <li>Use <code>/#?</code> as default delimiter to avoid matching on query or fragment parameters <ul> <li>If you are matching non-paths (e.g. hostnames), you can adjust <code>delimiter: '.'</code></li> </ul> </li> </ul> <h2>Custom Prefix and Suffix Groups</h2> <p>This release reverts the prefix behavior added in v3 back to the behavior seen in v2. For the most part, path matching is backward compatible with v2 with these enhancements:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pillarjs/path-to-regexp/blob/master/History.md">path-to-regexp's changelog</a>.</em></p> <blockquote> <h1>Moved to <a href="https://github.com/pillarjs/path-to-regexp/releases">GitHub Releases</a></h1> <h2>3.0.0 / 2019-01-13</h2> <ul> <li>Always use prefix character as delimiter token, allowing any character to be a delimiter (e.g. <code>/:att1-:att2-:att3-:att4-:att5</code>)</li> <li>Remove <code>partial</code> support, prefer escaping the prefix delimiter explicitly (e.g. <code>\\/(apple-)?icon-:res(\\d+).png</code>)</li> </ul> <h2>2.4.0 / 2018-08-26</h2> <ul> <li>Support <code>start</code> option to disable anchoring from beginning of the string</li> </ul> <h2>2.3.0 / 2018-08-20</h2> <ul> <li>Use <code>delimiter</code> when processing repeated matching groups (e.g. <code>foo/bar</code> has no prefix, but has a delimiter)</li> </ul> <h2>2.2.1 / 2018-04-24</h2> <ul> <li>Allow empty string with <code>end: false</code> to match both relative and absolute paths</li> </ul> <h2>2.2.0 / 2018-03-06</h2> <ul> <li>Pass <code>token</code> as second argument to <code>encode</code> option (e.g. <code>encode(value, token)</code>)</li> </ul> <h2>2.1.0 / 2017-10-20</h2> <ul> <li>Handle non-ending paths where the final character is a delimiter <ul> <li>E.g. <code>/foo/</code> before required either <code>/foo/</code> or <code>/foo//</code> to match in non-ending mode</li> </ul> </li> </ul> <h2>2.0.0 / 2017-08-23</h2> <ul> <li>New option! Ability to set <code>endsWith</code> to match paths like <code>/test?query=string</code> up to the query string</li> <li>New option! Set <code>delimiters</code> for specific characters to be treated as parameter prefixes (e.g. <code>/:test</code>)</li> <li>Remove <code>isarray</code> dependency</li> <li>Explicitly handle trailing delimiters instead of trimming them (e.g. <code>/test/</code> is now treated as <code>/test/</code> instead of <code>/test</code> when matching)</li> <li>Remove overloaded <code>keys</code> argument that accepted <code>options</code></li> <li>Remove <code>keys</code> list attached to the <code>RegExp</code> output</li> <li>Remove asterisk functionality (it's a real pain to properly encode)</li> <li>Change <code>tokensToFunction</code> (e.g. <code>compile</code>) to accept an <code>encode</code> function for pretty encoding (e.g. pass your own implementation)</li> </ul> <h2>1.7.0 / 2016-11-08</h2> <ul> <li>Allow a <code>delimiter</code> option to be passed in with <code>tokensToRegExp</code> which will be used for "non-ending" token match situations</li> </ul> <h2>1.6.0 / 2016-10-03</h2> <ul> <li>Populate <code>RegExp.keys</code> when using the <code>tokensToRegExp</code> method (making it consistent with the main export)</li> <li>Allow a <code>delimiter</code> option to be passed in with <code>parse</code></li> <li>Updated TypeScript definition with <code>Keys</code> and <code>Options</code> updated</li> </ul> <h2>1.5.3 / 2016-06-15</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/75a92c3d7c42159f459ab42f346899152906ea8c"><code>75a92c3</code></a> 6.3.0</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/f1253b47b347dcb909e3e80b0eb2649109e59894"><code>f1253b4</code></a> Add backtrack protection to 6.x (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/324">#324</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/28a5b27bb9e7f09dddb573ac50923f2337ea0dbf"><code>28a5b27</code></a> 6.2.2</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/270876d30b77c83b16c7bb01b578ae9e278c3faa"><code>270876d</code></a> Test on min node 16</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/d5a42b69ae5fc128f85783714bbf08408d1560ee"><code>d5a42b6</code></a> Run tests on ubuntu</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/1c265a158c8ffc8c4fb490fc1a9a5020b147d1f2"><code>1c265a1</code></a> Upgrade dev deps, prettier format</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/c7ec332e87d8560673884d5629e1cb23cb03cb87"><code>c7ec332</code></a> Fix readme example</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/25da491127d5dfd13eb5ad839bd3559622b77c56"><code>25da491</code></a> Bump node v14 for tests</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/980d1db9b82fc85019c30da6e689df3beb27e12b"><code>980d1db</code></a> Add v8 coverage</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/e8280006c80604baaf18e8572a983d2a265a6e83"><code>e828000</code></a> Update shield URL</li> <li>Additional commits viewable in <a href="https://github.com/pillarjs/path-to-regexp/compare/v1.8.0...v6.3.0">compare view</a></li> </ul> </details> <br /> Updates `fetch-mock` from 7.7.3 to 11.1.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/wheresrhys/fetch-mock/releases">fetch-mock's releases</a>.</em></p> <blockquote> <h2>fetch-mock: v11.1.5</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.4...fetch-mock-v11.1.5">11.1.5</a> (2024-09-25)</h2> <h3>Bug Fixes</h3> <ul> <li>change export order so default is last (<a href="https://github.com/wheresrhys/fetch-mock/commit/bc9c41d04609c40e609e672254df5ff1ddf0cad9">bc9c41d</a>)</li> </ul> <h2>fetch-mock: v11.1.4</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.3...fetch-mock-v11.1.4">11.1.4</a> (2024-09-19)</h2> <h3>Documentation Changes</h3> <ul> <li>another occurrence of the cheatsheet ref (<a href="https://github.com/wheresrhys/fetch-mock/commit/875e4f6bd7b50229b6f83e14075c1a3fcd6210a4">875e4f6</a>)</li> <li>fix link to cheatsheet (<a href="https://github.com/wheresrhys/fetch-mock/commit/33e75b1cd2391c9d4c1c9770c3be4fb771f7f726">33e75b1</a>)</li> </ul> <h2>fetch-mock: v11.1.3</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.2...fetch-mock-v11.1.3">11.1.3</a> (2024-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>add missing metadata to package.json files (<a href="https://github.com/wheresrhys/fetch-mock/commit/4ab78b9429a376230da2ce57bd320031c53f06ef">4ab78b9</a>)</li> </ul> <h2>fetch-mock: v11.1.2</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.1...fetch-mock-v11.1.2">11.1.2</a> (2024-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>lastOptions returns RequestInit not MockOptions (<a href="https://github.com/wheresrhys/fetch-mock/commit/591926a7c524650ccb82b16611fc8882c4a8a2b6">591926a</a>)</li> </ul> <h2>fetch-mock: v11.1.1</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.0...fetch-mock-v11.1.1">11.1.1</a> (2024-08-13)</h2> <h3>Bug Fixes</h3> <ul> <li>roll back to glob-to-regexp (<a href="https://github.com/wheresrhys/fetch-mock/commit/b11412452ed376ab2e20e03a51f0dc1de1dcdb90">b114124</a>)</li> </ul> <h2>fetch-mock: v11.1.0</h2> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.0.2...fetch-mock-v11.1.0">11.1.0</a> (2024-08-10)</h2> <h3>Features</h3> <ul> <li>remove debug mode from fetch-mock (<a href="https://github.com/wheresrhys/fetch-mock/commit/89890b6ec39077b769617f02bdf5de7b971fc52c">89890b6</a>)</li> </ul> <h2>fetch-mock: v11.0.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/wheresrhys/fetch-mock/blob/main/packages/fetch-mock/CHANGELOG.md">fetch-mock's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.4...fetch-mock-v11.1.5">11.1.5</a> (2024-09-25)</h2> <h3>Bug Fixes</h3> <ul> <li>change export order so default is last (<a href="https://github.com/wheresrhys/fetch-mock/commit/bc9c41d04609c40e609e672254df5ff1ddf0cad9">bc9c41d</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.3...fetch-mock-v11.1.4">11.1.4</a> (2024-09-19)</h2> <h3>Documentation Changes</h3> <ul> <li>another occurrence of the cheatsheet ref (<a href="https://github.com/wheresrhys/fetch-mock/commit/875e4f6bd7b50229b6f83e14075c1a3fcd6210a4">875e4f6</a>)</li> <li>fix link to cheatsheet (<a href="https://github.com/wheresrhys/fetch-mock/commit/33e75b1cd2391c9d4c1c9770c3be4fb771f7f726">33e75b1</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.2...fetch-mock-v11.1.3">11.1.3</a> (2024-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>add missing metadata to package.json files (<a href="https://github.com/wheresrhys/fetch-mock/commit/4ab78b9429a376230da2ce57bd320031c53f06ef">4ab78b9</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.1...fetch-mock-v11.1.2">11.1.2</a> (2024-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>lastOptions returns RequestInit not MockOptions (<a href="https://github.com/wheresrhys/fetch-mock/commit/591926a7c524650ccb82b16611fc8882c4a8a2b6">591926a</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.1.0...fetch-mock-v11.1.1">11.1.1</a> (2024-08-13)</h2> <h3>Bug Fixes</h3> <ul> <li>roll back to glob-to-regexp (<a href="https://github.com/wheresrhys/fetch-mock/commit/b11412452ed376ab2e20e03a51f0dc1de1dcdb90">b114124</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.0.2...fetch-mock-v11.1.0">11.1.0</a> (2024-08-10)</h2> <h3>Features</h3> <ul> <li>remove debug mode from fetch-mock (<a href="https://github.com/wheresrhys/fetch-mock/commit/89890b6ec39077b769617f02bdf5de7b971fc52c">89890b6</a>)</li> </ul> <h2><a href="https://github.com/wheresrhys/fetch-mock/compare/fetch-mock-v11.0.1...fetch-mock-v11.0.2">11.0.2</a> (2024-08-08)</h2> <h3>Bug Fixes</h3> <ul> <li>add license file to each package (<a href="https://github.com/wheresrhys/fetch-mock/commit/9b36f892ed19cd381b1f8ebbd94a28773637b9ec">9b36f89</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/95036e1b4a14541a5eb62e0108523cc2411038a4"><code>95036e1</code></a> chore: release main</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/bc9c41d04609c40e609e672254df5ff1ddf0cad9"><code>bc9c41d</code></a> fix: change export order so default is last</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/9f85089781e16bfa3f1e4cfa6d1c7894c2353f60"><code>9f85089</code></a> chore: release main</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/875e4f6bd7b50229b6f83e14075c1a3fcd6210a4"><code>875e4f6</code></a> docs: another occurrence of the cheatsheet ref</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/33e75b1cd2391c9d4c1c9770c3be4fb771f7f726"><code>33e75b1</code></a> docs: fix link to cheatsheet</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/cab1bd7c7ff1ae3a2cc26a0f6756473e7181f5b7"><code>cab1bd7</code></a> Merge branch 'main' into release-please--branches--main</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/7510b21e811ebb74f8c43c97eb4433e1196fe75f"><code>7510b21</code></a> test: fix types test for fetch-mock package</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/66e4ffc5ff6f5ff2bba992c2dceb8150b282a5cf"><code>66e4ffc</code></a> chore: order package.json properties more sensibly</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/27817adb2b538a600f380583010d30fa95b626ae"><code>27817ad</code></a> chore: release main</li> <li><a href="https://github.com/wheresrhys/fetch-mock/commit/ff245e3c6a340b646e7efd11a119a8c2e70f1c77"><code>ff245e3</code></a> chore: run prettier over all json files</li> <li>Additional commits viewable in <a href="https://github.com/wheresrhys/fetch-mock/commits/fetch-mock-v11.1.5/packages/fetch-mock">compare view</a></li> </ul> </details> <br /> 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/superset/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]
