dependabot[bot] opened a new pull request, #8981: URL: https://github.com/apache/seatunnel/pull/8981
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue), [@vitejs/plugin-vue-jsx](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite), [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/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.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-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/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.21.5...v0.25.1">compare view</a></li> </ul> </details> <br /> Updates `@vitejs/plugin-vue` from 5.1.4 to 5.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-vue/releases"><code>@vitejs/plugin-vue</code>'s releases</a>.</em></p> <blockquote> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md"><code>@vitejs/plugin-vue</code>'s changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.2.1 (2024-11-26)<!-- raw HTML omitted --></h2> <ul> <li>chore: add vite 6 peer dep (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/481">#481</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/4288652">4288652</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/481">#481</a></li> <li>chore: fix lint (<a href="https://github.com/vitejs/vite-plugin-vue/commit/378aea3">378aea3</a>)</li> <li>chore(deps): update dependency rollup to ^4.27.2 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/476">#476</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/b2df95e">b2df95e</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/476">#476</a></li> </ul> <h2>5.2.0 (2024-11-13)</h2> <ul> <li>feat: add a feature option to support custom component id generator (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/461">#461</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/7a1fc4c">7a1fc4c</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/461">#461</a></li> </ul> <h2><!-- raw HTML omitted -->5.1.5 (2024-11-11)<!-- raw HTML omitted --></h2> <ul> <li>chore: fix typo (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/464">#464</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/4a811b0">4a811b0</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/464">#464</a></li> <li>chore(deps): update dependency rollup to ^4.24.0 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/448">#448</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/0fc9cd0">0fc9cd0</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/448">#448</a></li> <li>chore(deps): update dependency rollup to ^4.25.0 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/472">#472</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/91210cc">91210cc</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/472">#472</a></li> <li>chore(deps): update upstream (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/462">#462</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/5625fc9">5625fc9</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/462">#462</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/439">#439</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/e432bcb">e432bcb</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/439">#439</a></li> <li>fix(hmr): re-resolve script after type dep changed (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/446">#446</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/8f9c624">8f9c624</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/446">#446</a></li> <li>fix(hmr): should reload if relies file changed after re-render (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/471">#471</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/62b17f3">62b17f3</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/471">#471</a></li> <li>perf: use <code>hash</code> to replace <code>createHash</code> (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/460">#460</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/de88394">de88394</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/460">#460</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/d156ad76822a9cbabaab8ad50eab5c330b1a60e4"><code>d156ad7</code></a> release: [email protected]</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/4288652649ab19161420aff458fc14c677031d35"><code>4288652</code></a> chore: add vite 6 peer dep (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/481">#481</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/b2df95ef4876089500543492c3bf74e3c61dfee3"><code>b2df95e</code></a> chore(deps): update dependency rollup to ^4.27.2 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/476">#476</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/378aea3c8c1161353bf7e615ec61ca9a1388e244"><code>378aea3</code></a> chore: fix lint</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/7edc3d9d1a0d00acfb068456fb731b276219ac7b"><code>7edc3d9</code></a> release: [email protected]</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/7a1fc4c3a5e45d7c492b58b8eb2631aa9307051c"><code>7a1fc4c</code></a> feat: add a feature option to support custom component id generator (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/461">#461</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/7d081cc139d718d7bc23051d9a61deb2a1a82344"><code>7d081cc</code></a> release: [email protected]</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/91210cc69c5b148c6ada53f0be5e3402d26deb96"><code>91210cc</code></a> chore(deps): update dependency rollup to ^4.25.0 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/472">#472</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/e432bcb0326b1a559499d8e48749d6e123986442"><code>e432bcb</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/439">#439</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/62b17f3eaf839a9bdaadde5c24e84e4dbf04bbfc"><code>62b17f3</code></a> fix(hmr): should reload if relies file changed after re-render (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/471">#471</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite-plugin-vue/commits/[email protected]/packages/plugin-vue">compare view</a></li> </ul> </details> <br /> Updates `@vitejs/plugin-vue-jsx` from 4.0.1 to 4.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-vue/releases"><code>@vitejs/plugin-vue-jsx</code>'s releases</a>.</em></p> <blockquote> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue-jsx/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue-jsx/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/[email protected]/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue-jsx/CHANGELOG.md"><code>@vitejs/plugin-vue-jsx</code>'s changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->4.1.1 (2024-11-26)<!-- raw HTML omitted --></h2> <ul> <li>chore: add vite 6 peer dep (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/481">#481</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/4288652">4288652</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/481">#481</a></li> </ul> <h2>4.1.0 (2024-11-11)</h2> <ul> <li>feat: support tsPluginOptions (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/445">#445</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/fdb3590">fdb3590</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/445">#445</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/421">#421</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/e3a7fec">e3a7fec</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/421">#421</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/439">#439</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/e432bcb">e432bcb</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/439">#439</a></li> <li>fix(plugin-jsx): work around bun bug for ssrRegisterHelper (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/380">#380</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/9c2b620">9c2b620</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/380">#380</a> <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/376">#376</a></li> <li>perf: use <code>hash</code> to replace <code>createHash</code> (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/460">#460</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/de88394">de88394</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/460">#460</a></li> <li>refactor(vue-jsx): remove extraneous import (<a href="https://github.com/vitejs/vite-plugin-vue/commit/ab2516a">ab2516a</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/ff5624afc0f6ffb71af7405c00eac4f57e1e64ba"><code>ff5624a</code></a> release: [email protected]</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/4288652649ab19161420aff458fc14c677031d35"><code>4288652</code></a> chore: add vite 6 peer dep (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/481">#481</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/23ea2f92d8396fea65ec127223e00138320b2d85"><code>23ea2f9</code></a> release: [email protected]</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/fdb35908af25d95d87e49e8477335b21b04176ba"><code>fdb3590</code></a> feat: support tsPluginOptions (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/445">#445</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/e432bcb0326b1a559499d8e48749d6e123986442"><code>e432bcb</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/439">#439</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/9c2b620570a18e0265da0a64129a5b7fd3f8cfa2"><code>9c2b620</code></a> fix(plugin-jsx): work around bun bug for ssrRegisterHelper (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/380">#380</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/de883946224767bddb89ec93cd491888df228479"><code>de88394</code></a> perf: use <code>hash</code> to replace <code>createHash</code> (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/460">#460</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/e3a7fec3674da5343e6e44c330483dba8e8d3124"><code>e3a7fec</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx/issues/421">#421</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/ab2516a6897a21a43a17e86c8a17f9c7fe84a0c9"><code>ab2516a</code></a> refactor(vue-jsx): remove extraneous import</li> <li>See full diff in <a href="https://github.com/vitejs/vite-plugin-vue/commits/[email protected]/packages/plugin-vue-jsx">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.9 to 6.2.2 <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>v6.2.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.2.2/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.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> <!-- 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.2 (2025-03-14)<!-- raw HTML omitted --></h2> <ul> <li>fix: await client buildStart on top level buildStart (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624">#19624</a>) (<a href="https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2">b31faab</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19624">#19624</a></li> <li>fix(css): inline css correctly for double quote use strict (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590">#19590</a>) (<a href="https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7">d0aa833</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19590">#19590</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613">#19613</a>) (<a href="https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931">363d691</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19613">#19613</a></li> <li>fix(indexHtml): ensure correct URL when querying module graph (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601">#19601</a>) (<a href="https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f">dc5395a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19601">#19601</a></li> <li>fix(preview): use preview https config, not server (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633">#19633</a>) (<a href="https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e">98b3160</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19633">#19633</a></li> <li>fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (<a href="https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b">4309755</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19612">#19612</a></li> <li>feat: show friendly error for malformed <code>base</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616">#19616</a>) (<a href="https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7">2476391</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19616">#19616</a></li> <li>feat(worker): show asset filename conflict warning (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591">#19591</a>) (<a href="https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217">367d968</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19591">#19591</a></li> <li>chore: extend commit hash correctly when ambigious with a non-commit object (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19600">#19600</a>) (<a href="https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197">89a6287</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19600">#19600</a></li> </ul> <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&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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/b12911edba0cd9edbad170a0940d37bb1e16ef2c"><code>b12911e</code></a> release: v6.2.2</li> <li><a href="https://github.com/vitejs/vite/commit/98b3160fa5916189e756cd7c5aae87e0d8f1978e"><code>98b3160</code></a> fix(preview): use preview https config, not server (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19633">#19633</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/b31faab2a81b839e4b747baeb9c7a7cbb724f8d2"><code>b31faab</code></a> fix: await client buildStart on top level buildStart (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19624">#19624</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/dc5395a27e44066ef7725278c4057d9f1071a53f"><code>dc5395a</code></a> fix(indexHtml): ensure correct URL when querying module graph (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19601">#19601</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/2476391b2854aaa67d0ed317b6d0c462e68028f7"><code>2476391</code></a> feat: show friendly error for malformed <code>base</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19616">#19616</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/43097550a1aa8ff633c39fb197b5f9ac1222119b"><code>4309755</code></a> fix(ssr): use optional chaining to prevent "undefined is not an object" happe...</li> <li><a href="https://github.com/vitejs/vite/commit/363d691b4995d72f26a14eb59ed88a9483b1f931"><code>363d691</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19613">#19613</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/d0aa833296668fc420a27a1ea88ecdbdeacdbce7"><code>d0aa833</code></a> fix(css): inline css correctly for double quote use strict (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19590">#19590</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/367d968fbf584e9f0e17192b816e92e8045c6217"><code>367d968</code></a> feat(worker): show asset filename conflict warning (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19591">#19591</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/89a62873243805518b672212db7e317989c5c197"><code>89a6287</code></a> chore: extend commit hash correctly when ambigious with a non-commit object (...</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v6.2.2/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-vue-devtools` from 7.5.2 to 7.7.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vuejs/devtools/releases">vite-plugin-vue-devtools's releases</a>.</em></p> <blockquote> <h2>v7.7.2</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li><strong>api</strong>: Allow treeshaking - by <a href="https://github.com/posva"><code>@posva</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/795">vuejs/devtools#795</a> <a href="https://github.com/vuejs/devtools/commit/81cacec"><!-- raw HTML omitted -->(81cac)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vuejs/devtools/compare/v7.7.1...v7.7.2">View changes on GitHub</a></h5> <h2>v7.7.1</h2> <h3> 🚀 Features</h3> <ul> <li><strong>client</strong>: Add vue SFC custom tab - by <a href="https://github.com/FliPPeDround"><code>@FliPPeDround</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/775">vuejs/devtools#775</a> <a href="https://github.com/vuejs/devtools/commit/59996b9"><!-- raw HTML omitted -->(59996)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vuejs/devtools/compare/v7.7.0...v7.7.1">View changes on GitHub</a></h5> <h2>v7.7.0</h2> <h3> 🚀 Features</h3> <ul> <li>Respect preferred-reduce-motion - by <a href="https://github.com/alexzhang1030"><code>@alexzhang1030</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/744">vuejs/devtools#744</a> <a href="https://github.com/vuejs/devtools/commit/e5e585e"><!-- raw HTML omitted -->(e5e58)<!-- raw HTML omitted --></a></li> <li><strong>applet</strong>: Support filter on router page - by <a href="https://github.com/alexzhang1030"><code>@alexzhang1030</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/762">vuejs/devtools#762</a> <a href="https://github.com/vuejs/devtools/commit/918dd49"><!-- raw HTML omitted -->(918dd)<!-- raw HTML omitted --></a></li> </ul> <h3> 🐞 Bug Fixes</h3> <ul> <li>Switch to relevant app when inspecting component - by <a href="https://github.com/kevinluo201"><code>@kevinluo201</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/748">vuejs/devtools#748</a> <a href="https://github.com/vuejs/devtools/commit/a17868a"><!-- raw HTML omitted -->(a1786)<!-- raw HTML omitted --></a></li> <li><strong>vite</strong>: Add configured headers for devtool-related response - by <a href="https://github.com/nighca"><code>@nighca</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/710">vuejs/devtools#710</a> <a href="https://github.com/vuejs/devtools/commit/e758ac3"><!-- raw HTML omitted -->(e758a)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vuejs/devtools/compare/v7.6.8...v7.7.0">View changes on GitHub</a></h5> <h2>v7.6.8</h2> <h3> 🚀 Features</h3> <ul> <li>Support <code>vite-plugin-inspect</code> for both Vite 5 and 6 - by <a href="https://github.com/peterpeterparker"><code>@peterpeterparker</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/730">vuejs/devtools#730</a> <a href="https://github.com/vuejs/devtools/commit/c8cfd6a"><!-- raw HTML omitted -->(c8cfd)<!-- raw HTML omitted --></a></li> </ul> <h3> 🐞 Bug Fixes</h3> <ul> <li><strong>client</strong>: XSS vulnerability in components tab - by <a href="https://github.com/xuzuodong"><code>@xuzuodong</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/726">vuejs/devtools#726</a> <a href="https://github.com/vuejs/devtools/commit/7749435"><!-- raw HTML omitted -->(77494)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vuejs/devtools/compare/v7.6.7...v7.6.8">View changes on GitHub</a></h5> <h2>v7.6.7</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li><strong>vite</strong>: Pin <code>vite-plugin-inspect</code> to be compatible with both vite 5 & 6, close <a href="https://github.com/vuejs/devtools/tree/HEAD/packages/vite/issues/716">#716</a> - by <a href="https://github.com/webfansplz"><code>@webfansplz</code></a> in <a href="https://redirect.github.com/vuejs/devtools/issues/716">vuejs/devtools#716</a> <a href="https://github.com/vuejs/devtools/commit/39b21bb"><!-- raw HTML omitted -->(39b21)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vuejs/devtools/compare/v7.6.6...v7.6.7">View changes on GitHub</a></h5> <h2>v7.6.6</h2> <h3> 🚀 Features</h3> <ul> <li>Support vite6 - by <a href="https://github.com/webfansplz"><code>@webfansplz</code></a> <a href="https://github.com/vuejs/devtools/commit/36cebad"><!-- raw HTML omitted -->(36ceb)<!-- 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/vuejs/devtools/commit/bf491cdce47d5b06f1dd834600c36dd89f54ea93"><code>bf491cd</code></a> chore: release v7.7.2</li> <li><a href="https://github.com/vuejs/devtools/commit/93c6bb8bf738a66f81687a15a21a27194c4c7ba1"><code>93c6bb8</code></a> chore: release v7.7.1</li> <li><a href="https://github.com/vuejs/devtools/commit/144cc3f7f392dbb2f67aeb4b98bfdb7ea4c61570"><code>144cc3f</code></a> chore(deps): update dependency pathe to v2 (<a href="https://github.com/vuejs/devtools/tree/HEAD/packages/vite/issues/760">#760</a>)</li> <li><a href="https://github.com/vuejs/devtools/commit/87f80d43999049bbeb325303e68b77da6b6f3a35"><code>87f80d4</code></a> chore: release v7.7.0</li> <li><a href="https://github.com/vuejs/devtools/commit/e758ac3057f803dcf148e058cff94743d21ff91e"><code>e758ac3</code></a> fix(vite): add configured headers for devtool-related response (<a href="https://github.com/vuejs/devtools/tree/HEAD/packages/vite/issues/710">#710</a>)</li> <li><a href="https://github.com/vuejs/devtools/commit/c823a8733833244f1a8e7f01bc1dede27eb17590"><code>c823a87</code></a> chore(vite): remove newline on server urls (<a href="https://github.com/vuejs/devtools/tree/HEAD/packages/vite/issues/759">#759</a>)</li> <li><a href="https://github.com/vuejs/devtools/commit/12e5b97d1e3c5cba50ecea2958b3dbac3e0d5889"><code>12e5b97</code></a> chore: pin <code>vite-plugin-inspect</code> version</li> <li><a href="https://github.com/vuejs/devtools/commit/60595325ab1abf0e2d1bcd7f24556c1f3fbe3f96"><code>6059532</code></a> chore: release v7.6.8</li> <li><a href="https://github.com/vuejs/devtools/commit/61b5df82e17e663d999d5d27d32c2fb722678ba8"><code>61b5df8</code></a> chore: pin <code>vite-plugin-inspect</code> as patch range</li> <li><a href="https://github.com/vuejs/devtools/commit/c8cfd6af57e764749c5d67627953189dad1b2819"><code>c8cfd6a</code></a> feat: support <code>vite-plugin-inspect</code> for both Vite 5 and 6 (<a href="https://github.com/vuejs/devtools/tree/HEAD/packages/vite/issues/730">#730</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vuejs/devtools/commits/v7.7.2/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 1.6.0 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/seatunnel/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]
