Commit 6bf2184
authored
build(deps): bump esbuild, @vitest/ui, tsup and vitest (#292)
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates
ancestor dependencies [esbuild](https://github.com/evanw/esbuild),
[@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui),
[tsup](https://github.com/egoist/tsup) and
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).
These dependencies need to be updated together.
Updates `esbuild` from 0.18.20 to 0.25.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/releases">esbuild's
releases</a>.</em></p>
<blockquote>
<h2>v0.25.1</h2>
<ul>
<li>
<p>Fix incorrect paths in inline source maps (<a
href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4105">#4105</a>)</p>
<p>This fixes a regression from version 0.25.0 where esbuild didn't
correctly resolve relative paths contained within source maps in inline
<code>sourceMappingURL</code> data URLs. The paths were incorrectly
being passed through as-is instead of being resolved relative to the
source file containing the <code>sourceMappingURL</code> comment, which
was due to the data URL not being a file URL. This regression has been
fixed, and this case now has test coverage.</p>
</li>
<li>
<p>Fix invalid generated source maps (<a
href="https://redirect.github.com/evanw/esbuild/issues/4080">#4080</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4107">#4107</a>)</p>
<p>This release fixes a regression from version 0.24.1 that could cause
esbuild to generate invalid source maps. Specifically under certain
conditions, esbuild could generate a mapping with an out-of-bounds
source index. It was introduced by code that attempted to improve
esbuild's handling of "null" entries in source maps (i.e.
mappings with a generated position but no original position). This
regression has been fixed.</p>
<p>This fix was contributed by <a
href="https://github.com/jridgewell"><code>@jridgewell</code></a>.</p>
</li>
<li>
<p>Fix a regression with non-file source map paths (<a
href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>)</p>
<p>The format of paths in source maps that aren't in the
<code>file</code> namespace was unintentionally changed in version
0.25.0. Path namespaces is an esbuild-specific concept that is
optionally available for plugins to use to distinguish paths from
<code>file</code> paths and from paths meant for other plugins.
Previously the namespace was prepended to the path joined with a
<code>:</code> character, but version 0.25.0 unintentionally failed to
prepend the namespace. The previous behavior has been restored.</p>
</li>
<li>
<p>Fix a crash with <code>switch</code> optimization (<a
href="https://redirect.github.com/evanw/esbuild/issues/4088">#4088</a>)</p>
<p>The new code in the previous release to optimize dead code in switch
statements accidentally introduced a crash in the edge case where one or
more switch case values include a function expression. This is because
esbuild now visits the case values first to determine whether any cases
are dead code, and then visits the case bodies once the dead code status
is known. That triggered some internal asserts that guard against
traversing the AST in an unexpected order. This crash has been fixed by
changing esbuild to expect the new traversal ordering. Here's an example
of affected code:</p>
<pre lang="js"><code>switch (x) {
case '':
return y.map(z => z.value)
case y.map(z => z.key).join(','):
return []
}
</code></pre>
</li>
<li>
<p>Update Go from 1.23.5 to 1.23.7 (<a
href="https://redirect.github.com/evanw/esbuild/issues/4076">#4076</a>,
<a
href="https://redirect.github.com/evanw/esbuild/pull/4077">#4077</a>)</p>
<p>This should have no effect on existing code as this version change
does not change Go's operating system support. It may remove certain
reports from vulnerability scanners that detect which version of the Go
compiler esbuild uses.</p>
<p>This PR was contributed by <a
href="https://github.com/MikeWillCook"><code>@MikeWillCook</code></a>.</p>
</li>
</ul>
<h2>v0.25.0</h2>
<p><strong>This release deliberately contains backwards-incompatible
changes.</strong> To avoid automatically picking up releases like this,
you should either be pinning the exact version of <code>esbuild</code>
in your <code>package.json</code> file (recommended) or be using a
version range syntax that only accepts patch upgrades such as
<code>^0.24.0</code> or <code>~0.24.0</code>. See npm's documentation
about <a
href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for
more information.</p>
<ul>
<li>
<p>Restrict access to esbuild's development server (<a
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">GHSA-67mh-4wv8-2f99</a>)</p>
<p>This change addresses esbuild's first security vulnerability report.
Previously esbuild set the <code>Access-Control-Allow-Origin</code>
header to <code>*</code> to allow esbuild's development server to be
flexible in how it's used for development. However, this allows the
websites you visit to make HTTP requests to esbuild's local development
server, which gives read-only access to your source code if the website
were to fetch your source code's specific URL. You can read more
information in <a
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">the
report</a>.</p>
<p>Starting with this release, <a
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">CORS</a>
will now be disabled, and requests will now be denied if the host does
not match the one provided to <code>--serve=</code>. The default host is
<code>0.0.0.0</code>, which refers to all of the IP addresses that
represent the local machine (e.g. both <code>127.0.0.1</code> and
<code>192.168.0.1</code>). If you want to customize anything about
esbuild's development server, you can <a
href="https://esbuild.github.io/api/#serve-proxy">put a proxy in front
of esbuild</a> and modify the incoming and/or outgoing requests.</p>
<p>In addition, the <code>serve()</code> API call has been changed to
return an array of <code>hosts</code> instead of a single
<code>host</code> string. This makes it possible to determine all of the
hosts that esbuild's development server will accept.</p>
<p>Thanks to <a
href="https://github.com/sapphi-red"><code>@sapphi-red</code></a> for
reporting this issue.</p>
</li>
<li>
<p>Delete output files when a build fails in watch mode (<a
href="https://redirect.github.com/evanw/esbuild/issues/3643">#3643</a>)</p>
<p>It has been requested for esbuild to delete files when a build fails
in watch mode. Previously esbuild left the old files in place, which
could cause people to not immediately realize that the most recent build
failed. With this release, esbuild will now delete all output files if a
rebuild fails. Fixing the build error and triggering another rebuild
will restore all output files again.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md">esbuild's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog: 2023</h1>
<p>This changelog documents all esbuild versions published in the year
2023 (versions 0.16.13 through 0.19.11).</p>
<h2>0.19.11</h2>
<ul>
<li>
<p>Fix TypeScript-specific class transform edge case (<a
href="https://redirect.github.com/evanw/esbuild/issues/3559">#3559</a>)</p>
<p>The previous release introduced an optimization that avoided
transforming <code>super()</code> in the class constructor for
TypeScript code compiled with <code>useDefineForClassFields</code> set
to <code>false</code> if all class instance fields have no initializers.
The rationale was that in this case, all class instance fields are
omitted in the output so no changes to the constructor are needed.
However, if all of this is the case <em>and</em> there are
<code>#private</code> instance fields with initializers, those private
instance field initializers were still being moved into the constructor.
This was problematic because they were being inserted before the call to
<code>super()</code> (since <code>super()</code> is now no longer
transformed in that case). This release introduces an additional
optimization that avoids moving the private instance field initializers
into the constructor in this edge case, which generates smaller code,
matches the TypeScript compiler's output more closely, and avoids this
bug:</p>
<pre lang="ts"><code>// Original code
class Foo extends Bar {
#private = 1;
public: any;
constructor() {
super();
}
}
<p>// Old output (with esbuild v0.19.9)<br />
class Foo extends Bar {<br />
constructor() {<br />
super();<br />
this.#private = 1;<br />
}<br />
#private;<br />
}</p>
<p>// Old output (with esbuild v0.19.10)<br />
class Foo extends Bar {<br />
constructor() {<br />
this.#private = 1;<br />
super();<br />
}<br />
#private;<br />
}</p>
<p>// New output<br />
class Foo extends Bar {<br />
#private = 1;<br />
constructor() {<br />
super();<br />
}<br />
}<br />
</code></pre></p>
</li>
<li>
<p>Minifier: allow reording a primitive past a side-effect (<a
href="https://redirect.github.com/evanw/esbuild/issues/3568">#3568</a>)</p>
<p>The minifier previously allowed reordering a side-effect past a
primitive, but didn't handle the case of reordering a primitive past a
side-effect. This additional case is now handled:</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007"><code>6bfc1c1</code></a>
publish 0.25.1 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36"><code>f9b3952</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>:
prepend namespaces to source map paths</li>
<li><a
href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174"><code>ccf3dd7</code></a>
add "contributed by" in changelog</li>
<li><a
href="https://github.com/evanw/esbuild/commit/48cd7a9e26452f30345eb10a3d471f26de56d1ec"><code>48cd7a9</code></a>
Update Go from 1.23.5 to 1.23.7 (<a
href="https://redirect.github.com/evanw/esbuild/issues/4077">#4077</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/1f04fa4dc85ef4b1fa01e1938fa127a2cc170c35"><code>1f04fa4</code></a>
fix absolute windows paths in source maps</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9ca03f6ea8aa4c418cb66da876139eef4e2abb26"><code>9ca03f6</code></a>
also add test case from <a
href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a></li>
<li><a
href="https://github.com/evanw/esbuild/commit/2f244c085a970b873e579ac2a0b1c054cf9c66ea"><code>2f244c0</code></a>
add test case from <a
href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a></li>
<li><a
href="https://github.com/evanw/esbuild/commit/1dde994de8858d71fe0e9e128d22142b3c9d7de6"><code>1dde994</code></a>
fix incorrect test names</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9f008c59b628b65c00878d7673ed24317e911666"><code>9f008c5</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>:
<code>file</code> namespace for <code>sourceMappingURL</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/cbd5eb8c82089619f235b96be7b7b18c06fc10c0"><code>cbd5eb8</code></a>
release notes and tests for <a
href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a></li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.18.20...v0.25.1">compare
view</a></li>
</ul>
</details>
<br />
Updates `@vitest/ui` from 2.1.9 to 3.0.9
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@vitest/ui</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.0.9</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Typings of <code>ctx.skip()</code> as <code>never</code> - by <a
href="https://github.com/sirlancelot"><code>@sirlancelot</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7608">vitest-dev/vitest#7608</a>
<a href="https://github.com/vitest-dev/vitest/commit/09f35301"><!-- raw
HTML omitted -->(09f35)<!-- raw HTML omitted --></a></li>
<li>Cleanup vitest in public <code>resolveConfig</code> API - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7623">vitest-dev/vitest#7623</a>
<a href="https://github.com/vitest-dev/vitest/commit/db14ab71"><!-- raw
HTML omitted -->(db14a)<!-- raw HTML omitted --></a></li>
<li>Fix <code>toHaveBeenCalledWith(asymmetricMatcher)</code> with
<code>undefined</code> arguments - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7624">vitest-dev/vitest#7624</a>
<a href="https://github.com/vitest-dev/vitest/commit/0fb21faa"><!-- raw
HTML omitted -->(0fb21)<!-- raw HTML omitted --></a></li>
<li>Race condition in RPC filesystem cache. - by <a
href="https://github.com/dts"><code>@dts</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7531">vitest-dev/vitest#7531</a>
<a href="https://github.com/vitest-dev/vitest/commit/b7f55261"><!-- raw
HTML omitted -->(b7f55)<!-- raw HTML omitted --></a></li>
<li>Fix <code>getState().testPath</code> during collection with no
isolation - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7640">vitest-dev/vitest#7640</a>
<a href="https://github.com/vitest-dev/vitest/commit/3fb3fbf8"><!-- raw
HTML omitted -->(3fb3f)<!-- raw HTML omitted --></a></li>
<li>Support custom toString method in %s format - by <a
href="https://github.com/pengooseDev"><code>@pengooseDev</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7637">vitest-dev/vitest#7637</a>
<a href="https://github.com/vitest-dev/vitest/commit/46d93a2e"><!-- raw
HTML omitted -->(46d93)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Fail playwright timeouts earlier than a test timeout - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> and
<a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7565">vitest-dev/vitest#7565</a>
<a href="https://github.com/vitest-dev/vitest/commit/5eb4cd1f"><!-- raw
HTML omitted -->(5eb4c)<!-- raw HTML omitted --></a></li>
<li>Remove <code>@testing-library/dom</code> from dependencies <a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7555">#7555</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/7628">vitest-dev/vitest#7628</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7555">vitest-dev/vitest#7555</a>
<a href="https://github.com/vitest-dev/vitest/commit/94b27af5"><!-- raw
HTML omitted -->(94b27)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li>Browser mode + <code>coverage.all</code> - by <a
href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7597">vitest-dev/vitest#7597</a>
<a href="https://github.com/vitest-dev/vitest/commit/422ba66b"><!-- raw
HTML omitted -->(422ba)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Show stacktrace on hook timeout error - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7502">vitest-dev/vitest#7502</a>
<a href="https://github.com/vitest-dev/vitest/commit/268a19e1"><!-- raw
HTML omitted -->(268a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Fix source map of inlined node_modules - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7557">vitest-dev/vitest#7557</a>
<a href="https://github.com/vitest-dev/vitest/commit/34aa322b"><!-- raw
HTML omitted -->(34aa3)<!-- raw HTML omitted --></a></li>
<li>Fix missing <code>buildStart</code> - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7652">vitest-dev/vitest#7652</a>
<a href="https://github.com/vitest-dev/vitest/commit/29f5a848"><!-- raw
HTML omitted -->(29f5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>web-worker</strong>:
<ul>
<li>Ensure <code>removeEventListener</code> is bound to worker - by <a
href="https://github.com/joelgallant"><code>@joelgallant</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7631">vitest-dev/vitest#7631</a>
<a href="https://github.com/vitest-dev/vitest/commit/ff42bcb3"><!-- raw
HTML omitted -->(ff42b)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5> <a
href="https://github.com/vitest-dev/vitest/compare/v3.0.8...v3.0.9">View
changes on GitHub</a></h5>
<h2>v3.0.8</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Fix fetch cache multiple writes - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7546">vitest-dev/vitest#7546</a>
<a href="https://github.com/vitest-dev/vitest/commit/1a8b4337"><!-- raw
HTML omitted -->(1a8b4)<!-- raw HTML omitted --></a></li>
<li>Use browser.isolate instead of config.isolate - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7560">vitest-dev/vitest#7560</a>
<a href="https://github.com/vitest-dev/vitest/commit/4b5ed902"><!-- raw
HTML omitted -->(4b5ed)<!-- raw HTML omitted --></a></li>
<li>Remove vestigial spy stub, import directly from
<code>@vitest/spy</code> - by <a
href="https://github.com/mrginglymus"><code>@mrginglymus</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7575">vitest-dev/vitest#7575</a>
<a href="https://github.com/vitest-dev/vitest/commit/7f7ff11c"><!-- raw
HTML omitted -->(7f7ff)<!-- raw HTML omitted --></a></li>
<li>Correctly split the argv string - by <a
href="https://github.com/btea"><code>@btea</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7533">vitest-dev/vitest#7533</a>
<a href="https://github.com/vitest-dev/vitest/commit/4325ac67"><!-- raw
HTML omitted -->(4325a)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Remove <code>@testing-library/dom</code> from dependencies - by
<a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7555">vitest-dev/vitest#7555</a>
<a href="https://github.com/vitest-dev/vitest/commit/5387a5b3"><!-- raw
HTML omitted -->(5387a)<!-- raw HTML omitted --></a></li>
<li>Improve source map handling for bundled files - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7534">vitest-dev/vitest#7534</a>
<a href="https://github.com/vitest-dev/vitest/commit/e2c570b6"><!-- raw
HTML omitted -->(e2c57)<!-- raw HTML omitted --></a></li>
<li>Print related test file and potential test in unhandled errors -
by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7564">vitest-dev/vitest#7564</a>
<a href="https://github.com/vitest-dev/vitest/commit/fee90d85"><!-- raw
HTML omitted -->(fee90)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Fix <code>beforeEach/All</code> cleanup callback timeout - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7500">vitest-dev/vitest#7500</a>
<a href="https://github.com/vitest-dev/vitest/commit/0c2924b7"><!-- raw
HTML omitted -->(0c292)<!-- raw HTML omitted --></a></li>
<li>Fix and simplify <code>Task.suite</code> initialization - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7414">vitest-dev/vitest#7414</a>
<a href="https://github.com/vitest-dev/vitest/commit/ca9ffac5"><!-- raw
HTML omitted -->(ca9ff)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>snapshot</strong>:
<ul>
<li>Allow inline snapshot calls on same location with same snapshot -
by <a href="https://github.com/jycouet"><code>@jycouet</code></a> and
<a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7464">vitest-dev/vitest#7464</a>
<a href="https://github.com/vitest-dev/vitest/commit/d5cb8212"><!-- raw
HTML omitted -->(d5cb8)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Fix <code>buildStart</code> on Vite 6 - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7480">vitest-dev/vitest#7480</a>
<a href="https://github.com/vitest-dev/vitest/commit/c0f47e03"><!-- raw
HTML omitted -->(c0f47)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5> <a
href="https://github.com/vitest-dev/vitest/compare/v3.0.7...v3.0.8">View
changes on GitHub</a></h5>
<h2>v3.0.7</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>: Support webdriverio 9 - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7553">vitest-dev/vitest#7553</a>
<a href="https://github.com/vitest-dev/vitest/commit/b1949c97"><!-- raw
HTML omitted -->(b1949)<!-- raw HTML omitted --></a></li>
<li><strong>deps</strong>: Update all non-major dependencies - in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7543">vitest-dev/vitest#7543</a>
<a href="https://github.com/vitest-dev/vitest/commit/365ffe6b"><!-- raw
HTML omitted -->(365ff)<!-- 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/8ea9e147e1db2fa0e1671b9c1d453e3693a240ae"><code>8ea9e14</code></a>
chore: release v3.0.9</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/4b0451d9e5e669a7f7d33a07b40fd056b1071097"><code>4b0451d</code></a>
chore(deps): update dependency <code>@antfu/eslint-config</code> to v4
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7407">#7407</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/df1fc8e57ada2adf197934da5d0b1d6cf56bf147"><code>df1fc8e</code></a>
refactor(ws-client): remove utils re-export (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7635">#7635</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/7155aefa363994f31923b32c5b53567164625737"><code>7155aef</code></a>
chore: use pnpm catalog (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7590">#7590</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/c0cf65f94ffb6c7a3c2759027f061cb643647f37"><code>c0cf65f</code></a>
chore: use <code>unplugin-isolated-decl</code> with
<code>oxc-transform</code> for dts build (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7609">#7609</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/814d5df54e29cf882701b2a8a85187974cf940a7"><code>814d5df</code></a>
chore: release v3.0.8</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/358cccfb8f21db00ff8f2b7d616fda864f491e71"><code>358cccf</code></a>
chore: release v3.0.7</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/365ffe6b4ce96b16e96d72b989c7666b0422c516"><code>365ffe6</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7543">#7543</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/9584be337f00e22475895360cb5cfa5dc0775e79"><code>9584be3</code></a>
chore: release v3.0.6</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/6cc408d66445de5472f61ea527ceea6e0dddb16e"><code>6cc408d</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/7507">#7507</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v3.0.9/packages/ui">compare
view</a></li>
</ul>
</details>
<br />
Updates `tsup` from 7.2.0 to 8.4.0
<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.4.0</h2>
<h3> 🚀 Features</h3>
<ul>
<li>Upgrade svelte and css compiler - by <a
href="https://github.com/DaniAcu"><code>@DaniAcu</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/1288">egoist/tsup#1288</a>
<a href="https://github.com/egoist/tsup/commit/c3f320e"><!-- raw HTML
omitted -->(c3f32)<!-- raw HTML omitted --></a></li>
</ul>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Upgrade esbuild to 0.25 - by <a
href="https://github.com/RobinTail"><code>@RobinTail</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/1309">egoist/tsup#1309</a>
<a href="https://github.com/egoist/tsup/commit/89c4780"><!-- raw HTML
omitted -->(89c47)<!-- raw HTML omitted --></a></li>
</ul>
<h5> <a
href="https://github.com/egoist/tsup/compare/v8.3.6...v8.4.0">View
changes on GitHub</a></h5>
<h2>v8.3.6</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Don't await sub-process of <code>onSuccess</code> - by <a
href="https://github.com/laat"><code>@laat</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/1256">egoist/tsup#1256</a>
<a href="https://github.com/egoist/tsup/commit/314a6d7"><!-- raw HTML
omitted -->(314a6)<!-- raw HTML omitted --></a></li>
</ul>
<h5> <a
href="https://github.com/egoist/tsup/compare/v8.3.5...v8.3.6">View
changes on GitHub</a></h5>
<h2>v8.3.5</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Run <code>experimentalDts</code> only once - by <a
href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in
<a
href="https://redirect.github.com/egoist/tsup/issues/1236">egoist/tsup#1236</a>
<a href="https://github.com/egoist/tsup/commit/fddd451"><!-- raw HTML
omitted -->(fddd4)<!-- raw HTML omitted --></a></li>
</ul>
<h5> <a
href="https://github.com/egoist/tsup/compare/v8.3.4...v8.3.5">View
changes on GitHub</a></h5>
<h2>v8.3.4</h2>
<p><em>No significant changes</em></p>
<h5> <a
href="https://github.com/egoist/tsup/compare/v8.3.3...v8.3.4">View
changes on GitHub</a></h5>
<h2>v8.3.3</h2>
<p><em>No significant changes</em></p>
<h5> <a
href="https://github.com/egoist/tsup/compare/v8.3.2...v8.3.3">View
changes on GitHub</a></h5>
<h2>v8.3.1</h2>
<h3> 🚀 Features</h3>
<ul>
<li>Add <code>es2024</code> target - by <a
href="https://github.com/sxzz"><code>@sxzz</code></a> <a
href="https://github.com/egoist/tsup/commit/4c8cd7f"><!-- raw HTML
omitted -->(4c8cd)<!-- raw HTML omitted --></a></li>
</ul>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Support TS 5.6 for svelte - by <a
href="https://github.com/sxzz"><code>@sxzz</code></a> <a
href="https://github.com/egoist/tsup/commit/28b9ce9"><!-- raw HTML
omitted -->(28b9c)<!-- raw HTML omitted --></a></li>
<li>Add <code>neutral</code> value to platform options in
<code>schema.json</code> - by <a
href="https://github.com/venables"><code>@venables</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/982">egoist/tsup#982</a>
<a href="https://github.com/egoist/tsup/commit/a03db4c"><!-- raw HTML
omitted -->(a03db)<!-- raw HTML omitted --></a></li>
<li>Wider restriction for <code>target</code> option - by <a
href="https://github.com/odanado"><code>@odanado</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/1118">egoist/tsup#1118</a>
<a href="https://github.com/egoist/tsup/commit/1979b06"><!-- raw HTML
omitted -->(1979b)<!-- raw HTML omitted --></a></li>
<li>Add <code>terser</code> value to <code>minify</code> option in
<code>schema.json</code> - by <a
href="https://github.com/damienbutt"><code>@damienbutt</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/991">egoist/tsup#991</a>
<a href="https://github.com/egoist/tsup/commit/34951bf"><!-- raw HTML
omitted -->(34951)<!-- raw HTML omitted --></a></li>
<li>Change <code>newlineKind</code> to <code>lf</code> for
<code>experimentalDts</code> - by <a
href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in
<a
href="https://redirect.github.com/egoist/tsup/issues/1234">egoist/tsup#1234</a>
<a href="https://github.com/egoist/tsup/commit/4584b89"><!-- raw HTML
omitted -->(4584b)<!-- raw HTML omitted --></a></li>
<li>Enable rollup <code>output.compact</code> when minify is enabled -
by <a href="https://github.com/hyrious"><code>@hyrious</code></a> in <a
href="https://redirect.github.com/egoist/tsup/issues/1232">egoist/tsup#1232</a>
<a href="https://github.com/egoist/tsup/commit/9cc86d6"><!-- raw HTML
omitted -->(9cc86)<!-- raw HTML omitted --></a></li>
<li>Support <code>Node16</code> and <code>NodeNext</code> module
resolution in <code>experimentalDts</code> - by <a
href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in
<a
href="https://redirect.github.com/egoist/tsup/issues/1225">egoist/tsup#1225</a>
<a href="https://github.com/egoist/tsup/commit/41c98ff"><!-- raw HTML
omitted -->(41c98)<!-- 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/egoist/tsup/commit/773d27e6dc9dffc8cab290706ce45d2c7ef09a55"><code>773d27e</code></a>
chore: release v8.4.0</li>
<li><a
href="https://github.com/egoist/tsup/commit/89c4780200f754639166e4766474c25bdf210fdd"><code>89c4780</code></a>
fix: upgrade esbuild to 0.25 (<a
href="https://redirect.github.com/egoist/tsup/issues/1309">#1309</a>)</li>
<li><a
href="https://github.com/egoist/tsup/commit/0328fd64a771adb0789968775c22b4317683fafe"><code>0328fd6</code></a>
chore(deps): update dependency <code>@swc/core</code> to v1.10.18 (<a
href="https://redirect.github.com/egoist/tsup/issues/1243">#1243</a>)</li>
<li><a
href="https://github.com/egoist/tsup/commit/c3f320e3ae8aa11606ddce701b0c8438a94ecb48"><code>c3f320e</code></a>
feat: upgrade svelte and css compiler (<a
href="https://redirect.github.com/egoist/tsup/issues/1288">#1288</a>)</li>
<li><a
href="https://github.com/egoist/tsup/commit/22e48607d670c46c11eabd95be4f3ed08a4defb2"><code>22e4860</code></a>
chore: upgrade deps</li>
<li><a
href="https://github.com/egoist/tsup/commit/d4f133c536d6369064c194a70f5af33a7e31ea4f"><code>d4f133c</code></a>
ci: remove corepack</li>
<li><a
href="https://github.com/egoist/tsup/commit/4066e737a2b74975d8a048b9c64ae46aaf335523"><code>4066e73</code></a>
chore: upgrade pnpm</li>
<li><a
href="https://github.com/egoist/tsup/commit/612ce128a79ada2b74ccf24137d9b16883cb80a1"><code>612ce12</code></a>
chore: upgrade cross-spawn to 7.0.6 (<a
href="https://redirect.github.com/egoist/tsup/issues/1275">#1275</a>)</li>
<li><a
href="https://github.com/egoist/tsup/commit/bee8f42dc72c5b40c2946422fc632069dde2a55b"><code>bee8f42</code></a>
chore: release v8.3.6</li>
<li><a
href="https://github.com/egoist/tsup/commit/86c3b0bfac9daf2c94c8273f2a931c0d25205b42"><code>86c3b0b</code></a>
chore: fix pass options</li>
<li>Additional commits viewable in <a
href="https://github.com/egoist/tsup/compare/v7.2.0...v8.4.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `vitest` from 2.1.9 to 3.0.9
<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>v3.0.9</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Typings of <code>ctx.skip()</code> as <code>never</code> - by <a
href="https://github.com/sirlancelot"><code>@sirlancelot</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7608">vitest-dev/vitest#7608</a>
<a href="https://github.com/vitest-dev/vitest/commit/09f35301"><!-- raw
HTML omitted -->(09f35)<!-- raw HTML omitted --></a></li>
<li>Cleanup vitest in public <code>resolveConfig</code> API - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7623">vitest-dev/vitest#7623</a>
<a href="https://github.com/vitest-dev/vitest/commit/db14ab71"><!-- raw
HTML omitted -->(db14a)<!-- raw HTML omitted --></a></li>
<li>Fix <code>toHaveBeenCalledWith(asymmetricMatcher)</code> with
<code>undefined</code> arguments - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7624">vitest-dev/vitest#7624</a>
<a href="https://github.com/vitest-dev/vitest/commit/0fb21faa"><!-- raw
HTML omitted -->(0fb21)<!-- raw HTML omitted --></a></li>
<li>Race condition in RPC filesystem cache. - by <a
href="https://github.com/dts"><code>@dts</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7531">vitest-dev/vitest#7531</a>
<a href="https://github.com/vitest-dev/vitest/commit/b7f55261"><!-- raw
HTML omitted -->(b7f55)<!-- raw HTML omitted --></a></li>
<li>Fix <code>getState().testPath</code> during collection with no
isolation - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7640">vitest-dev/vitest#7640</a>
<a href="https://github.com/vitest-dev/vitest/commit/3fb3fbf8"><!-- raw
HTML omitted -->(3fb3f)<!-- raw HTML omitted --></a></li>
<li>Support custom toString method in %s format - by <a
href="https://github.com/pengooseDev"><code>@pengooseDev</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7637">vitest-dev/vitest#7637</a>
<a href="https://github.com/vitest-dev/vitest/commit/46d93a2e"><!-- raw
HTML omitted -->(46d93)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Fail playwright timeouts earlier than a test timeout - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> and
<a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7565">vitest-dev/vitest#7565</a>
<a href="https://github.com/vitest-dev/vitest/commit/5eb4cd1f"><!-- raw
HTML omitted -->(5eb4c)<!-- raw HTML omitted --></a></li>
<li>Remove <code>@testing-library/dom</code> from dependencies <a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7555">#7555</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/7628">vitest-dev/vitest#7628</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7555">vitest-dev/vitest#7555</a>
<a href="https://github.com/vitest-dev/vitest/commit/94b27af5"><!-- raw
HTML omitted -->(94b27)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li>Browser mode + <code>coverage.all</code> - by <a
href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7597">vitest-dev/vitest#7597</a>
<a href="https://github.com/vitest-dev/vitest/commit/422ba66b"><!-- raw
HTML omitted -->(422ba)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Show stacktrace on hook timeout error - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7502">vitest-dev/vitest#7502</a>
<a href="https://github.com/vitest-dev/vitest/commit/268a19e1"><!-- raw
HTML omitted -->(268a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Fix source map of inlined node_modules - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7557">vitest-dev/vitest#7557</a>
<a href="https://github.com/vitest-dev/vitest/commit/34aa322b"><!-- raw
HTML omitted -->(34aa3)<!-- raw HTML omitted --></a></li>
<li>Fix missing <code>buildStart</code> - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7652">vitest-dev/vitest#7652</a>
<a href="https://github.com/vitest-dev/vitest/commit/29f5a848"><!-- raw
HTML omitted -->(29f5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>web-worker</strong>:
<ul>
<li>Ensure <code>removeEventListener</code> is bound to worker - by <a
href="https://github.com/joelgallant"><code>@joelgallant</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7631">vitest-dev/vitest#7631</a>
<a href="https://github.com/vitest-dev/vitest/commit/ff42bcb3"><!-- raw
HTML omitted -->(ff42b)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5> <a
href="https://github.com/vitest-dev/vitest/compare/v3.0.8...v3.0.9">View
changes on GitHub</a></h5>
<h2>v3.0.8</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Fix fetch cache multiple writes - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7546">vitest-dev/vitest#7546</a>
<a href="https://github.com/vitest-dev/vitest/commit/1a8b4337"><!-- raw
HTML omitted -->(1a8b4)<!-- raw HTML omitted --></a></li>
<li>Use browser.isolate instead of config.isolate - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7560">vitest-dev/vitest#7560</a>
<a href="https://github.com/vitest-dev/vitest/commit/4b5ed902"><!-- raw
HTML omitted -->(4b5ed)<!-- raw HTML omitted --></a></li>
<li>Remove vestigial spy stub, import directly from
<code>@vitest/spy</code> - by <a
href="https://github.com/mrginglymus"><code>@mrginglymus</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7575">vitest-dev/vitest#7575</a>
<a href="https://github.com/vitest-dev/vitest/commit/7f7ff11c"><!-- raw
HTML omitted -->(7f7ff)<!-- raw HTML omitted --></a></li>
<li>Correctly split the argv string - by <a
href="https://github.com/btea"><code>@btea</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7533">vitest-dev/vitest#7533</a>
<a href="https://github.com/vitest-dev/vitest/commit/4325ac67"><!-- raw
HTML omitted -->(4325a)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Remove <code>@testing-library/dom</code> from dependencies - by
<a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7555">vitest-dev/vitest#7555</a>
<a href="https://github.com/vitest-dev/vitest/commit/5387a5b3"><!-- raw
HTML omitted -->(5387a)<!-- raw HTML omitted --></a></li>
<li>Improve source map handling for bundled files - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7534">vitest-dev/vitest#7534</a>
<a href="https://github.com/vitest-dev/vitest/commit/e2c570b6"><!-- raw
HTML omitted -->(e2c57)<!-- raw HTML omitted --></a></li>
<li>Print related test file and potential test in unhandled errors -
by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7564">vitest-dev/vitest#7564</a>
<a href="https://github.com/vitest-dev/vitest/commit/fee90d85"><!-- raw
HTML omitted -->(fee90)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Fix <code>beforeEach/All</code> cleanup callback timeout - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7500">vitest-dev/vitest#7500</a>
<a href="https://github.com/vitest-dev/vitest/commit/0c2924b7"><!-- raw
HTML omitted -->(0c292)<!-- raw HTML omitted --></a></li>
<li>Fix and simplify <code>Task.suite</code> initialization - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7414">vitest-dev/vitest#7414</a>
<a href="https://github.com/vitest-dev/vitest/commit/ca9ffac5"><!-- raw
HTML omitted -->(ca9ff)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>snapshot</strong>:
<ul>
<li>Allow inline snapshot calls on same location with same snapshot -
by <a href="https://github.com/jycouet"><code>@jycouet</code></a> and
<a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7464">vitest-dev/vitest#7464</a>
<a href="https://github.com/vitest-dev/vitest/commit/d5cb8212"><!-- raw
HTML omitted -->(d5cb8)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>vite-node</strong>:
<ul>
<li>Fix <code>buildStart</code> on Vite 6 - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7480">vitest-dev/vitest#7480</a>
<a href="https://github.com/vitest-dev/vitest/commit/c0f47e03"><!-- raw
HTML omitted -->(c0f47)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5> <a
href="https://github.com/vitest-dev/vitest/compare/v3.0.7...v3.0.8">View
changes on GitHub</a></h5>
<h2>v3.0.7</h2>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>: Support webdriverio 9 - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/7553">vitest-dev/vitest#7553</a>
<a href="https://github.com/vitest-dev/vitest/commit/b1949c97"><!-- raw
HTML omitted -->(b1949)<!-- raw HTML omitted --></a></li>
<li><strong>deps</strong>: Update all non-major dependencies - in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/7543">vitest-dev/vitest#7543</a>
<a href="https://github.com/vitest-dev/vitest/commit/365ffe6b"><!-- raw
HTML omitted -->(365ff)<!-- 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/8ea9e147e1db2fa0e1671b9c1d453e3693a240ae"><code>8ea9e14</code></a>
chore: release v3.0.9</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/422ba66bfa018f3ef727ab7fe7d467e32954c044"><code>422ba66</code></a>
fix(coverage): browser mode + <code>coverage.all</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7597">#7597</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/3fdee3da8b281da7404ab78f11b4984ec493cd54"><code>3fdee3d</code></a>
chore: fix various typos (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7663">#7663</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/4b0451d9e5e669a7f7d33a07b40fd056b1071097"><code>4b0451d</code></a>
chore(deps): update dependency <code>@antfu/eslint-config</code> to v4
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7407">#7407</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/fcf3cf5d0af7005f5250b53511fa941fe41c4aa4"><code>fcf3cf5</code></a>
refactor: coverage types to avoid mixing node and runtime types (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7627">#7627</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/3fb3fbf858757445396c5dc00751437d4d14e5ff"><code>3fb3fbf</code></a>
fix: fix <code>getState().testPath</code> during collection with no
isolation (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7640">#7640</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/7155aefa363994f31923b32c5b53567164625737"><code>7155aef</code></a>
chore: use pnpm catalog (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7590">#7590</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/c0cf65f94ffb6c7a3c2759027f061cb643647f37"><code>c0cf65f</code></a>
chore: use <code>unplugin-isolated-decl</code> with
<code>oxc-transform</code> for dts build (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7609">#7609</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/5eb4cd1fa5ff089a99ddd0fd08e8e3de1c919432"><code>5eb4cd1</code></a>
fix(browser): fail playwright timeouts earlier than a test timeout (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7565">#7565</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/b7f552616381d0ae3258d47a5e8b6b19285712f0"><code>b7f5526</code></a>
fix: race condition in RPC filesystem cache. (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7531">#7531</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v3.0.9/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 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/replit/river/network/alerts).
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 14045c5 commit 6bf2184
2 files changed
+1597
-1663
lines changed
0 commit comments