dependabot[bot] opened a new pull request, #47525:
URL: https://github.com/apache/airflow/pull/47525

   Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.0 and updates 
ancestor dependencies [esbuild](https://github.com/evanw/esbuild), 
[vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and 
[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.25.0
   <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.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>
   <li>
   <p>Fix correctness issues with the CSS nesting transform (<a 
href="https://redirect.github.com/evanw/esbuild/issues/3620";>#3620</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/3877";>#3877</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/3933";>#3933</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/3997";>#3997</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4005";>#4005</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4037";>#4037</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4038";>#4038</a>)</p>
   <p>This release fixes the following problems:</p>
   <ul>
   <li>
   <p>Naive expansion of CSS nesting can result in an exponential blow-up of 
generated CSS if each nesting level has multiple selectors. Previously esbuild 
sometimes collapsed individual nesting levels using <code>:is()</code> to limit 
expansion. However, this collapsing wasn't correct in some cases, so it has 
been removed to fix correctness issues.</p>
   <pre lang="css"><code>/* Original code */
   .parent {
     &gt; .a,
     &gt; .b1 &gt; .b2 {
       color: red;
     }
   }
   <p>/* Old output (with --supported:nesting=false) */<br />
   .parent &gt; :is(.a, .b1 &gt; .b2) {<br />
   color: red;<br />
   }</p>
   <p>/* New output (with --supported:nesting=false) */<br />
   .parent &gt; .a,<br />
   .parent &gt; .b1 &gt; .b2 {<br />
   color: red;<br />
   }<br />
   </code></pre></p>
   <p>Thanks to <a href="https://github.com/tim-we";><code>@​tim-we</code></a> 
for working on a fix.</p>
   </li>
   <li>
   <p>The <code>&amp;</code> CSS nesting selector can be repeated multiple 
times to increase CSS specificity. Previously esbuild ignored this possibility 
and incorrectly considered <code>&amp;&amp;</code> to have the same specificity 
as <code>&amp;</code>. With this release, this should now work correctly:</p>
   <pre lang="css"><code>/* Original code (color should be red) */
   </code></pre>
   </li>
   </ul>
   </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>{
     &quot;compilerOptions&quot;: {
       &quot;target&quot;: &quot;ES2024&quot;
     }
   }
   </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/e9174d671b1882758cd32ac5e146200f5bee3e45";><code>e9174d6</code></a>
 publish 0.25.0 to npm</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/c27dbebb9e7a55dd9a084dd151dddd840787490e";><code>c27dbeb</code></a>
 fix <code>hosts</code> in <code>plugin-tests.js</code></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/6794f602a453cf0255bcae245871de120a89a559";><code>6794f60</code></a>
 fix <code>hosts</code> in <code>node-unref-tests.js</code></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/de85afd65edec9ebc44a11e245fd9e9a2e99760d";><code>de85afd</code></a>
 Merge commit from fork</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/da1de1bf77a65f06654b49878d9ec4747ddaa21f";><code>da1de1b</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4065";>#4065</a>: 
bitwise operators can return bigints</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/f4e9d19fb20095a98bf40634f0380f6a16be91e7";><code>f4e9d19</code></a>
 switch case liveness: <code>default</code> is always last</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/7aa47c3e778ea04849f97f18dd9959df88fa0886";><code>7aa47c3</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4028";>#4028</a>: 
minify live/dead <code>switch</code> cases better</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/22ecd306190b8971ec4474b5485266c20350e266";><code>22ecd30</code></a>
 minify: more constant folding for strict equality</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/4cdf03c03697128044fa8fb76e5c478e9765b353";><code>4cdf03c</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4053";>#4053</a>: 
reordering of <code>.tsx</code> in <code>node_modules</code></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/dc719775b7140120916bd9e6777ca1cb8a1cdc0e";><code>dc71977</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/3692";>#3692</a>: 
<code>0</code> now picks a random ephemeral port</li>
   <li>Additional commits viewable in <a 
href="https://github.com/evanw/esbuild/compare/v0.21.5...v0.25.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `vite` from 5.4.14 to 6.2.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases";>vite's 
releases</a>.</em></p>
   <blockquote>
   <h2>[email protected]</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/[email protected]/packages/create-vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.2.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.2.1/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>[email protected]</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/[email protected]/packages/create-vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.2.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.2.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.2.0-beta.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.2.0-beta.1/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.2.0-beta.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.2.0-beta.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>[email protected]</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/[email protected]/packages/create-vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.1.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.1.1/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>[email protected]</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/[email protected]/packages/create-vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.1.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.1.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.1.0-beta.2</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.2/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.1.0-beta.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.1/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.1.0-beta.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.1.0-beta.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.0.11</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.0.11/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.0.10</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.0.10/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v6.0.9</h2>
   <p>This version contains a breaking change due to security fixes. See <a 
href="https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6";>https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6</a>
 for more details.</p>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v6.0.9/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md";>vite's
 changelog</a>.</em></p>
   <blockquote>
   <h2><!-- raw HTML omitted -->6.2.1 (2025-03-07)<!-- raw HTML omitted --></h2>
   <ul>
   <li>refactor: remove <code>isBuild</code> check from preAliasPlugin (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19587";>#19587</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c9e086d35ac35ee1c6d85d48369e8a67a2ba6bfe";>c9e086d</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19587";>#19587</a></li>
   <li>refactor: restore endsWith usage (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19554";>#19554</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/6113a9670cc9b7d29fe0bffe033f7823e36ded00";>6113a96</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19554";>#19554</a></li>
   <li>refactor: use <code>applyToEnvironment</code> in internal plugins (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19588";>#19588</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/f678442d5701a00648a745956f9d884247e4e710";>f678442</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19588";>#19588</a></li>
   <li>fix(css): stabilize css module hashes with lightningcss in dev mode (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19481";>#19481</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/92125b41e4caa3e862bf5fd9b1941546f25d9bf2";>92125b4</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19481";>#19481</a></li>
   <li>fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19555";>#19555</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/f612e0fdf6810317b61fcca1ded125755f261d78";>f612e0f</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19555";>#19555</a></li>
   <li>fix(reporter): fix incorrect bundle size calculation with non-ASCII 
characters (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19561";>#19561</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/437c0ed8baa6739bbe944779b9e7515f9035046a";>437c0ed</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19561";>#19561</a></li>
   <li>fix(sourcemap): combine sourcemaps with multiple sources without matched 
source (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18971";>#18971</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/e3f6ae14f7a93118d7341de7379967f815725c4b";>e3f6ae1</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/18971";>#18971</a></li>
   <li>fix(ssr): named export should overwrite export all (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19534";>#19534</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/2fd2fc110738622651d361488767734cc23c34dd";>2fd2fc1</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19534";>#19534</a></li>
   <li>feat: add <code>*?url&amp;no-inline</code> type and warning for 
<code>.json?inline</code> / <code>.json?no-inline</code> (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19566";>#19566</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c0d36677cd305e8fa89153ed6305f0e0df43d289";>c0d3667</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19566";>#19566</a></li>
   <li>test: add glob import test case (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19516";>#19516</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/aa1d8075cc7ce7fbba62fea9e37ccb9b304fc039";>aa1d807</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19516";>#19516</a></li>
   <li>test: convert config playground to unit tests (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19568";>#19568</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c0e68da4774f3487e9ba0c4d4d2c5e76bdc890ea";>c0e68da</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19568";>#19568</a></li>
   <li>test: convert resolve-config playground to unit tests (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19567";>#19567</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/db5fb48f5d4c1ee411e59c1e9b70d62fdb9d53d2";>db5fb48</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19567";>#19567</a></li>
   <li>perf: flush compile cache after 10s (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19537";>#19537</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/6c8a5a27e645a182f5b03a4ed6aa726eab85993f";>6c8a5a2</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19537";>#19537</a></li>
   <li>chore(css): move environment destructuring after condition check (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19492";>#19492</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c9eda2348c244d591d23f131c6ddf262b256cbf0";>c9eda23</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19492";>#19492</a></li>
   <li>chore(html): remove unnecessary value check (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19491";>#19491</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/797959f01da583b85a0be1dc89f762fd01d138db";>797959f</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19491";>#19491</a></li>
   </ul>
   <h2>6.2.0 (2025-02-25)</h2>
   <ul>
   <li>fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19501";>#19501</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c94c9e052127cf4796374de1d698ec60b2973dfa";>c94c9e0</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19501";>#19501</a></li>
   <li>fix(worker): string interpolation in dynamic worker options (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19476";>#19476</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/07091a1e804e5934208ef0b6324a04317dd0d815";>07091a1</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19476";>#19476</a></li>
   <li>chore: use unicode cross icon instead of x (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19497";>#19497</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/5c70296ffb22fe5a0f4039835aa14feb096b4a97";>5c70296</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19497";>#19497</a></li>
   </ul>
   <h2>6.2.0-beta.1 (2025-02-21)</h2>
   <ul>
   <li>fix(css): temporary add <code>?.</code> after 
<code>this.getModuleInfo</code> in <code>vite:css-post</code> (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19478";>#19478</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/12b0b8a953ad7d08ba0540cb4f5cb26a7fa69da2";>12b0b8a</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19478";>#19478</a></li>
   </ul>
   <h2>6.2.0-beta.0 (2025-02-21)</h2>
   <ul>
   <li>feat: show <code>mode</code> on server start and add env debugger (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18808";>#18808</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/c575b825596ccaedfac1cfecbb9a464e5e584a60";>c575b82</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/18808";>#18808</a></li>
   <li>feat: use host url to open browser (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19414";>#19414</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/f6926caa1f2c9433ca544172378412795722d8e1";>f6926ca</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19414";>#19414</a></li>
   <li>feat(css): allow scoping css to importers exports (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19418";>#19418</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/3ebd83833f723dde64098bc617c61b37adb3ad01";>3ebd838</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19418";>#19418</a></li>
   <li>chore: bump esbuild to 0.25.0 (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19389";>#19389</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/73987f22ec3f2df0d36154f1766ca7a7dc4c2460";>73987f2</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19389";>#19389</a></li>
   </ul>
   <h2><!-- raw HTML omitted -->6.1.1 (2025-02-19)<!-- raw HTML omitted --></h2>
   <ul>
   <li>fix: ensure <code>.[cm]?[tj]sx?</code> static assets are JS mime (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19453";>#19453</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/e7ba55e7d57ad97ab43682b152159e29fa4b3753";>e7ba55e</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19453";>#19453</a></li>
   <li>fix: ignore <code>*.ipv4</code> address in cert (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19416";>#19416</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/973283bf84c3dca42e2e20a9f9b8761011878b8b";>973283b</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19416";>#19416</a></li>
   <li>fix(css): run rewrite plugin if postcss plugin exists (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19371";>#19371</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/bcdb51a1ac082f4e8ed6f820787d6745dfaa972d";>bcdb51a</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19371";>#19371</a></li>
   <li>fix(deps): bump tsconfck (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19375";>#19375</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/746a583d42592a31e1e8e80cc790a7c9e6acf58e";>746a583</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19375";>#19375</a></li>
   <li>fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19392";>#19392</a>)
 (<a 
href="https://github.com/vitejs/vite/commit/60456a54fe90872dbd4bed332ecbd85bc88deb92";>60456a5</a>),
 closes <a 
href="https://redirect.github.com/vitejs/vite/issues/19392";>#19392</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/vitejs/vite/commit/d8461b5b4f2884105bab2175b86af4aac521cb5c";><code>d8461b5</code></a>
 release: v6.2.0</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/c94c9e052127cf4796374de1d698ec60b2973dfa";><code>c94c9e0</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19501";>#19501</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/5c70296ffb22fe5a0f4039835aa14feb096b4a97";><code>5c70296</code></a>
 chore: use unicode cross icon instead of x (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19497";>#19497</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/07091a1e804e5934208ef0b6324a04317dd0d815";><code>07091a1</code></a>
 fix(worker): string interpolation in dynamic worker options (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19476";>#19476</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/e01573a5757420041530d47f707c720da5fe2231";><code>e01573a</code></a>
 release: v6.2.0-beta.1</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/12b0b8a953ad7d08ba0540cb4f5cb26a7fa69da2";><code>12b0b8a</code></a>
 fix(css): temporary add <code>?.</code> after <code>this.getModuleInfo</code> 
in <code>vite:css-post</code> (#...</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/d686252c1d86527759a07eb0aae9f3aea505e3fa";><code>d686252</code></a>
 release: v6.2.0-beta.0</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/3ebd83833f723dde64098bc617c61b37adb3ad01";><code>3ebd838</code></a>
 feat(css): allow scoping css to importers exports (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19418";>#19418</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/f6926caa1f2c9433ca544172378412795722d8e1";><code>f6926ca</code></a>
 feat: use host url to open browser (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19414";>#19414</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/c575b825596ccaedfac1cfecbb9a464e5e584a60";><code>c575b82</code></a>
 feat: show <code>mode</code> on server start and add env debugger (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18808";>#18808</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/vitejs/vite/commits/[email protected]/packages/vite";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `vitest` from 2.1.9 to 3.0.8
   <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.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>
   <li><strong>expect</strong>: Correct generic MatchersObject this type in 
expect.extend  -  by <a 
href="https://github.com/Workingstiff-s";><code>@​Workingstiff-s</code></a> in 
<a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7526";>vitest-dev/vitest#7526</a>
 <a href="https://github.com/vitest-dev/vitest/commit/d5765f71";><!-- raw HTML 
omitted -->(d5765)<!-- raw HTML omitted --></a></li>
   <li><strong>mocker</strong>: Include more modules to prefix-only module list 
 -  by <a href="https://github.com/btea";><code>@​btea</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7524";>vitest-dev/vitest#7524</a>
 <a href="https://github.com/vitest-dev/vitest/commit/a12ec008";><!-- raw HTML 
omitted -->(a12ec)<!-- raw HTML omitted --></a></li>
   <li><strong>spy</strong>: Clear/reset/restore mocks in stack order  -  by <a 
href="https://github.com/hi-ogawa";><code>@​hi-ogawa</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7499";>vitest-dev/vitest#7499</a>
 <a href="https://github.com/vitest-dev/vitest/commit/f71004ff";><!-- raw HTML 
omitted -->(f7100)<!-- raw HTML omitted --></a></li>
   </ul>
   <h3>   🏎 Performance</h3>
   <ul>
   <li><strong>browser</strong>: Do wdio context switching only once per file  
-  by <a href="https://github.com/sheremet-va";><code>@​sheremet-va</code></a> 
in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7549";>vitest-dev/vitest#7549</a>
 <a href="https://github.com/vitest-dev/vitest/commit/aaa58556";><!-- raw HTML 
omitted -->(aaa58)<!-- raw HTML omitted --></a></li>
   </ul>
   <h5>    <a 
href="https://github.com/vitest-dev/vitest/compare/v3.0.6...v3.0.7";>View 
changes on GitHub</a></h5>
   <h2>v3.0.6</h2>
   <h3>   🐞 Bug Fixes</h3>
   <ul>
   <li>Fix <code>getMockedSystemTime</code> for <code>useFakeTimer</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/7405";>vitest-dev/vitest#7405</a>
 <a href="https://github.com/vitest-dev/vitest/commit/03912b43";><!-- raw HTML 
omitted -->(03912)<!-- raw HTML omitted --></a></li>
   <li>Compat for jest-image-snapshot  -  by <a 
href="https://github.com/hi-ogawa";><code>@​hi-ogawa</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7390";>vitest-dev/vitest#7390</a>
 <a href="https://github.com/vitest-dev/vitest/commit/9542b699";><!-- raw HTML 
omitted -->(9542b)<!-- raw HTML omitted --></a></li>
   <li>Ensure project names are readable in dark terminals  -  by <a 
href="https://github.com/rgrove";><code>@​rgrove</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7371";>vitest-dev/vitest#7371</a>
 <a href="https://github.com/vitest-dev/vitest/commit/bb94c19f";><!-- raw HTML 
omitted -->(bb94c)<!-- raw HTML omitted --></a></li>
   <li>Exclude <code>queueMicrotask</code> from default fake timers to not 
break node fetch  -  by <a 
href="https://github.com/hi-ogawa";><code>@​hi-ogawa</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/pull/7505";>vitest-dev/vitest#7505</a>
 <a href="https://github.com/vitest-dev/vitest/commit/167a98d7";><!-- raw HTML 
omitted -->(167a9)<!-- raw HTML omitted --></a></li>
   <li>Use <code>tinyglobby</code> instead of <code>fast-glob</code>  -  by <a 
href="https://github.com/benmccann";><code>@​benmccann</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7504";>vitest-dev/vitest#7504</a>
 <a href="https://github.com/vitest-dev/vitest/commit/b62ac22";><!-- raw HTML 
omitted -->(b62ac)<!-- raw HTML omitted --></a></li>
   <li><strong>browser</strong>:
   <ul>
   <li>Fix mocking modules out of root  -  by <a 
href="https://github.com/hi-ogawa";><code>@​hi-ogawa</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7415";>vitest-dev/vitest#7415</a>
 <a href="https://github.com/vitest-dev/vitest/commit/d3acbd8b";><!-- raw HTML 
omitted -->(d3acb)<!-- raw HTML omitted --></a></li>
   <li>Fix <code>toHaveClass</code> typing  -  by <a 
href="https://github.com/hi-ogawa";><code>@​hi-ogawa</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7383";>vitest-dev/vitest#7383</a>
 <a href="https://github.com/vitest-dev/vitest/commit/7ef238c0";><!-- raw HTML 
omitted -->(7ef23)<!-- raw HTML omitted --></a></li>
   <li>Relax locator selectors methods  -  by <a 
href="https://github.com/sheremet-va";><code>@​sheremet-va</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7422";>vitest-dev/vitest#7422</a>
 <a href="https://github.com/vitest-dev/vitest/commit/1b8c5c9e";><!-- raw HTML 
omitted -->(1b8c5)<!-- raw HTML omitted --></a></li>
   <li>Resolve thread count from <code>maxWorkers</code>  -  by <a 
href="https://github.com/AriPerkkio";><code>@​AriPerkkio</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7483";>vitest-dev/vitest#7483</a>
 <a href="https://github.com/vitest-dev/vitest/commit/adbb25ab";><!-- raw HTML 
omitted -->(adbb2)<!-- raw HTML omitted --></a></li>
   <li>Cleanup timeout on resolve and give more information in the error  -  by 
<a href="https://github.com/sheremet-va";><code>@​sheremet-va</code></a> in <a 
href="https://redirect.github.com/vitest-dev/vitest/issues/7487";>vitest-dev/vitest#7487</a>
 <a href="https://github.com/vitest-dev/vitest/commit/5a45a7ca";><!-- raw HTML 
omitted -->(5a45a)<!-- raw HTML omitted --></a></li>
   </ul>
   </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/814d5df54e29cf882701b2a8a85187974cf940a7";><code>814d5df</code></a>
 chore: release v3.0.8</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/57c3234c63b2df0f15f60239d5f609e9858c9a41";><code>57c3234</code></a>
 chore: remove hijackVitePluginInject (<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7613";>#7613</a>)</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/1a88b1bb305f3625b8e626c77ca82262400d1281";><code>1a88b1b</code></a>
 chore(deps): update dependency strip-literal to v3 (<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7601";>#7601</a>)</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/4325ac67937603a13302d0ac672a5a2ac52e4c72";><code>4325ac6</code></a>
 fix: correctly split the argv string (<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7533";>#7533</a>)</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/7f7ff11c6c40a4c6793c3597f4a5a79d9795f4a4";><code>7f7ff11</code></a>
 fix: remove vestigial spy stub, import directly from <code>@vitest/spy</code> 
(<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7575";>#7575</a>)</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/fee90d855b046786418c666354425d8649bc8b76";><code>fee90d8</code></a>
 fix(browser): print related test file and potential test in unhandled errors 
...</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/1a8b4337e3e6981f358b119dddca2108ae08e180";><code>1a8b433</code></a>
 fix: fix fetch cache multiple writes (<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7546";>#7546</a>)</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/vitest/issues/7543";>#7543</a>)</li>
   <li><a 
href="https://github.com/vitest-dev/vitest/commit/aaa58556e6d6794726c3cc359a3242fc788c3ebf";><code>aaa5855</code></a>
 perf(browser): do wdio context switching only once per file (<a 
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7549";>#7549</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/vitest-dev/vitest/commits/v3.0.8/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/apache/airflow/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to