dependabot[bot] opened a new pull request, #5221: URL: https://github.com/apache/linkis/pull/5221
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) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These dependencies need to be updated together. Updates `esbuild` from 0.18.20 to 0.25.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.1</h2> <ul> <li> <p>Fix incorrect paths in inline source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4105">#4105</a>)</p> <p>This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline <code>sourceMappingURL</code> data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the <code>sourceMappingURL</code> comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.</p> </li> <li> <p>Fix invalid generated source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/4080">#4080</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4107">#4107</a>)</p> <p>This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.</p> <p>This fix was contributed by <a href="https://github.com/jridgewell"><code>@jridgewell</code></a>.</p> </li> <li> <p>Fix a regression with non-file source map paths (<a href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>)</p> <p>The format of paths in source maps that aren't in the <code>file</code> namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from <code>file</code> paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a <code>:</code> character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.</p> </li> <li> <p>Fix a crash with <code>switch</code> optimization (<a href="https://redirect.github.com/evanw/esbuild/issues/4088">#4088</a>)</p> <p>The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:</p> <pre lang="js"><code>switch (x) { case '': return y.map(z => z.value) case y.map(z => z.key).join(','): return [] } </code></pre> </li> <li> <p>Update Go from 1.23.5 to 1.23.7 (<a href="https://redirect.github.com/evanw/esbuild/issues/4076">#4076</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4077">#4077</a>)</p> <p>This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.</p> <p>This PR was contributed by <a href="https://github.com/MikeWillCook"><code>@MikeWillCook</code></a>.</p> </li> </ul> <h2>v0.25.0</h2> <p><strong>This release deliberately contains backwards-incompatible changes.</strong> To avoid automatically picking up releases like this, you should either be pinning the exact version of <code>esbuild</code> in your <code>package.json</code> file (recommended) or be using a version range syntax that only accepts patch upgrades such as <code>^0.24.0</code> or <code>~0.24.0</code>. See npm's documentation about <a href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for more information.</p> <ul> <li> <p>Restrict access to esbuild's development server (<a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">GHSA-67mh-4wv8-2f99</a>)</p> <p>This change addresses esbuild's first security vulnerability report. Previously esbuild set the <code>Access-Control-Allow-Origin</code> header to <code>*</code> to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in <a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">the report</a>.</p> <p>Starting with this release, <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">CORS</a> will now be disabled, and requests will now be denied if the host does not match the one provided to <code>--serve=</code>. The default host is <code>0.0.0.0</code>, which refers to all of the IP addresses that represent the local machine (e.g. both <code>127.0.0.1</code> and <code>192.168.0.1</code>). If you want to customize anything about esbuild's development server, you can <a href="https://esbuild.github.io/api/#serve-proxy">put a proxy in front of esbuild</a> and modify the incoming and/or outgoing requests.</p> <p>In addition, the <code>serve()</code> API call has been changed to return an array of <code>hosts</code> instead of a single <code>host</code> string. This makes it possible to determine all of the hosts that esbuild's development server will accept.</p> <p>Thanks to <a href="https://github.com/sapphi-red"><code>@sapphi-red</code></a> for reporting this issue.</p> </li> <li> <p>Delete output files when a build fails in watch mode (<a href="https://redirect.github.com/evanw/esbuild/issues/3643">#3643</a>)</p> <p>It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md">esbuild's changelog</a>.</em></p> <blockquote> <h1>Changelog: 2023</h1> <p>This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).</p> <h2>0.19.11</h2> <ul> <li> <p>Fix TypeScript-specific class transform edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/3559">#3559</a>)</p> <p>The previous release introduced an optimization that avoided transforming <code>super()</code> in the class constructor for TypeScript code compiled with <code>useDefineForClassFields</code> set to <code>false</code> if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case <em>and</em> there are <code>#private</code> instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to <code>super()</code> (since <code>super()</code> is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:</p> <pre lang="ts"><code>// Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } } <p>// Old output (with esbuild v0.19.9)<br /> class Foo extends Bar {<br /> constructor() {<br /> super();<br /> this.#private = 1;<br /> }<br /> #private;<br /> }</p> <p>// Old output (with esbuild v0.19.10)<br /> class Foo extends Bar {<br /> constructor() {<br /> this.#private = 1;<br /> super();<br /> }<br /> #private;<br /> }</p> <p>// New output<br /> class Foo extends Bar {<br /> #private = 1;<br /> constructor() {<br /> super();<br /> }<br /> }<br /> </code></pre></p> </li> <li> <p>Minifier: allow reording a primitive past a side-effect (<a href="https://redirect.github.com/evanw/esbuild/issues/3568">#3568</a>)</p> <p>The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007"><code>6bfc1c1</code></a> publish 0.25.1 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36"><code>f9b3952</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>: prepend namespaces to source map paths</li> <li><a href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174"><code>ccf3dd7</code></a> add "contributed by" in changelog</li> <li><a href="https://github.com/evanw/esbuild/commit/48cd7a9e26452f30345eb10a3d471f26de56d1ec"><code>48cd7a9</code></a> Update Go from 1.23.5 to 1.23.7 (<a href="https://redirect.github.com/evanw/esbuild/issues/4077">#4077</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/1f04fa4dc85ef4b1fa01e1938fa127a2cc170c35"><code>1f04fa4</code></a> fix absolute windows paths in source maps</li> <li><a href="https://github.com/evanw/esbuild/commit/9ca03f6ea8aa4c418cb66da876139eef4e2abb26"><code>9ca03f6</code></a> also add test case from <a href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a></li> <li><a href="https://github.com/evanw/esbuild/commit/2f244c085a970b873e579ac2a0b1c054cf9c66ea"><code>2f244c0</code></a> add test case from <a href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a></li> <li><a href="https://github.com/evanw/esbuild/commit/1dde994de8858d71fe0e9e128d22142b3c9d7de6"><code>1dde994</code></a> fix incorrect test names</li> <li><a href="https://github.com/evanw/esbuild/commit/9f008c59b628b65c00878d7673ed24317e911666"><code>9f008c5</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>: <code>file</code> namespace for <code>sourceMappingURL</code></li> <li><a href="https://github.com/evanw/esbuild/commit/cbd5eb8c82089619f235b96be7b7b18c06fc10c0"><code>cbd5eb8</code></a> release notes and tests for <a href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a></li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.18.20...v0.25.1">compare view</a></li> </ul> </details> <br /> Updates `@vitejs/plugin-vue` from 4.3.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>plugin-vue@5.2.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.2.1/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.2.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.2.0/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.5</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.5/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.4</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.4/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.3/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.2/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.1/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.1.0/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.5</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.5/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.4</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.4/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.3/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.2/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.1/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.0/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.0-beta.1/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.0-beta.0/packages/plugin-vue/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-vue@5.0.0-alpha.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@5.0.0-alpha.0/packages/plugin-vue/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-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> <h2><!-- raw HTML omitted -->5.1.4 (2024-09-16)<!-- raw HTML omitted --></h2> <ul> <li>chore: format (<a href="https://github.com/vitejs/vite-plugin-vue/commit/07b29a6">07b29a6</a>)</li> <li>chore(deps): update dependency rollup to ^4.21.3 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/440">#440</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/98766c2">98766c2</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/440">#440</a></li> <li>fix: skip checking private properties of typeParameters (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/443">#443</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/e4f5fff">e4f5fff</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/443">#443</a></li> <li>fix(plugin-vue): allow overwrite esbuild config (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/444">#444</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/1344294">1344294</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/444">#444</a></li> </ul> <h2><!-- raw HTML omitted -->5.1.3 (2024-08-29)<!-- raw HTML omitted --></h2> <ul> <li>chore: upgrade to eslint 9 (<a href="https://github.com/vitejs/vite-plugin-vue/commit/236a40f">236a40f</a>)</li> <li>chore: use pnpm catalog for shared deps (<a href="https://github.com/vitejs/vite-plugin-vue/commit/0735e18">0735e18</a>)</li> <li>chore(deps): update dependency rollup to ^4.20.0 (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/433">#433</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/37c9073">37c9073</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/433">#433</a></li> <li>chore(deps): update upstream (<a href="https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue/issues/436">#436</a>) (<a href="https://github.com/vitejs/vite-plugin-vue/commit/b75a46f">b75a46f</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/436">#436</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/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(plugin-vue): default value for <code>__VUE_OPTIONS_API__</code> (<a href="https://github.com/vitejs/vite-plugin-vue/commit/acb57c9">acb57c9</a>), closes <a href="https://redirect.github.com/vitejs/vite-plugin-vue/issues/438">#438</a></li> </ul> <h2><!-- raw HTML omitted -->5.1.2 (2024-08-01)<!-- raw HTML omitted --></h2> <ul> <li>refactor(plugin-vue): add <code>type</code> field (<a href="https://github.com/vitejs/vite-plugin-vue/commit/a6b7e3f">a6b7e3f</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-vue/commit/d156ad76822a9cbabaab8ad50eab5c330b1a60e4"><code>d156ad7</code></a> release: plugin-vue@5.2.1</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: plugin-vue@5.2.0</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: plugin-vue@5.1.5</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/plugin-vue@5.2.1/packages/plugin-vue">compare view</a></li> </ul> </details> <br /> Updates `vite` from 4.5.9 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>create-vite@6.2.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.2.1/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>create-vite@6.2.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.2.0/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>create-vite@6.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.1.1/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>create-vite@6.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.1.0/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&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/create-vite@6.2.1/packages/vite">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/linkis/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: dev-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@linkis.apache.org For additional commands, e-mail: dev-h...@linkis.apache.org