Skip to content

Commit 08e168e

Browse files
chore(deps-dev): bump the minor-development-deps group with 6 updates (#304)
Bumps the minor-development-deps group with 6 updates: | Package | From | To | | --- | --- | --- | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.2` | `2.3.8` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.9.2` | `24.10.1` | | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.6` | `4.0.14` | | [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` | | [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.6` | `4.0.14` | Updates `@biomejs/biome` from 2.3.2 to 2.3.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases"><code>@​biomejs/biome</code>'s releases</a>.</em></p> <blockquote> <h2>Biome CLI v2.3.8</h2> <h2>2.3.8</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8188">#8188</a> <a href="https://github.com/biomejs/biome/commit/4ca088c7648f37724dad07ae4e6f805e7a51ac79"><code>4ca088c</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7390">#7390</a>, where Biome couldn't apply the correct configuration passed via <code>--config-path</code>.</p> <p>If you have multiple <strong>root</strong> configuration files, running any command with <code>--config-path</code> will now apply the chosen configuration file.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8171">#8171</a> <a href="https://github.com/biomejs/biome/commit/79adaea7d5bc382bd0a4cdcc34e59a8cb3fb6a55"><code>79adaea</code></a> Thanks <a href="https://github.com/dibashthapa"><code>@​dibashthapa</code></a>! - Added the new rule <a href="https://biomejs.dev/linter/rules/no-leaked-render"><code>noLeakedRender</code></a>. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.</p> <p>For example, the following code triggers the rule because the component would render <code>0</code>:</p> <pre lang="jsx"><code>const Component = () =&gt; { const count = 0; return &lt;div&gt;{count &amp;&amp; &lt;span&gt;Count: {count}&lt;/span&gt;}&lt;/div&gt;; }; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8116">#8116</a> <a href="https://github.com/biomejs/biome/commit/b53791835ea98edf8fe4b4288240bd38abb19f2f"><code>b537918</code></a> Thanks <a href="https://github.com/Netail"><code>@​Netail</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/no-duplicated-spread-props/"><code>noDuplicatedSpreadProps</code></a>. Disallow JSX prop spreading the same identifier multiple times.</p> <p><strong>Invalid:</strong></p> <pre lang="jsx"><code>&lt;div {...props} something=&quot;else&quot; {...props} /&gt; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8256">#8256</a> <a href="https://github.com/biomejs/biome/commit/f1e4696bf8f018fc23656cd7b96fda32ca46677a"><code>f1e4696</code></a> Thanks <a href="https://github.com/cormacrelf"><code>@​cormacrelf</code></a>! - Fixed a bug where logs were discarded (the kind from <code>--log-level=info</code> etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8226">#8226</a> <a href="https://github.com/biomejs/biome/commit/3f19b520c65f4fc53e61ca7cef341deadec5f518"><code>3f19b52</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8222">#8222</a>: The HTML parser, with Vue directives enabled, can now parse <code>v-slot</code> shorthand syntax, e.g. <code>\&lt;template #foo&gt;</code>.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8007">#8007</a> <a href="https://github.com/biomejs/biome/commit/182ecdc2736a54073fe79b4d3e1eaf793b73afa6"><code>182ecdc</code></a> Thanks <a href="https://github.com/brandonmcconnell"><code>@​brandonmcconnell</code></a>! - Added support for dollar-sign-prefixed filenames in the <a href="https://biomejs.dev/linter/rules/use-filenaming-convention/"><code>useFilenamingConvention</code></a> rule.</p> <p>Biome now allows filenames starting with the dollar-sign (e.g. <code>$postId.tsx</code>) by default to support naming conventions used by frameworks such as <a href="https://tanstack.com/start/latest/docs/framework/react/guide/routing#file-based-routing">TanStack Start</a> for file-based-routing.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8218">#8218</a> <a href="https://github.com/biomejs/biome/commit/91484d1d53096a554f288c81105f71c7ea8df945"><code>91484d1</code></a> Thanks <a href="https://github.com/hirokiokada77"><code>@​hirokiokada77</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/no-multi-str"><code>noMultiStr</code></a> rule, which disallows creating multiline strings by escaping newlines.</p> <p><strong>Invalid:</strong></p> <pre lang="js"><code>const foo = &quot;Line 1\n\ Line 2&quot;; </code></pre> <p><strong>Valid:</strong></p> <pre lang="js"><code></code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md"><code>@​biomejs/biome</code>'s changelog</a>.</em></p> <blockquote> <h2>2.3.8</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8188">#8188</a> <a href="https://github.com/biomejs/biome/commit/4ca088c7648f37724dad07ae4e6f805e7a51ac79"><code>4ca088c</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7390">#7390</a>, where Biome couldn't apply the correct configuration passed via <code>--config-path</code>.</p> <p>If you have multiple <strong>root</strong> configuration files, running any command with <code>--config-path</code> will now apply the chosen configuration file.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8171">#8171</a> <a href="https://github.com/biomejs/biome/commit/79adaea7d5bc382bd0a4cdcc34e59a8cb3fb6a55"><code>79adaea</code></a> Thanks <a href="https://github.com/dibashthapa"><code>@​dibashthapa</code></a>! - Added the new rule <a href="https://biomejs.dev/linter/rules/no-leaked-render"><code>noLeakedRender</code></a>. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.</p> <p>For example, the following code triggers the rule because the component would render <code>0</code>:</p> <pre lang="jsx"><code>const Component = () =&gt; { const count = 0; return &lt;div&gt;{count &amp;&amp; &lt;span&gt;Count: {count}&lt;/span&gt;}&lt;/div&gt;; }; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8116">#8116</a> <a href="https://github.com/biomejs/biome/commit/b53791835ea98edf8fe4b4288240bd38abb19f2f"><code>b537918</code></a> Thanks <a href="https://github.com/Netail"><code>@​Netail</code></a>! - Added the nursery rule <a href="https://biomejs.dev/linter/rules/no-duplicated-spread-props/"><code>noDuplicatedSpreadProps</code></a>. Disallow JSX prop spreading the same identifier multiple times.</p> <p><strong>Invalid:</strong></p> <pre lang="jsx"><code>&lt;div {...props} something=&quot;else&quot; {...props} /&gt; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8256">#8256</a> <a href="https://github.com/biomejs/biome/commit/f1e4696bf8f018fc23656cd7b96fda32ca46677a"><code>f1e4696</code></a> Thanks <a href="https://github.com/cormacrelf"><code>@​cormacrelf</code></a>! - Fixed a bug where logs were discarded (the kind from <code>--log-level=info</code> etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8226">#8226</a> <a href="https://github.com/biomejs/biome/commit/3f19b520c65f4fc53e61ca7cef341deadec5f518"><code>3f19b52</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8222">#8222</a>: The HTML parser, with Vue directives enabled, can now parse <code>v-slot</code> shorthand syntax, e.g. <code>\&lt;template #foo&gt;</code>.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8007">#8007</a> <a href="https://github.com/biomejs/biome/commit/182ecdc2736a54073fe79b4d3e1eaf793b73afa6"><code>182ecdc</code></a> Thanks <a href="https://github.com/brandonmcconnell"><code>@​brandonmcconnell</code></a>! - Added support for dollar-sign-prefixed filenames in the <a href="https://biomejs.dev/linter/rules/use-filenaming-convention/"><code>useFilenamingConvention</code></a> rule.</p> <p>Biome now allows filenames starting with the dollar-sign (e.g. <code>$postId.tsx</code>) by default to support naming conventions used by frameworks such as <a href="https://tanstack.com/start/latest/docs/framework/react/guide/routing#file-based-routing">TanStack Start</a> for file-based-routing.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8218">#8218</a> <a href="https://github.com/biomejs/biome/commit/91484d1d53096a554f288c81105f71c7ea8df945"><code>91484d1</code></a> Thanks <a href="https://github.com/hirokiokada77"><code>@​hirokiokada77</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/no-multi-str"><code>noMultiStr</code></a> rule, which disallows creating multiline strings by escaping newlines.</p> <p><strong>Invalid:</strong></p> <pre lang="js"><code>const foo = &quot;Line 1\n\ Line 2&quot;; </code></pre> <p><strong>Valid:</strong></p> <pre lang="js"><code>const foo = &quot;Line 1\nLine 2&quot;; const bar = `Line 1 </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/biomejs/biome/commit/0a6b6fb1fb5d5ef24fde12f64f80e337110adb5d"><code>0a6b6fb</code></a> chore: restore version and yaml how they were</li> <li><a href="https://github.com/biomejs/biome/commit/5d15cd5c70731ff7b0a4950f153401163caa956e"><code>5d15cd5</code></a> chore: revert version</li> <li><a href="https://github.com/biomejs/biome/commit/59fa1468ed34d9e164a2b0ede937df9e0346658b"><code>59fa146</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8263">#8263</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/f7e836fa2b5859c712bb891dc7fbb2fcf28e19a3"><code>f7e836f</code></a> feat(biome_js_analyze): implement <code>noProto</code> rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8276">#8276</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/b53791835ea98edf8fe4b4288240bd38abb19f2f"><code>b537918</code></a> feat(js_biome_analyze): implement noDuplicatedSpreadProps (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8116">#8116</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/91484d1d53096a554f288c81105f71c7ea8df945"><code>91484d1</code></a> feat(biome_js_analyze): implement <code>noMultiStr</code> rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8218">#8218</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/68c052efa29892470d4590bffefb20448685f2d9"><code>68c052e</code></a> feat(biome_js_analyze): implement <code>noEqualsToNull</code> rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8214">#8214</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/79adaea7d5bc382bd0a4cdcc34e59a8cb3fb6a55"><code>79adaea</code></a> feat(lint): added new rule <code>no-leaked-render</code> from eslint-react (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8171">#8171</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/cd2edd75d9532171c599073fc91de5a15578e84d"><code>cd2edd7</code></a> feat(js_analyze): implement noTernary (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8201">#8201</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/8e97b89d2c3b28be6f051aff6a504469ada7196b"><code>8e97b89</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/8161">#8161</a>)</li> <li>Additional commits viewable in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.8/packages/@biomejs/biome">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​biomejs/biome</code> since your current version.</p> </details> <br /> Updates `@types/node` from 24.9.2 to 24.10.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `@vitest/coverage-v8` from 4.0.6 to 4.0.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s releases</a>.</em></p> <blockquote> <h2>v4.0.14</h2> <h3>   🚀 Experimental Features</h3> <ul> <li><strong>browser</strong>: Expose <code>utils.configurePrettyDOM</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9103">vitest-dev/vitest#9103</a> <a href="https://github.com/vitest-dev/vitest/commit/2cc34e0d4"><!-- raw HTML omitted -->(2cc34)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Add full names to tasks  -  by <a href="https://github.com/macarie"><code>@​macarie</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9087">vitest-dev/vitest#9087</a> <a href="https://github.com/vitest-dev/vitest/commit/821aa2002"><!-- raw HTML omitted -->(821aa)<!-- raw HTML omitted --></a></li> <li><strong>ui</strong>: Add tabbed failure view for <code>toMatchScreenshot</code> with comparison slider  -  by <a href="https://github.com/macarie"><code>@​macarie</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8813">vitest-dev/vitest#8813</a> <a href="https://github.com/vitest-dev/vitest/commit/c37c2eb0b"><!-- raw HTML omitted -->(c37c2)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li>Externalize before caching  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9077">vitest-dev/vitest#9077</a> <a href="https://github.com/vitest-dev/vitest/commit/e1b2e086a"><!-- raw HTML omitted -->(e1b2e)<!-- raw HTML omitted --></a></li> <li>Collect the duration of external imports  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9097">vitest-dev/vitest#9097</a> <a href="https://github.com/vitest-dev/vitest/commit/3326cc9f4"><!-- raw HTML omitted -->(3326c)<!-- raw HTML omitted --></a></li> <li>Rename <code>collect</code> to <code>import</code>, remove <code>prepare</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9091">vitest-dev/vitest#9091</a> <a href="https://github.com/vitest-dev/vitest/commit/1256b5ca3"><!-- raw HTML omitted -->(1256b)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Unsubscribe <code>onCancel</code> on rpc destroy  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9088">vitest-dev/vitest#9088</a> <a href="https://github.com/vitest-dev/vitest/commit/f5b72374b"><!-- raw HTML omitted -->(f5b72)<!-- raw HTML omitted --></a></li> <li>Revert the viewport scaling in non-ui mode <a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/9018">#9018</a>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9072">vitest-dev/vitest#9072</a> and <a href="https://redirect.github.com/vitest-dev/vitest/issues/9018">vitest-dev/vitest#9018</a> <a href="https://github.com/vitest-dev/vitest/commit/64502a2c4"><!-- raw HTML omitted -->(64502)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Invalidate circular modules correctly on rerun with coverage  -  by <a href="https://github.com/aicest"><code>@​aicest</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9096">vitest-dev/vitest#9096</a> <a href="https://github.com/vitest-dev/vitest/commit/6f22c675f"><!-- raw HTML omitted -->(6f22c)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Allow function as standard schema  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9099">vitest-dev/vitest#9099</a> <a href="https://github.com/vitest-dev/vitest/commit/ed8a2ebbd"><!-- raw HTML omitted -->(ed8a2)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>jsdom</strong>: <ul> <li>Reuse abort signals if possible  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9090">vitest-dev/vitest#9090</a> <a href="https://github.com/vitest-dev/vitest/commit/2c468ee95"><!-- raw HTML omitted -->(2c468)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>pool</strong>: <ul> <li>Init <code>VITEST_POOL_ID</code> + <code>VITEST_WORKER_ID</code> before environment setup  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9085">vitest-dev/vitest#9085</a> <a href="https://github.com/vitest-dev/vitest/commit/379185b40"><!-- raw HTML omitted -->(37918)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>web-worker</strong>: <ul> <li><code>postMessage</code> to send ports to workers  -  by <a href="https://github.com/whitphx"><code>@​whitphx</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9078">vitest-dev/vitest#9078</a> <a href="https://github.com/vitest-dev/vitest/commit/9d1763d11"><!-- raw HTML omitted -->(9d176)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Replace <code>debug</code> with <code>obug</code>  -  by <a href="https://github.com/sxzz"><code>@​sxzz</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9057">vitest-dev/vitest#9057</a> <a href="https://github.com/vitest-dev/vitest/commit/acc5152b9"><!-- raw HTML omitted -->(acc51)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v4.0.13...v4.0.14">View changes on GitHub</a></h5> <h2>v4.0.13</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>types</strong>: <ul> <li>Don't use type from Vite 7.1  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9071">vitest-dev/vitest#9071</a> <a href="https://github.com/vitest-dev/vitest/commit/6356b1d38"><!-- raw HTML omitted -->(6356b)<!-- raw HTML omitted --></a></li> <li>Don't import node.js dependent types in vitest/browser  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9068">vitest-dev/vitest#9068</a> <a href="https://github.com/vitest-dev/vitest/commit/332afa0de"><!-- raw HTML omitted -->(332af)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Avoid fetchModule roundtrip if the module is cached  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9075">vitest-dev/vitest#9075</a> <a href="https://github.com/vitest-dev/vitest/commit/b27e002e5"><!-- raw HTML omitted -->(b27e0)<!-- raw HTML omitted --></a></li> <li><strong>experimental</strong>: If <code>fsCacheModule</code> is enabled, read from the memory when possible  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9076">vitest-dev/vitest#9076</a> <a href="https://github.com/vitest-dev/vitest/commit/6b9a1b5b1"><!-- raw HTML omitted -->(6b9a1)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v4.0.12...v4.0.13">View changes on GitHub</a></h5> <h2>v4.0.12</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Inherit <code>fsModuleCachePath</code> by default  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9063">vitest-dev/vitest#9063</a> <a href="https://github.com/vitest-dev/vitest/commit/9a8bc78c5"><!-- raw HTML omitted -->(9a8bc)<!-- raw HTML omitted --></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9ca74cfb2060d8bc1c7a319ba3cba1578517adb0"><code>9ca74cf</code></a> chore: release v4.0.14</li> <li><a href="https://github.com/vitest-dev/vitest/commit/acc5152b9690992e3ac0cff691db4347f2dccdf9"><code>acc5152</code></a> perf: replace <code>debug</code> with <code>obug</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/9057">#9057</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/73b54ce2859d34f3847de465efb3f6affda0f8c1"><code>73b54ce</code></a> chore: release v4.0.13</li> <li><a href="https://github.com/vitest-dev/vitest/commit/5aa84d56a609422b09a39b231b6c15e4d68cf3fb"><code>5aa84d5</code></a> chore: release v4.0.12</li> <li><a href="https://github.com/vitest-dev/vitest/commit/c3befb049fb4550d1b421d8e5990c6945e906a04"><code>c3befb0</code></a> chore: release v4.0.11</li> <li><a href="https://github.com/vitest-dev/vitest/commit/259a3d1b563ecafa51ced4641218545dab635be7"><code>259a3d1</code></a> chore: release v4.0.10</li> <li><a href="https://github.com/vitest-dev/vitest/commit/62fab2443132a62327cbb937573f29cfc7a9820c"><code>62fab24</code></a> chore: release v4.0.9</li> <li><a href="https://github.com/vitest-dev/vitest/commit/46bfd0983d3ed5362592e0e94af4173164440ffe"><code>46bfd09</code></a> chore: release v4.0.8</li> <li><a href="https://github.com/vitest-dev/vitest/commit/da8b93aa532cd1193f416e08c9e3f40b8015086d"><code>da8b93a</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/8636">#8636</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/1f5d9d2ccfd0fb23b270e39992eed0a7aaa3f4d7"><code>1f5d9d2</code></a> chore: release v4.0.7</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v4.0.14/packages/coverage-v8">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.6.2 to 3.7.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.7.3</h2> <h2>What's Changed</h2> <ul> <li>Fix <code>prettier.getFileInfo()</code> change that breaks VSCode extension by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18375">prettier/prettier#18375</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#373">Changelog</a></p> <h2>3.7.2</h2> <h2>What's Changed</h2> <ul> <li>Fix string print when switching quotes by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18351">prettier/prettier#18351</a></li> <li>Preserve quote for embedded HTML attribute values by <a href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18352">prettier/prettier#18352</a></li> <li>Fix comment in empty type literal by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18364">prettier/prettier#18364</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#372">Changelog</a></p> <h2>3.7.1</h2> <ul> <li>Fix performance regression in doc printer (<a href="https://redirect.github.com/prettier/prettier/pull/18342">#18342</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#371">Changelog</a></p> <h2>3.7.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.6.2...3.7.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/11/27/3.7.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.7.3</h1> <p><a href="https://github.com/prettier/prettier/compare/3.7.2...3.7.3">diff</a></p> <h4>API: Fix <code>prettier.getFileInfo()</code> change that breaks VSCode extension (<a href="https://redirect.github.com/prettier/prettier/pull/18375">#18375</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <p>An internal refactor accidentally broke the VSCode extension plugin loading.</p> <h1>3.7.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.7.1...3.7.2">diff</a></p> <h4>JavaScript: Fix string print when switching quotes (<a href="https://redirect.github.com/prettier/prettier/pull/18351">#18351</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input console.log(&quot;A descriptor\\'s .kind must be \&quot;method\&quot; or \&quot;field\&quot;.&quot;) <p>// Prettier 3.7.1 console.log('A descriptor\'s .kind must be &quot;method&quot; or &quot;field&quot;.');</p> <p>// Prettier 3.7.2 console.log('A descriptor\'s .kind must be &quot;method&quot; or &quot;field&quot;.'); </code></pre></p> <h4>JavaScript: Preserve quote for embedded HTML attribute values (<a href="https://redirect.github.com/prettier/prettier/pull/18352">#18352</a> by <a href="https://github.com/kovsu"><code>@​kovsu</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input const html = /* HTML */ ` &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt; `; <p>// Prettier 3.7.1 const html = /* HTML */ <code>&amp;lt;div class=${styles.banner}&amp;gt;&amp;lt;/div&amp;gt;</code>;</p> <p>// Prettier 3.7.2 const html = /* HTML */ <code>&amp;lt;div class=&amp;quot;${styles.banner}&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;</code>; </code></pre></p> <h4>TypeScript: Fix comment in empty type literal (<a href="https://redirect.github.com/prettier/prettier/pull/18364">#18364</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input export type XXX = { // tbd }; <p>// Prettier 3.7.1 &lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/fdfa6701767f5140a85902ecc9fb6444f5b4e3f8"><code>fdfa670</code></a> Release 3.7.3</li> <li><a href="https://github.com/prettier/prettier/commit/2dce3ec09081427775cc93a8d92cb828a0129e6f"><code>2dce3ec</code></a> Fix typo</li> <li><a href="https://github.com/prettier/prettier/commit/27d6c645cadeebe86011a195e8058d29888a68f6"><code>27d6c64</code></a> Revert previous change to <code>getFileInfo</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18375">#18375</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f4a7afaebfa27b975f6b4e336091cd600b0f5592"><code>f4a7afa</code></a> Add types for config related functions (<a href="https://redirect.github.com/prettier/prettier/issues/18376">#18376</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/9266e3e85b0dd4c594554cf9a91988e20c006f9b"><code>9266e3e</code></a> Add resolved test cases (<a href="https://redirect.github.com/prettier/prettier/issues/18358">#18358</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3bfc014442370ebad42b42e8eceea6d25891148d"><code>3bfc014</code></a> Bump Prettier dependency to 3.7.2</li> <li><a href="https://github.com/prettier/prettier/commit/081b84695b060651dc221afcda7531f4c7731c2e"><code>081b846</code></a> Clean changelog_unreleased</li> <li><a href="https://github.com/prettier/prettier/commit/03384c964d99ef26cb1a7fec68e7e5e263220cea"><code>03384c9</code></a> Release 3.7.2</li> <li><a href="https://github.com/prettier/prettier/commit/514e51afa2046aac7beb651270f0f4ce74a3dafa"><code>514e51a</code></a> Release <code>@​prettier/plugin-hermes</code> &amp; <code>@​prettier/plugin-oxc</code> v0.1.2</li> <li><a href="https://github.com/prettier/prettier/commit/29a11ae1ae417b8d0fa66d88d656001a6a90e297"><code>29a11ae</code></a> Fix comment in empty type literal (<a href="https://redirect.github.com/prettier/prettier/issues/18364">#18364</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.6.2...3.7.3">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for prettier since your current version.</p> </details> <br /> Updates `tsup` from 8.5.0 to 8.5.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/egoist/tsup/releases">tsup's releases</a>.</em></p> <blockquote> <h2>v8.5.1</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Add script tag validation  -  by <a href="https://github.com/benhoad"><code>@​benhoad</code></a> in <a href="https://redirect.github.com/egoist/tsup/issues/1314">egoist/tsup#1314</a> <a href="https://github.com/egoist/tsup/commit/df7360b"><!-- raw HTML omitted -->(df736)<!-- raw HTML omitted --></a></li> <li>Update esbuild to fix sourcemap source issue  -  by <a href="https://github.com/ArcherGu"><code>@​ArcherGu</code></a> and <a href="https://github.com/sxzz"><code>@​sxzz</code></a> in <a href="https://redirect.github.com/egoist/tsup/issues/1316">egoist/tsup#1316</a> <a href="https://github.com/egoist/tsup/commit/fb8ae7d"><!-- raw HTML omitted -->(fb8ae)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/egoist/tsup/compare/v8.5.0...v8.5.1">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/egoist/tsup/commit/1ecb6a5783fc91c73a7426adaa9a5abf3f978f07"><code>1ecb6a5</code></a> chore: release v8.5.1</li> <li><a href="https://github.com/egoist/tsup/commit/e92ba64be431aa5da9b40ff6103525b580517082"><code>e92ba64</code></a> chore: upgrade esbuild</li> <li><a href="https://github.com/egoist/tsup/commit/fb8ae7d099a8b8885b5e9f4066696251b2d503f4"><code>fb8ae7d</code></a> fix: update esbuild to fix sourcemap source issue (<a href="https://redirect.github.com/egoist/tsup/issues/1316">#1316</a>)</li> <li><a href="https://github.com/egoist/tsup/commit/db7cfaa1b5c09108ad944c201d91ffa9714afd59"><code>db7cfaa</code></a> chore: upgrade pnpm</li> <li><a href="https://github.com/egoist/tsup/commit/df7360b3e0cd3165c378a8544bafa1cb745f3d02"><code>df7360b</code></a> fix: add script tag validation (<a href="https://redirect.github.com/egoist/tsup/issues/1314">#1314</a>)</li> <li><a href="https://github.com/egoist/tsup/commit/65e85472da977fca25ed0fe556a4a211ba7b2b50"><code>65e8547</code></a> chore: bump <code>source-map</code> to 0.7.6 (<a href="https://redirect.github.com/egoist/tsup/issues/1358">#1358</a>)</li> <li><a href="https://github.com/egoist/tsup/commit/f127e57e8d729e4cab74d78a61c63b1f6bef9913"><code>f127e57</code></a> ci: switch to trusted publisher</li> <li><a href="https://github.com/egoist/tsup/commit/8b6907df5d944e5e4a639a297875a35818ba9fa5"><code>8b6907d</code></a> chore: add maintenance info in README (<a href="https://redirect.github.com/egoist/tsup/issues/1332">#1332</a>)</li> <li>See full diff in <a href="https://github.com/egoist/tsup/compare/v8.5.0...v8.5.1">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for tsup since your current version.</p> </details> <br /> Updates `vitest` from 4.0.6 to 4.0.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v4.0.14</h2> <h3>   🚀 Experimental Features</h3> <ul> <li><strong>browser</strong>: Expose <code>utils.configurePrettyDOM</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9103">vitest-dev/vitest#9103</a> <a href="https://github.com/vitest-dev/vitest/commit/2cc34e0d4"><!-- raw HTML omitted -->(2cc34)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Add full names to tasks  -  by <a href="https://github.com/macarie"><code>@​macarie</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9087">vitest-dev/vitest#9087</a> <a href="https://github.com/vitest-dev/vitest/commit/821aa2002"><!-- raw HTML omitted -->(821aa)<!-- raw HTML omitted --></a></li> <li><strong>ui</strong>: Add tabbed failure view for <code>toMatchScreenshot</code> with comparison slider  -  by <a href="https://github.com/macarie"><code>@​macarie</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8813">vitest-dev/vitest#8813</a> <a href="https://github.com/vitest-dev/vitest/commit/c37c2eb0b"><!-- raw HTML omitted -->(c37c2)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li>Externalize before caching  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9077">vitest-dev/vitest#9077</a> <a href="https://github.com/vitest-dev/vitest/commit/e1b2e086a"><!-- raw HTML omitted -->(e1b2e)<!-- raw HTML omitted --></a></li> <li>Collect the duration of external imports  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9097">vitest-dev/vitest#9097</a> <a href="https://github.com/vitest-dev/vitest/commit/3326cc9f4"><!-- raw HTML omitted -->(3326c)<!-- raw HTML omitted --></a></li> <li>Rename <code>collect</code> to <code>import</code>, remove <code>prepare</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9091">vitest-dev/vitest#9091</a> <a href="https://github.com/vitest-dev/vitest/commit/1256b5ca3"><!-- raw HTML omitted -->(1256b)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Unsubscribe <code>onCancel</code> on rpc destroy  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9088">vitest-dev/vitest#9088</a> <a href="https://github.com/vitest-dev/vitest/commit/f5b72374b"><!-- raw HTML omitted -->(f5b72)<!-- raw HTML omitted --></a></li> <li>Revert the viewport scaling in non-ui mode <a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9018">#9018</a>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9072">vitest-dev/vitest#9072</a> and <a href="https://redirect.github.com/vitest-dev/vitest/issues/9018">vitest-dev/vitest#9018</a> <a href="https://github.com/vitest-dev/vitest/commit/64502a2c4"><!-- raw HTML omitted -->(64502)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Invalidate circular modules correctly on rerun with coverage  -  by <a href="https://github.com/aicest"><code>@​aicest</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9096">vitest-dev/vitest#9096</a> <a href="https://github.com/vitest-dev/vitest/commit/6f22c675f"><!-- raw HTML omitted -->(6f22c)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Allow function as standard schema  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9099">vitest-dev/vitest#9099</a> <a href="https://github.com/vitest-dev/vitest/commit/ed8a2ebbd"><!-- raw HTML omitted -->(ed8a2)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>jsdom</strong>: <ul> <li>Reuse abort signals if possible  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9090">vitest-dev/vitest#9090</a> <a href="https://github.com/vitest-dev/vitest/commit/2c468ee95"><!-- raw HTML omitted -->(2c468)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>pool</strong>: <ul> <li>Init <code>VITEST_POOL_ID</code> + <code>VITEST_WORKER_ID</code> before environment setup  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9085">vitest-dev/vitest#9085</a> <a href="https://github.com/vitest-dev/vitest/commit/379185b40"><!-- raw HTML omitted -->(37918)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>web-worker</strong>: <ul> <li><code>postMessage</code> to send ports to workers  -  by <a href="https://github.com/whitphx"><code>@​whitphx</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9078">vitest-dev/vitest#9078</a> <a href="https://github.com/vitest-dev/vitest/commit/9d1763d11"><!-- raw HTML omitted -->(9d176)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Replace <code>debug</code> with <code>obug</code>  -  by <a href="https://github.com/sxzz"><code>@​sxzz</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9057">vitest-dev/vitest#9057</a> <a href="https://github.com/vitest-dev/vitest/commit/acc5152b9"><!-- raw HTML omitted -->(acc51)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v4.0.13...v4.0.14">View changes on GitHub</a></h5> <h2>v4.0.13</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>types</strong>: <ul> <li>Don't use type from Vite 7.1  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9071">vitest-dev/vitest#9071</a> <a href="https://github.com/vitest-dev/vitest/commit/6356b1d38"><!-- raw HTML omitted -->(6356b)<!-- raw HTML omitted --></a></li> <li>Don't import node.js dependent types in vitest/browser  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9068">vitest-dev/vitest#9068</a> <a href="https://github.com/vitest-dev/vitest/commit/332afa0de"><!-- raw HTML omitted -->(332af)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Avoid fetchModule roundtrip if the module is cached  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9075">vitest-dev/vitest#9075</a> <a href="https://github.com/vitest-dev/vitest/commit/b27e002e5"><!-- raw HTML omitted -->(b27e0)<!-- raw HTML omitted --></a></li> <li><strong>experimental</strong>: If <code>fsCacheModule</code> is enabled, read from the memory when possible  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9076">vitest-dev/vitest#9076</a> <a href="https://github.com/vitest-dev/vitest/commit/6b9a1b5b1"><!-- raw HTML omitted -->(6b9a1)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v4.0.12...v4.0.13">View changes on GitHub</a></h5> <h2>v4.0.12</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Inherit <code>fsModuleCachePath</code> by default  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/9063">vitest-dev/vitest#9063</a> <a href="https://github.com/vitest-dev/vitest/commit/9a8bc78c5"><!-- raw HTML omitted -->(9a8bc)<!-- raw HTML omitted --></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9ca74cfb2060d8bc1c7a319ba3cba1578517adb0"><code>9ca74cf</code></a> chore: release v4.0.14</li> <li><a href="https://github.com/vitest-dev/vitest/commit/821aa20021111de63a71e8a9c69eb9188d6e409a"><code>821aa20</code></a> feat(runner): Add full names to tasks (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9087">#9087</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/1256b5ca34a36d3a29479d5dfddb129348964d80"><code>1256b5c</code></a> fix: rename <code>collect</code> to <code>import</code>, remove <code>prepare</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9091">#9091</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/3326cc9f43f102322f3c627590d103d8a3890dd5"><code>3326cc9</code></a> fix: collect the duration of external imports (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9097">#9097</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/379185b408baba90ec91540b5e7cf545a4527f1a"><code>379185b</code></a> fix(pool): init <code>VITEST_POOL_ID</code> + <code>VITEST_WORKER_ID</code> before environment setu...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/2c468ee95ee1d42129f59665eabc563e34dae1e4"><code>2c468ee</code></a> fix(jsdom): reuse abort signals if possible (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9090">#9090</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/e1b2e086a40ce154ae11714fa71749ec21b1ac23"><code>e1b2e08</code></a> fix: externalize before caching (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9077">#9077</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/acc5152b9690992e3ac0cff691db4347f2dccdf9"><code>acc5152</code></a> perf: replace <code>debug</code> with <code>obug</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9057">#9057</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/73b54ce2859d34f3847de465efb3f6affda0f8c1"><code>73b54ce</code></a> chore: release v4.0.13</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b27e002e578e7b6cf182c3c173ac5d8fd390598d"><code>b27e002</code></a> perf: avoid fetchModule roundtrip if the module is cached (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9075">#9075</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v4.0.14/packages/vitest">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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0f776dc commit 08e168e

File tree

1 file changed

+630
-170
lines changed

1 file changed

+630
-170
lines changed

0 commit comments

Comments
 (0)