dependabot[bot] opened a new pull request, #143:
URL: https://github.com/apache/ofbiz-plugins/pull/143

   Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.9 and updates 
ancestor dependencies [esbuild](https://github.com/evanw/esbuild), 
[@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react)
 and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These 
dependencies need to be updated together.
   
   Updates `esbuild` from 0.18.17 to 0.25.9
   <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.9</h2>
   <ul>
   <li>
   <p>Better support building projects that use Yarn on Windows (<a 
href="https://redirect.github.com/evanw/esbuild/issues/3131";>#3131</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/3663";>#3663</a>)</p>
   <p>With this release, you can now use esbuild to bundle projects that use 
Yarn Plug'n'Play on Windows on drives other than the <code>C:</code> drive. The 
problem was as follows:</p>
   <ol>
   <li>Yarn in Plug'n'Play mode on Windows stores its global module cache on 
the <code>C:</code> drive</li>
   <li>Some developers put their projects on the <code>D:</code> drive</li>
   <li>Yarn generates relative paths that use <code>../..</code> to get from 
the project directory to the cache directory</li>
   <li>Windows-style paths don't support directory traversal between drives via 
<code>..</code> (so <code>D:\..</code> is just <code>D:</code>)</li>
   <li>I didn't have access to a Windows machine for testing this edge case</li>
   </ol>
   <p>Yarn works around this edge case by pretending Windows-style paths 
beginning with <code>C:\</code> are actually Unix-style paths beginning with 
<code>/C:/</code>, so the <code>../..</code> path segments are able to navigate 
across drives inside Yarn's implementation. This was broken for a long time in 
esbuild but I finally got access to a Windows machine and was able to debug and 
fix this edge case. So you should now be able to bundle these projects with 
esbuild.</p>
   </li>
   <li>
   <p>Preserve parentheses around function expressions (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4252";>#4252</a>)</p>
   <p>The V8 JavaScript VM uses parentheses around function expressions as an 
optimization hint to immediately compile the function. Otherwise the function 
would be lazily-compiled, which has additional overhead if that function is 
always called immediately as lazy compilation involves parsing the function 
twice. You can read <a href="https://v8.dev/blog/preparser";>V8's blog post 
about this</a> for more details.</p>
   <p>Previously esbuild did not represent parentheses around functions in the 
AST so they were lost during compilation. With this change, esbuild will now 
preserve parentheses around function expressions when they are present in the 
original source code. This means these optimization hints will not be lost when 
bundling with esbuild. In addition, esbuild will now automatically add this 
optimization hint to immediately-invoked function expressions. Here's an 
example:</p>
   <pre lang="js"><code>// Original code
   const fn0 = () =&gt; 0
   const fn1 = (() =&gt; 1)
   console.log(fn0, function() { return fn1() }())
   <p>// Old output<br />
   const fn0 = () =&gt; 0;<br />
   const fn1 = () =&gt; 1;<br />
   console.log(fn0, function() {<br />
   return fn1();<br />
   }());</p>
   <p>// New output<br />
   const fn0 = () =&gt; 0;<br />
   const fn1 = (() =&gt; 1);<br />
   console.log(fn0, (function() {<br />
   return fn1();<br />
   })());<br />
   </code></pre></p>
   <p>Note that you do not want to wrap all function expressions in 
parentheses. This optimization hint should only be used for functions that are 
called on initial load. Using this hint for functions that are not called on 
initial load will unnecessarily delay the initial load. Again, see V8's blog 
post linked above for details.</p>
   </li>
   <li>
   <p>Update Go from 1.23.10 to 1.23.12 (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4257";>#4257</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4258";>#4258</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 false positive 
reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability 
scanners that only detect which version of the Go compiler esbuild uses.</p>
   </li>
   </ul>
   <h2>v0.25.8</h2>
   <ul>
   <li>
   <p>Fix another TypeScript parsing edge case (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4248";>#4248</a>)</p>
   <p>This fixes a regression with a change in the previous release that tries 
to more accurately parse TypeScript arrow functions inside the <code>?:</code> 
operator. The regression specifically involves parsing an arrow function 
containing a <code>#private</code> identifier inside the middle of a 
<code>?:</code> ternary operator inside a class body. This was fixed by 
propagating private identifier state into the parser clone used to 
speculatively parse the arrow function body. Here is an example of some 
affected code:</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/195e05c16f03a341390feef38b8ebf17d3075e14";><code>195e05c</code></a>
 publish 0.25.9 to npm</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/3dac33f2a2ba60387fb9aaca96b3e80b9e0512e0";><code>3dac33f</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/3131";>#3131</a>, 
fix <a href="https://redirect.github.com/evanw/esbuild/issues/3663";>#3663</a>: 
yarnpnp + windows + D drive</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/0f2c5c8c11dc3fa2a4e9e82df202d0b607e59de4";><code>0f2c5c8</code></a>
 mock fs now supports multiple volumes on windows</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/100a51e791ce714a1a90557bc9e5133fa0d38692";><code>100a51e</code></a>
 split out yarnpnp snapshot tests</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/13aace38bd1243e440061d1611e90a46ef55029c";><code>13aace3</code></a>
 remove <code>C:</code> assumption from windows snapshot tests</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/f1f413f18bce15a53fa4251f11a4747be94075e0";><code>f1f413f</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4252";>#4252</a>: 
preserve parentheses around functions</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/1bc809190bdb68ad27fc0a6e6d385b4f635c90e2";><code>1bc8091</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4257";>#4257</a>, 
close <a 
href="https://redirect.github.com/evanw/esbuild/issues/4258";>#4258</a>: go 
1.23.10 =&gt; 1.23.12</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/bc52135d02f794f28777c8e00db91997e0d98cab";><code>bc52135</code></a>
 move the go compiler version to <code>go.version</code></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/a0af5d1037c6e2509531151d153e875093f426b6";><code>a0af5d1</code></a>
 makefile: use <code>ESBUILD_VERSION</code> consistently</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/8c71947edbe5a158fec3a6d1cbfea1e8d5cdee70";><code>8c71947</code></a>
 publish 0.25.8 to npm</li>
   <li>Additional commits viewable in <a 
href="https://github.com/evanw/esbuild/compare/v0.18.17...v0.25.9";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@vitejs/plugin-react` from 3.1.0 to 5.0.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/vitejs/vite-plugin-react/releases";><code>@​vitejs/plugin-react</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>[email protected]</h2>
   <h3>Skip transform hook completely in rolldown-vite in dev if possible (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/783";>#783</a>)</h3>
   <h2>[email protected]</h2>
   <h3>Set <code>optimizeDeps.rollupOptions.transform.jsx</code> instead of 
<code>optimizeDeps.rollupOptions.jsx</code> for rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/735";>#735</a>)</h3>
   <p><code>optimizeDeps.rollupOptions.jsx</code> is going to be deprecated in 
favor of <code>optimizeDeps.rollupOptions.transform.jsx</code>.</p>
   <h3>Perf: skip <code>babel-plugin-react-compiler</code> if code has no 
<code>&quot;use memo&quot;</code> when <code>{ compilationMode: 
&quot;annotation&quot; }</code> (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/734";>#734</a>)</h3>
   <h3>Respect tsconfig <code>jsxImportSource</code> (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/726";>#726</a>)</h3>
   <h3>Fix <code>reactRefreshHost</code> option on rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/716";>#716</a>)</h3>
   <h3>Fix <code>RefreshRuntime</code> being injected twice for class 
components on rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/708";>#708</a>)</h3>
   <h3>Skip <code>babel-plugin-react-compiler</code> on non client environment 
(<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/689";>689</a>)</h3>
   <h2>[email protected]</h2>
   <p>(Same content as v5.0.0-beta.0 <a 
href="https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react%405.0.0-beta.0";>https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react%405.0.0-beta.0</a>)</p>
   <h3>Use Oxc for react refresh transform in rolldown-vite</h3>
   <p>When used with rolldown-vite, this plugin now uses Oxc for react refresh 
transform.</p>
   <p>Since this behavior is what <code>@vitejs/plugin-react-oxc</code> did, 
<code>@vitejs/plugin-react-oxc</code> is now deprecated and the 
<code>disableOxcRecommendation</code> option is removed.</p>
   <p>Also, while <code>@vitejs/plugin-react-oxc</code> used the production JSX 
transform even for <code>NODE_ENV=development</code> build, 
<code>@vitejs/plugin-react</code> uses the development JSX transform for 
<code>NODE_ENV=development</code> build.</p>
   <h3>Allow processing files in <code>node_modules</code></h3>
   <p>The default value of <code>exclude</code> options is now 
<code>[/\/node_modules\//]</code> to allow processing files in 
<code>node_modules</code> directory. It was previously <code>[]</code> and 
files in <code>node_modules</code> was always excluded regardless of the value 
of <code>exclude</code> option.</p>
   <h3><code>react</code> and <code>react-dom</code> is no longer added to <a 
href="https://vite.dev/config/#resolve-dedupe";><code>resolve.dedupe</code></a> 
automatically</h3>
   <p>Adding values to <code>resolve.dedupe</code> forces Vite to resolve them 
differently from how Node.js does, which can be confusing and may not be 
expected. This plugin no longer adds <code>react</code> and 
<code>react-dom</code> to <code>resolve.dedupe</code> automatically.</p>
   <p>If you encounter errors after upgrading, check your package.json for 
version mismatches in <code>dependencies</code> or 
<code>devDependencies</code>, as well as your package manager’s configuration. 
If you prefer the previous behavior, you can manually add <code>react</code> 
and <code>react-dom</code> to <code>resolve.dedupe</code>.</p>
   <h3>Remove old <code>babel-plugin-react-compiler</code> support that 
requires <code>runtimeModule</code> option</h3>
   <p><code>runtimeModule</code> option is no longer needed in newer 
<code>babel-plugin-react-compiler</code> versions. Make sure to use a newer 
version of <code>babel-plugin-react-compiler</code> that supports 
<code>target</code> option.</p>
   <h3>Require Node 20.19+, 22.12+</h3>
   <p>This plugin now requires Node 20.19+ or 22.12+.</p>
   <h2>[email protected]</h2>
   <h3>Use Oxc for react refresh transform in rolldown-vite</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md";><code>@​vitejs/plugin-react</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2>5.0.2 (2025-08-28)</h2>
   <h3>Skip transform hook completely in rolldown-vite in dev if possible (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/783";>#783</a>)</h3>
   <h2>5.0.1 (2025-08-19)</h2>
   <h3>Set <code>optimizeDeps.rollupOptions.transform.jsx</code> instead of 
<code>optimizeDeps.rollupOptions.jsx</code> for rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/735";>#735</a>)</h3>
   <p><code>optimizeDeps.rollupOptions.jsx</code> is going to be deprecated in 
favor of <code>optimizeDeps.rollupOptions.transform.jsx</code>.</p>
   <h3>Perf: skip <code>babel-plugin-react-compiler</code> if code has no 
<code>&quot;use memo&quot;</code> when <code>{ compilationMode: 
&quot;annotation&quot; }</code> (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/734";>#734</a>)</h3>
   <h3>Respect tsconfig <code>jsxImportSource</code> (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/726";>#726</a>)</h3>
   <h3>Fix <code>reactRefreshHost</code> option on rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/716";>#716</a>)</h3>
   <h3>Fix <code>RefreshRuntime</code> being injected twice for class 
components on rolldown-vite (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/708";>#708</a>)</h3>
   <h3>Skip <code>babel-plugin-react-compiler</code> on non client environment 
(<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/689";>689</a>)</h3>
   <h2>5.0.0 (2025-08-07)</h2>
   <h2>5.0.0-beta.0 (2025-07-28)</h2>
   <h3>Use Oxc for react refresh transform in rolldown-vite</h3>
   <p>When used with rolldown-vite, this plugin now uses Oxc for react refresh 
transform.</p>
   <p>Since this behavior is what <code>@vitejs/plugin-react-oxc</code> did, 
<code>@vitejs/plugin-react-oxc</code> is now deprecated and the 
<code>disableOxcRecommendation</code> option is removed.</p>
   <p>Also, while <code>@vitejs/plugin-react-oxc</code> used the production JSX 
transform even for <code>NODE_ENV=development</code> build, 
<code>@vitejs/plugin-react</code> uses the development JSX transform for 
<code>NODE_ENV=development</code> build.</p>
   <h3>Allow processing files in <code>node_modules</code></h3>
   <p>The default value of <code>exclude</code> options is now 
<code>[/\/node_modules\//]</code> to allow processing files in 
<code>node_modules</code> directory. It was previously <code>[]</code> and 
files in <code>node_modules</code> was always excluded regardless of the value 
of <code>exclude</code> option.</p>
   <h3><code>react</code> and <code>react-dom</code> is no longer added to <a 
href="https://vite.dev/config/#resolve-dedupe";><code>resolve.dedupe</code></a> 
automatically</h3>
   <p>Adding values to <code>resolve.dedupe</code> forces Vite to resolve them 
differently from how Node.js does, which can be confusing and may not be 
expected. This plugin no longer adds <code>react</code> and 
<code>react-dom</code> to <code>resolve.dedupe</code> automatically.</p>
   <p>If you encounter errors after upgrading, check your package.json for 
version mismatches in <code>dependencies</code> or 
<code>devDependencies</code>, as well as your package manager’s configuration. 
If you prefer the previous behavior, you can manually add <code>react</code> 
and <code>react-dom</code> to <code>resolve.dedupe</code>.</p>
   <h3>Remove old <code>babel-plugin-react-compiler</code> support that 
requires <code>runtimeModule</code> option</h3>
   <p><code>runtimeModule</code> option is no longer needed in newer 
<code>babel-plugin-react-compiler</code> versions. Make sure to use a newer 
version of <code>babel-plugin-react-compiler</code> that supports 
<code>target</code> option.</p>
   <h3>Require Node 20.19+, 22.12+</h3>
   <p>This plugin now requires Node 20.19+ or 22.12+.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/1f4b4d9523c0cbdba66724e83477309ef65cac96";><code>1f4b4d9</code></a>
 release: [email protected]</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/c719e5d97d9c70e29fc4a7a4f44c1abaa382a59e";><code>c719e5d</code></a>
 perf(react): skip transform hook completely in rolldown-vite in dev if 
possib...</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/9989897fd102ba2d46bee0961e43aacb1e4f9436";><code>9989897</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/773";>#773</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/1ab26664ad6b99bdcaa49e5e0a805ee686c05c61";><code>1ab2666</code></a>
 build: watch <code>common</code> package (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/748";>#748</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/efe434417542cdbfbb00503d4c35ffbba49d3efa";><code>efe4344</code></a>
 release: [email protected]</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/126bdb005126aaad35852c95a9554b4849bd3f5e";><code>126bdb0</code></a>
 feat: set <code>optimizeDeps.rollupOptions.transform.jsx</code> instead of 
`optimizeDeps...</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/d3934ada6f5ad2d5a04e2fa3f475391dc5b65850";><code>d3934ad</code></a>
 perf(react): skip react compiler when <code>compilationMode: 
&quot;annotation&quot;</code> but no ...</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/e2f0c78a4ff06c7053fc43991a92de22812cdf78";><code>e2f0c78</code></a>
 fix(react): respect tsconfig jsxImportSource by default (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/726";>#726</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/ba0323cfcd7343362e64f782c5aae02ed9ee3273";><code>ba0323c</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/729";>#729</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/d33f37db05b4f3fbd4e9ed4a1b0405274f1af478";><code>d33f37d</code></a>
 refactor(react): simplify rolldown-vite only plugins (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/720";>#720</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `vite` from 4.5.5 to 7.1.5
   <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>v7.1.5</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.5/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.4</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.4/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.3</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.3/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.2</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.2/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.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>[email protected]</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/[email protected]/packages/plugin-legacy/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>v7.1.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.0-beta.1</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.0-beta.1/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.1.0-beta.0</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.1.0-beta.0/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.0.7</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.0.7/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.0.6</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.0.6/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.0.5</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.0.5/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.0.4</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.0.4/packages/vite/CHANGELOG.md";>CHANGELOG.md</a>
 for details.</p>
   <h2>v7.0.3</h2>
   <p>Please refer to <a 
href="https://github.com/vitejs/vite/blob/v7.0.3/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>
   <!-- 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 --><a 
href="https://github.com/vitejs/vite/compare/v7.1.4...v7.1.5";>7.1.5</a> 
(2025-09-08)<!-- raw HTML omitted --></h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>apply <code>fs.strict</code> check to HTML files (<a 
href="https://redirect.github.com/vitejs/vite/issues/20736";>#20736</a>) (<a 
href="https://github.com/vitejs/vite/commit/14015d794f69accba68798bd0e15135bc51c9c1e";>14015d7</a>)</li>
   <li><strong>deps:</strong> update all non-major dependencies (<a 
href="https://redirect.github.com/vitejs/vite/issues/20732";>#20732</a>) (<a 
href="https://github.com/vitejs/vite/commit/122bfbabeb1f095ce7cabd30893e5531e9a007c4";>122bfba</a>)</li>
   <li>upgrade sirv to 3.0.2 (<a 
href="https://redirect.github.com/vitejs/vite/issues/20735";>#20735</a>) (<a 
href="https://github.com/vitejs/vite/commit/09f2b52e8d5907f26602653caf41b3a56692600d";>09f2b52</a>)</li>
   </ul>
   <h2><!-- raw HTML omitted --><a 
href="https://github.com/vitejs/vite/compare/v7.1.3...v7.1.4";>7.1.4</a> 
(2025-09-01)<!-- raw HTML omitted --></h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>add missing awaits (<a 
href="https://redirect.github.com/vitejs/vite/issues/20697";>#20697</a>) (<a 
href="https://github.com/vitejs/vite/commit/79d10ed6341ba7a751d007b7ad113a9b8be9c853";>79d10ed</a>)</li>
   <li><strong>deps:</strong> update all non-major dependencies (<a 
href="https://redirect.github.com/vitejs/vite/issues/20676";>#20676</a>) (<a 
href="https://github.com/vitejs/vite/commit/5a274b29df83744cf0ce4dafd94029d2a9e01135";>5a274b2</a>)</li>
   <li><strong>deps:</strong> update all non-major dependencies (<a 
href="https://redirect.github.com/vitejs/vite/issues/20709";>#20709</a>) (<a 
href="https://github.com/vitejs/vite/commit/0401feba17e60bd7e976c5643128a0da49670a83";>0401feb</a>)</li>
   <li>pass rollup watch options when building in watch mode (<a 
href="https://redirect.github.com/vitejs/vite/issues/20674";>#20674</a>) (<a 
href="https://github.com/vitejs/vite/commit/f367453ca2825bc8a390d41c5d13b161756f2b41";>f367453</a>)</li>
   </ul>
   <h3>Miscellaneous Chores</h3>
   <ul>
   <li>remove unused constants entry from rolldown.config.ts (<a 
href="https://redirect.github.com/vitejs/vite/issues/20710";>#20710</a>) (<a 
href="https://github.com/vitejs/vite/commit/537fcf91862a1bf51e70ce6fe9b414319dd3a675";>537fcf9</a>)</li>
   </ul>
   <h3>Code Refactoring</h3>
   <ul>
   <li>remove unnecessary <code>minify</code> parameter from 
<code>finalizeCss</code> (<a 
href="https://redirect.github.com/vitejs/vite/issues/20701";>#20701</a>) (<a 
href="https://github.com/vitejs/vite/commit/8099582e5364f907f2bc6cb8e2d52ae0c4d937e4";>8099582</a>)</li>
   </ul>
   <h2><!-- raw HTML omitted --><a 
href="https://github.com/vitejs/vite/compare/v7.1.2...v7.1.3";>7.1.3</a> 
(2025-08-19)<!-- raw HTML omitted --></h2>
   <h3>Features</h3>
   <ul>
   <li><strong>cli:</strong> add Node.js version warning for unsupported 
versions (<a 
href="https://redirect.github.com/vitejs/vite/issues/20638";>#20638</a>) (<a 
href="https://github.com/vitejs/vite/commit/a1be1bf0905b9086e5f1370c63d76a7fa4a195ec";>a1be1bf</a>)</li>
   <li>generate code frame for parse errors thrown by terser (<a 
href="https://redirect.github.com/vitejs/vite/issues/20642";>#20642</a>) (<a 
href="https://github.com/vitejs/vite/commit/a9ba0174a58b949373d6b4240bc69180dff0b780";>a9ba017</a>)</li>
   <li>support long lines in <code>generateCodeFrame</code> (<a 
href="https://redirect.github.com/vitejs/vite/issues/20640";>#20640</a>) (<a 
href="https://github.com/vitejs/vite/commit/15595773170c2a07f2efdccee05964fb87c19ae6";>1559577</a>)</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>deps:</strong> update all non-major dependencies (<a 
href="https://redirect.github.com/vitejs/vite/issues/20634";>#20634</a>) (<a 
href="https://github.com/vitejs/vite/commit/4851cab3ba818b5f0f82eef3796b61d4b12768f1";>4851cab</a>)</li>
   <li><strong>optimizer:</strong> incorrect incompatible error (<a 
href="https://redirect.github.com/vitejs/vite/issues/20439";>#20439</a>) (<a 
href="https://github.com/vitejs/vite/commit/446fe83033686dd38d13b786a217b8277b5c5f09";>446fe83</a>)</li>
   <li>support multiline new URL(..., import.meta.url) expressions (<a 
href="https://redirect.github.com/vitejs/vite/issues/20644";>#20644</a>) (<a 
href="https://github.com/vitejs/vite/commit/9ccf142764d48292aa33e5ca6f020a7d55b97f61";>9ccf142</a>)</li>
   </ul>
   <h3>Performance Improvements</h3>
   <ul>
   <li><strong>cli:</strong> dynamically import <code>resolveConfig</code> (<a 
href="https://redirect.github.com/vitejs/vite/issues/20646";>#20646</a>) (<a 
href="https://github.com/vitejs/vite/commit/f691f57e46118328e00174160ceab2101b7256ca";>f691f57</a>)</li>
   </ul>
   <h3>Miscellaneous Chores</h3>
   <ul>
   <li><strong>deps:</strong> update rolldown-related dependencies (<a 
href="https://redirect.github.com/vitejs/vite/issues/20633";>#20633</a>) (<a 
href="https://github.com/vitejs/vite/commit/98b92e8c4b10ae87c48292a8ac09b01ca81a02cf";>98b92e8</a>)</li>
   </ul>
   <h3>Code Refactoring</h3>
   <ul>
   <li>replace startsWith with strict equality (<a 
href="https://redirect.github.com/vitejs/vite/issues/20603";>#20603</a>) (<a 
href="https://github.com/vitejs/vite/commit/42816dee0e177dded1c9de4d9099089ec4acef96";>42816de</a>)</li>
   <li>use <code>import</code> in worker threads (<a 
href="https://redirect.github.com/vitejs/vite/issues/20641";>#20641</a>) (<a 
href="https://github.com/vitejs/vite/commit/530687a344c51daf3115d1c134586bbde58356e0";>530687a</a>)</li>
   </ul>
   <h3>Tests</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/vitejs/vite/commit/564754061e9494f355370e31ee9d7ea5abef6037";><code>5647540</code></a>
 release: v7.1.5</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/09f2b52e8d5907f26602653caf41b3a56692600d";><code>09f2b52</code></a>
 fix: upgrade sirv to 3.0.2 (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735";>#20735</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/14015d794f69accba68798bd0e15135bc51c9c1e";><code>14015d7</code></a>
 fix: apply <code>fs.strict</code> check to HTML files (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736";>#20736</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/122bfbabeb1f095ce7cabd30893e5531e9a007c4";><code>122bfba</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20732";>#20732</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/bcc31449c0c4f852ccb1eedda1842bc7ded23d01";><code>bcc3144</code></a>
 release: v7.1.4</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/0401feba17e60bd7e976c5643128a0da49670a83";><code>0401feb</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20709";>#20709</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/537fcf91862a1bf51e70ce6fe9b414319dd3a675";><code>537fcf9</code></a>
 chore: remove unused constants entry from rolldown.config.ts (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20710";>#20710</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/79d10ed6341ba7a751d007b7ad113a9b8be9c853";><code>79d10ed</code></a>
 fix: add missing awaits (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20697";>#20697</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/8099582e5364f907f2bc6cb8e2d52ae0c4d937e4";><code>8099582</code></a>
 refactor: remove unnecessary <code>minify</code> parameter from 
<code>finalizeCss</code> (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20701";>#20701</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite/commit/f367453ca2825bc8a390d41c5d13b161756f2b41";><code>f367453</code></a>
 fix: pass rollup watch options when building in watch mode (<a 
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20674";>#20674</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/vitejs/vite/commits/v7.1.5/packages/vite";>compare 
view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by [GitHub Actions](<a 
href="https://www.npmjs.com/~GitHub";>https://www.npmjs.com/~GitHub</a> 
Actions), a new releaser for vite since your current version.</p>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/ofbiz-plugins/network/alerts).
   
   </details>


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

To unsubscribe, e-mail: [email protected]

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

Reply via email to