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

   Bumps 
[@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react)
 from 4.7.0 to 6.0.1.
   <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>Expand <code>@rolldown/plugin-babel</code> peer dep range (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1146";>#1146</a>)</h3>
   <p>Expanded <code>@rolldown/plugin-babel</code> peer dep range to include 
<code>^0.2.0</code>.</p>
   <h2>[email protected]</h2>
   <h3>Remove Babel Related Features (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1123";>#1123</a>)</h3>
   <p>Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel 
for it. With that, there are no transform applied that requires Babel. To 
reduce the installation size of this plugin, babel is no longer a dependency of 
this plugin and the related features are removed.</p>
   <p>If you are using Babel, you can use <code>@rolldown/plugin-babel</code> 
together with this plugin:</p>
   <pre lang="diff"><code> import { defineConfig } from 'vite'
    import react from '@vitejs/plugin-react'
   +import babel from '@rolldown/plugin-babel'
   <p>export default defineConfig({
   plugins: [</p>
   <ul>
   <li>
   <pre><code>react({
   </code></pre>
   </li>
   <li>
   <pre><code>  babel: {
   </code></pre>
   </li>
   <li>
   <pre><code>    plugins: ['@babel/plugin-proposal-throw-expressions'],
   </code></pre>
   </li>
   <li>
   <pre><code>  },
   </code></pre>
   </li>
   <li>
   <pre><code>}),
   </code></pre>
   </li>
   </ul>
   <ul>
   <li>
   <pre><code>react(),
   </code></pre>
   </li>
   <li>
   <pre><code>babel({
   </code></pre>
   </li>
   <li>
   <pre><code>  plugins: ['@babel/plugin-proposal-throw-expressions'],
   </code></pre>
   </li>
   <li>
   <pre><code>}),
   </code></pre>
   ]
   })
   </code></pre></li>
   </ul>
   <p>For React compiler users, you can use <code>reactCompilerPreset</code> 
for easier setup with preconfigured filter to improve build performance:</p>
   <pre lang="diff"><code> import { defineConfig } from 'vite'
   -import react from '@vitejs/plugin-react'
   +import react, { reactCompilerPreset } from '@vitejs/plugin-react'
   +import babel from '@rolldown/plugin-babel'
   <p>export default defineConfig({
   plugins: [</p>
   <ul>
   <li>react({</li>
   <li>
   <pre><code> babel: {
   </code></pre>
   </li>
   <li>
   <pre><code>   plugins: ['babel-plugin-react-compiler'],
   </code></pre>
   </li>
   <li>
   <pre><code> },
   </code></pre>
   </li>
   <li>}),</li>
   </ul>
   <ul>
   <li>react(),</li>
   <li>babel({</li>
   <li>
   <pre><code> presets: [reactCompilerPreset()]
   </code></pre>
   </li>
   </ul>
   <p>&lt;/tr&gt;&lt;/table&gt;
   </code></pre></p>
   </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>6.0.1 (2026-03-13)</h2>
   <h3>Expand <code>@rolldown/plugin-babel</code> peer dep range (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1146";>#1146</a>)</h3>
   <p>Expanded <code>@rolldown/plugin-babel</code> peer dep range to include 
<code>^0.2.0</code>.</p>
   <h2>6.0.0 (2026-03-12)</h2>
   <h2>6.0.0-beta.0 (2026-03-03)</h2>
   <h3>Remove Babel Related Features (<a 
href="https://redirect.github.com/vitejs/vite-plugin-react/pull/1123";>#1123</a>)</h3>
   <p>Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel 
for it. With that, there are no transform applied that requires Babel. To 
reduce the installation size of this plugin, babel is no longer a dependency of 
this plugin and the related features are removed.</p>
   <p>If you are using Babel, you can use <code>@rolldown/plugin-babel</code> 
together with this plugin:</p>
   <pre lang="diff"><code> import { defineConfig } from 'vite'
    import react from '@vitejs/plugin-react'
   +import babel from '@rolldown/plugin-babel'
   <p>export default defineConfig({
   plugins: [</p>
   <ul>
   <li>
   <pre><code>react({
   </code></pre>
   </li>
   <li>
   <pre><code>  babel: {
   </code></pre>
   </li>
   <li>
   <pre><code>    plugins: ['@babel/plugin-proposal-throw-expressions'],
   </code></pre>
   </li>
   <li>
   <pre><code>  },
   </code></pre>
   </li>
   <li>
   <pre><code>}),
   </code></pre>
   </li>
   </ul>
   <ul>
   <li>
   <pre><code>react(),
   </code></pre>
   </li>
   <li>
   <pre><code>babel({
   </code></pre>
   </li>
   <li>
   <pre><code>  plugins: ['@babel/plugin-proposal-throw-expressions'],
   </code></pre>
   </li>
   <li>
   <pre><code>}),
   </code></pre>
   ]
   })
   </code></pre></li>
   </ul>
   <p>For React compiler users, you can use <code>reactCompilerPreset</code> 
for easier setup with preconfigured filter to improve build performance:</p>
   <pre lang="diff"><code> import { defineConfig } from 'vite'
   -import react from '@vitejs/plugin-react'
   +import react, { reactCompilerPreset } from '@vitejs/plugin-react'
   +import babel from '@rolldown/plugin-babel'
   <p>export default defineConfig({
   plugins: [</p>
   <ul>
   <li>react({</li>
   <li>
   <pre><code> babel: {
   </code></pre>
   </li>
   <li>
   <pre><code>   plugins: ['babel-plugin-react-compiler'],
   </code></pre>
   </li>
   <li>
   <pre><code> },
   </code></pre>
   </li>
   </ul>
   <p>&lt;/tr&gt;&lt;/table&gt;
   </code></pre></p>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/1e94c06995c2afe2d1fee5aea2ef9720d35a7e02";><code>1e94c06</code></a>
 release: [email protected]</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/77c00c007263e963dc7f6f108d1add8afb3f1d4a";><code>77c00c0</code></a>
 feat(plugin-react): expand <code>@rolldown/plugin-babel</code> peer dep range 
(<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1146";>#1146</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/dcc901236079ef7fa99139f7ba7beebac583f301";><code>dcc9012</code></a>
 release: [email protected]</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/3a17886073e4f44fb039981492d982d36481b176";><code>3a17886</code></a>
 docs: add a link to the Oxlint rule for component exports alongside the 
ESLin...</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/f812135f84907947406cab5913b6d868685db585";><code>f812135</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1140";>#1140</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/a0329a082450b3d2293f43fc9fed224506a131b4";><code>a0329a0</code></a>
 docs(react): clarify react compiler preset filter (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1137";>#1137</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/704e0d388b3ecf56d08d3c7aa128c832d38f497e";><code>704e0d3</code></a>
 release: [email protected]</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/ac16acc03798aa5f1cb8dc766106b2c34eaeb06c";><code>ac16acc</code></a>
 feat(react)!: remove babel (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1123";>#1123</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/f01b30cd09ea3bf758993aaa29fda7f588f76ab9";><code>f01b30c</code></a>
 fix(deps): update all non-major dependencies (<a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1127";>#1127</a>)</li>
   <li><a 
href="https://github.com/vitejs/vite-plugin-react/commit/b1014bd5582627aaa38a0bef8aaab1ef2522769b";><code>b1014bd</code></a>
 chore(react): add changelog for <a 
href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react/issues/1124";>#1124</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>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by <a 
href="https://www.npmjs.com/~GitHub%20Actions";>GitHub Actions</a>, a new 
releaser for <code>@​vitejs/plugin-react</code> since your current version.</p>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@vitejs/plugin-react&package-manager=npm_and_yarn&previous-version=4.7.0&new-version=6.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 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)
   
   
   </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