Commit 07e668f
authored
build(deps): bump esbuild and vitest in /plugins/promptfoo (#15)
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.27.2 and updates
ancestor dependency
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).
These dependencies need to be updated together.
Updates `esbuild` from 0.21.5 to 0.27.2
<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.27.2</h2>
<ul>
<li>
<p>Allow import path specifiers starting with <code>#/</code> (<a
href="https://redirect.github.com/evanw/esbuild/pull/4361">#4361</a>)</p>
<p>Previously the specification for <code>package.json</code> disallowed
import path specifiers starting with <code>#/</code>, but this
restriction <a
href="https://redirect.github.com/nodejs/node/pull/60864">has recently
been relaxed</a> and support for it is being added across the JavaScript
ecosystem. One use case is using it for a wildcard pattern such as
mapping <code>#/*</code> to <code>./src/*</code> (previously you had to
use another character such as <code>#_*</code> instead, which was more
confusing). There is some more context in <a
href="https://redirect.github.com/nodejs/node/issues/49182">nodejs/node#49182</a>.</p>
<p>This change was contributed by <a
href="https://github.com/hybrist"><code>@hybrist</code></a>.</p>
</li>
<li>
<p>Automatically add the <code>-webkit-mask</code> prefix (<a
href="https://redirect.github.com/evanw/esbuild/issues/4357">#4357</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4358">#4358</a>)</p>
<p>This release automatically adds the <code>-webkit-</code> vendor
prefix for the <a
href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/mask"><code>mask</code></a>
CSS shorthand property:</p>
<pre lang="css"><code>/* Original code */
main {
mask: url(x.png) center/5rem no-repeat
}
<p>/* Old output (with --target=chrome110) */
main {
mask: url(x.png) center/5rem no-repeat;
}</p>
<p>/* New output (with --target=chrome110) */
main {
-webkit-mask: url(x.png) center/5rem no-repeat;
mask: url(x.png) center/5rem no-repeat;
}
</code></pre></p>
<p>This change was contributed by <a
href="https://github.com/BPJEnnova"><code>@BPJEnnova</code></a>.</p>
</li>
<li>
<p>Additional minification of <code>switch</code> statements (<a
href="https://redirect.github.com/evanw/esbuild/issues/4176">#4176</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4359">#4359</a>)</p>
<p>This release contains additional minification patterns for reducing
<code>switch</code> statements. Here is an example:</p>
<pre lang="js"><code>// Original code
switch (x) {
case 0:
foo()
break
case 1:
default:
bar()
}
<p>// Old output (with --minify)
switch(x){case 0:foo();break;case 1:default:bar()}</p>
<p>// New output (with --minify)
</code></pre></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-2024.md">esbuild's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog: 2024</h1>
<p>This changelog documents all esbuild versions published in the year
2024 (versions 0.19.12 through 0.24.2).</p>
<h2>0.24.2</h2>
<ul>
<li>
<p>Fix regression with <code>--define</code> and
<code>import.meta</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4010">#4010</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4012">#4012</a>,
<a
href="https://redirect.github.com/evanw/esbuild/pull/4013">#4013</a>)</p>
<p>The previous change in version 0.24.1 to use a more expression-like
parser for <code>define</code> values to allow quoted property names
introduced a regression that removed the ability to use
<code>--define:import.meta=...</code>. Even though <code>import</code>
is normally a keyword that can't be used as an identifier, ES modules
special-case the <code>import.meta</code> expression to behave like an
identifier anyway. This change fixes the regression.</p>
<p>This fix was contributed by <a
href="https://github.com/sapphi-red"><code>@sapphi-red</code></a>.</p>
</li>
</ul>
<h2>0.24.1</h2>
<ul>
<li>
<p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code>
(<a
href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p>
<p>TypeScript recently <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added
<code>es2024</code></a> as a compilation target, so esbuild now supports
this in the <code>target</code> field of <code>tsconfig.json</code>
files, such as in the following configuration file:</p>
<pre lang="json"><code>{
"compilerOptions": {
"target": "ES2024"
}
}
</code></pre>
<p>As a reminder, the only thing that esbuild uses this field for is
determining whether or not to use legacy TypeScript behavior for class
fields. You can read more in <a
href="https://esbuild.github.io/content-types/#tsconfig-json">the
documentation</a>.</p>
<p>This fix was contributed by <a
href="https://github.com/billyjanitsch"><code>@billyjanitsch</code></a>.</p>
</li>
<li>
<p>Allow automatic semicolon insertion after
<code>get</code>/<code>set</code></p>
<p>This change fixes a grammar bug in the parser that incorrectly
treated the following code as a syntax error:</p>
<pre lang="ts"><code>class Foo {
get
*x() {}
set
*y() {}
}
</code></pre>
<p>The above code will be considered valid starting with this release.
This change to esbuild follows a <a
href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar
change to TypeScript</a> which will allow this syntax starting with
TypeScript 5.7.</p>
</li>
<li>
<p>Allow quoted property names in <code>--define</code> and
<code>--pure</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p>
<p>The <code>define</code> and <code>pure</code> API options now accept
identifier expressions containing quoted property names. Previously all
identifiers in the identifier expression had to be bare identifiers.
This change now makes <code>--define</code> and <code>--pure</code>
consistent with <code>--global-name</code>, which already supported
quoted property names. For example, the following is now possible:</p>
<pre lang="js"><code></code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/cd832972927f1f67b6d2cc895c06a8759c1cf309"><code>cd83297</code></a>
publish 0.27.2 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/275972174750a04391ce5518514e57519bb8f55a"><code>2759721</code></a>
additional tests for <code>switch</code> with <code>break</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/fd2b4b36cf7c54be5841a41f8737af058e88e93c"><code>fd2b4b3</code></a>
update release notes</li>
<li><a
href="https://github.com/evanw/esbuild/commit/c8d93a7081e0e581b04e861674a8b2fec089fe74"><code>c8d93a7</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4357">#4357</a>:
-webkit- prefix for mask shorthand (<a
href="https://redirect.github.com/evanw/esbuild/issues/4358">#4358</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/92ff12c2e8a44210178bbdb19d403e918cff2e38"><code>92ff12c</code></a>
compat table: update <code>@types/node</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/a35eceb40ff67d2b599555a15b75bc2298b590a6"><code>a35eceb</code></a>
compat table: fix a type error with the new types</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f5989842e91920aee7a013ec021b996ee0e37210"><code>f598984</code></a>
fix <code>make compat-table</code> to install dependencies</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f7f6df011a69b06f6fe612edf77528307345c4d8"><code>f7f6df0</code></a>
release notes for <a
href="https://redirect.github.com/evanw/esbuild/issues/4361">#4361</a></li>
<li><a
href="https://github.com/evanw/esbuild/commit/6f8ec15b15e70ff29a1966bf7b3bd24f8d6a0f5a"><code>6f8ec15</code></a>
fix: allow subpath imports that start with <code>#/</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4361">#4361</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/f7ae61f6b2a77dc2fc3229a6bb21fb44c3fb8f5b"><code>f7ae61f</code></a>
minify some switch statements to if-else statement</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.21.5...v0.27.2">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 esbuild since your current version.</p>
</details>
<br />
Updates `vitest` from 2.1.9 to 4.0.18
<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.18</h2>
<h3> 🚀 Experimental Features</h3>
<ul>
<li><strong>experimental</strong>: Add <code>onModuleRunner</code> hook
to <code>worker.init</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/9286">vitest-dev/vitest#9286</a>
<a href="https://github.com/vitest-dev/vitest/commit/ea837de7d"><!-- raw
HTML omitted -->(ea837)<!-- raw HTML omitted --></a></li>
</ul>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Use <code>meta.url</code> in <code>createRequire</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/9441">vitest-dev/vitest#9441</a>
<a href="https://github.com/vitest-dev/vitest/commit/e057281ca"><!-- raw
HTML omitted -->(e0572)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>: Hide injected data-testid attributes -
by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9503">vitest-dev/vitest#9503</a>
<a href="https://github.com/vitest-dev/vitest/commit/f89899cd8"><!-- raw
HTML omitted -->(f8989)<!-- raw HTML omitted --></a></li>
<li><strong>ui</strong>: Process artifact attachments when generating
HTML reporter - by <a
href="https://github.com/macarie"><code>@macarie</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9472">vitest-dev/vitest#9472</a>
<a href="https://github.com/vitest-dev/vitest/commit/225435647"><!-- raw
HTML omitted -->(22543)<!-- raw HTML omitted --></a></li>
</ul>
<h5> <a
href="https://github.com/vitest-dev/vitest/compare/v4.0.17...v4.0.18">View
changes on GitHub</a></h5>
<h2>v4.0.17</h2>
<h3> 🚀 Experimental Features</h3>
<ul>
<li>Support openTelemetry for browser mode - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9180">vitest-dev/vitest#9180</a>
<a href="https://github.com/vitest-dev/vitest/commit/1ec3a8b68"><!-- raw
HTML omitted -->(1ec3a)<!-- raw HTML omitted --></a></li>
<li>Support TRACEPARENT and TRACESTATE environment variables for
OpenTelemetry context propagation - by <a
href="https://github.com/Copilot"><code>@Copilot</code></a>,
<strong>hi-ogawa</strong> and <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9295">vitest-dev/vitest#9295</a>
<a href="https://github.com/vitest-dev/vitest/commit/876cb84c2"><!-- raw
HTML omitted -->(876cb)<!-- raw HTML omitted --></a></li>
</ul>
<h3> 🐞 Bug Fixes</h3>
<ul>
<li>Improve asymmetric matcher diff readability by unwrapping container
matchers - by <a
href="https://github.com/Copilot"><code>@Copilot</code></a>,
<strong>sheremet-va</strong>, <strong>hi-ogawa</strong> and <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9330">vitest-dev/vitest#9330</a>
<a href="https://github.com/vitest-dev/vitest/commit/b2ec724a8"><!-- raw
HTML omitted -->(b2ec7)<!-- raw HTML omitted --></a></li>
<li>Improve runner error when importing outside of test context - by
<a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9335">vitest-dev/vitest#9335</a>
<a href="https://github.com/vitest-dev/vitest/commit/2dd3dd839"><!-- raw
HTML omitted -->(2dd3d)<!-- raw HTML omitted --></a></li>
<li>Replace crypto.randomUUID to allow insecure environments (fix <a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9">#9</a>…
- by <a href="https://github.com/plusgut"><code>@plusgut</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9339">vitest-dev/vitest#9339</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9">vitest-dev/vitest#9</a>
<a href="https://github.com/vitest-dev/vitest/commit/e6a3f8cc7"><!-- raw
HTML omitted -->(e6a3f)<!-- raw HTML omitted --></a></li>
<li>Handle null options in <code>addEventHandler</code> <a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9371">#9371</a>
- by <a
href="https://github.com/ThibautMarechal"><code>@ThibautMarechal</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9372">vitest-dev/vitest#9372</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9371">vitest-dev/vitest#9371</a>
<a href="https://github.com/vitest-dev/vitest/commit/40841ff00"><!-- raw
HTML omitted -->(40841)<!-- raw HTML omitted --></a></li>
<li>Typo in browser.provider error - by <a
href="https://github.com/deammer"><code>@deammer</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9394">vitest-dev/vitest#9394</a>
<a href="https://github.com/vitest-dev/vitest/commit/4b67fc25a"><!-- raw
HTML omitted -->(4b67f)<!-- raw HTML omitted --></a></li>
<li><strong>browser</strong>:
<ul>
<li>Fix <code>process.env</code> and <code>import.meta.env</code>
defines in inline project - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9239">vitest-dev/vitest#9239</a>
<a href="https://github.com/vitest-dev/vitest/commit/b70c96121"><!-- raw
HTML omitted -->(b70c9)<!-- raw HTML omitted --></a></li>
<li>Fix upload File instance - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9294">vitest-dev/vitest#9294</a>
<a href="https://github.com/vitest-dev/vitest/commit/b67788c69"><!-- raw
HTML omitted -->(b6778)<!-- raw HTML omitted --></a></li>
<li>Fix invalid project token for artifacts assets - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9321">vitest-dev/vitest#9321</a>
<a href="https://github.com/vitest-dev/vitest/commit/caa7d73d4"><!-- raw
HTML omitted -->(caa7d)<!-- raw HTML omitted --></a></li>
<li>Log <code>ErrorEvent.message</code> when unhandled
<code>ErrorEvent.error</code> is null - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9322">vitest-dev/vitest#9322</a>
<a href="https://github.com/vitest-dev/vitest/commit/5d84eeb91"><!-- raw
HTML omitted -->(5d84e)<!-- raw HTML omitted --></a></li>
<li>Support <code>fileParallelism</code> on an instance - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9328">vitest-dev/vitest#9328</a>
<a href="https://github.com/vitest-dev/vitest/commit/150065459"><!-- raw
HTML omitted -->(15006)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>coverage</strong>:
<ul>
<li>Remove unnecessary <code>istanbul-lib-source-maps</code> usage -
by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9344">vitest-dev/vitest#9344</a>
<a href="https://github.com/vitest-dev/vitest/commit/b09405375"><!-- raw
HTML omitted -->(b0940)<!-- raw HTML omitted --></a></li>
<li>Apply patch from <a
href="https://redirect.github.com/istanbuljs/istanbuljs/issues/837">istanbuljs/istanbuljs#837</a>
- by <a
href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> and
<strong>sapphi-red</strong> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9413">vitest-dev/vitest#9413</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/837">vitest-dev/vitest#837</a>
<a href="https://github.com/vitest-dev/vitest/commit/e05cedbf4"><!-- raw
HTML omitted -->(e05ce)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>fsModuleCache</strong>:
<ul>
<li>Don't store importers in cache - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9422">vitest-dev/vitest#9422</a>
<a href="https://github.com/vitest-dev/vitest/commit/751364eec"><!-- raw
HTML omitted -->(75136)<!-- raw HTML omitted --></a></li>
<li>Add importers alongside importedModules - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9423">vitest-dev/vitest#9423</a>
<a href="https://github.com/vitest-dev/vitest/commit/59f92d403"><!-- raw
HTML omitted -->(59f92)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>mocker</strong>:
<ul>
<li>Fix mock transform with class - by <a
href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9421">vitest-dev/vitest#9421</a>
<a href="https://github.com/vitest-dev/vitest/commit/d390eb527"><!-- raw
HTML omitted -->(d390e)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>pool</strong>:
<ul>
<li>Validate environment options when reusing the worker - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9349">vitest-dev/vitest#9349</a>
<a href="https://github.com/vitest-dev/vitest/commit/a8a8836e3"><!-- raw
HTML omitted -->(a8a88)<!-- raw HTML omitted --></a></li>
<li>Handle worker start failures gracefully - by <a
href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9337">vitest-dev/vitest#9337</a>
<a href="https://github.com/vitest-dev/vitest/commit/200dadb32"><!-- raw
HTML omitted -->(200da)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>reporter</strong>:
<ul>
<li>Report test module if it failed to run - by <a
href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/9272">vitest-dev/vitest#9272</a>
<a href="https://github.com/vitest-dev/vitest/commit/c78882985"><!-- raw
HTML omitted -->(c7888)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>runner</strong>:
<ul>
<li>Respect nested test.only within describe.only - by <a
href="https://github.com/Ujjwaljain16"><code>@Ujjwaljain16</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9021">vitest-dev/vitest#9021</a>
and <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9213">vitest-dev/vitest#9213</a>
<a href="https://github.com/vitest-dev/vitest/commit/55d5dad69"><!-- raw
HTML omitted -->(55d5d)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>typecheck</strong>:
<ul>
<li>Improve error message when tsc outputs help text - by <a
href="https://github.com/Ujjwaljain16"><code>@Ujjwaljain16</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/9214">vitest-dev/vitest#9214</a>
<a href="https://github.com/vitest-dev/vitest/commit/7b10ab4cd"><!-- raw
HTML omitted -->(7b10a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>ui</strong>:</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/4d3e3c61b9b237447699deab9aca0eb9d6039978"><code>4d3e3c6</code></a>
chore: release v4.0.18</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/ea837de7d75780a67af437331d8d689cdcfe291e"><code>ea837de</code></a>
feat(experimental): add <code>onModuleRunner</code> hook to
<code>worker.init</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9286">#9286</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/e057281ca5ea282cf0b0d37b7b51f182397fc370"><code>e057281</code></a>
fix: use <code>meta.url</code> in <code>createRequire</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9441">#9441</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/dd54e944ec0d7b2730933341f3b940e92b186fb6"><code>dd54e94</code></a>
chore: release v4.0.17</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/59f92d403bf97b3145911aaeffbae36b465284c7"><code>59f92d4</code></a>
fix(fsModuleCache): add importers alongside importedModules (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9423">#9423</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/751364eec8e7a5e9d205146e44f1ed06d7afc57c"><code>751364e</code></a>
fix(fsModuleCache): don't store importers in cache (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9422">#9422</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/4b67fc25a8f221c536a499bd3f3e802115eadc5d"><code>4b67fc2</code></a>
fix: typo in browser.provider error (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9394">#9394</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/40841ff005cf518064b4611b34a6ca86303ac645"><code>40841ff</code></a>
fix: handle null options in <code>addEventHandler</code> <a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9371">#9371</a>
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9372">#9372</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/200dadb328a5e71f0805ee05e24f11af23ecf2db"><code>200dadb</code></a>
fix(pool): handle worker start failures gracefully (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9337">#9337</a>)</li>
<li><a
href="https://github.com/vitest-dev/vitest/commit/150065459b96a5ed3b9f07ab3001596492032183"><code>1500654</code></a>
fix(browser): support <code>fileParallelism</code> on an instance (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/9328">#9328</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/vitest">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 vitest since your current version.</p>
</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/promptfoo/crabcode/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 953c2a4 commit 07e668f
2 files changed
Lines changed: 372 additions & 328 deletions
0 commit comments