chore(frontend)(deps-dev): bump the vite group in /ui with 2 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 5
(3 months ago)
(3 months ago)
Bumps the vite group in /ui with 2 updates: @vitejs/plugin-react and vite.
Updates @vitejs/plugin-react from 4.7.0 to 6.0.1
Release notes
Sourced from @vitejs/plugin-react's releases.
plugin-react@6.0.1
Expand
@rolldown/plugin-babelpeer dep range (#1146)Expanded
@rolldown/plugin-babelpeer dep range to include^0.2.0.plugin-react@6.0.0
Remove Babel Related Features (#1123)
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.
If you are using Babel, you can use
@rolldown/plugin-babeltogether with this plugin:import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' +import babel from '@rolldown/plugin-babel'export default defineConfig({ plugins: [
react({babel: {plugins: ['@babel/plugin-proposal-throw-expressions'],},}),
react(),babel({plugins: ['@babel/plugin-proposal-throw-expressions'], ] })}),For React compiler users, you can use
reactCompilerPresetfor easier setup with preconfigured filter to improve build performance:import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import react, { reactCompilerPreset } from '@vitejs/plugin-react' +import babel from '@rolldown/plugin-babel'export default defineConfig({ plugins: [
- react({
babel: {plugins: ['babel-plugin-react-compiler'],},- }),
- react(),
- babel({
presets: [reactCompilerPreset()]</tr></table>
... (truncated)
Changelog
Sourced from @vitejs/plugin-react's changelog.
6.0.1 (2026-03-13)
Expand
@rolldown/plugin-babelpeer dep range (#1146)Expanded
@rolldown/plugin-babelpeer dep range to include^0.2.0.6.0.0 (2026-03-12)
6.0.0-beta.0 (2026-03-03)
Remove Babel Related Features (#1123)
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.
If you are using Babel, you can use
@rolldown/plugin-babeltogether with this plugin:import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' +import babel from '@rolldown/plugin-babel'export default defineConfig({ plugins: [
react({babel: {plugins: ['@babel/plugin-proposal-throw-expressions'],},}),
react(),babel({plugins: ['@babel/plugin-proposal-throw-expressions'], ] })}),For React compiler users, you can use
reactCompilerPresetfor easier setup with preconfigured filter to improve build performance:import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import react, { reactCompilerPreset } from '@vitejs/plugin-react' +import babel from '@rolldown/plugin-babel'export default defineConfig({ plugins: [
- react({
babel: {plugins: ['babel-plugin-react-compiler'],},</tr></table>
... (truncated)
Commits
1e94c06release: plugin-react@6.0.177c00c0feat(plugin-react): expand@rolldown/plugin-babelpeer dep range (#1146)dcc9012release: plugin-react@6.0.03a17886docs: add a link to the Oxlint rule for component exports alongside the ESLin...f812135fix(deps): update all non-major dependencies (#1140)a0329a0docs(react): clarify react compiler preset filter (#1137)704e0d3release: plugin-react@6.0.0-beta.0ac16accfeat(react)!: remove babel (#1123)f01b30cfix(deps): update all non-major dependencies (#1127)b1014bdchore(react): add changelog for #1124- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for @vitejs/plugin-react since your current version.
Updates vite from 6.4.2 to 8.0.10
Release notes
Sourced from vite's releases.
v8.0.10
Please refer to CHANGELOG.md for details.
v8.0.9
Please refer to CHANGELOG.md for details.
v8.0.8
Please refer to CHANGELOG.md for details.
v8.0.7
Please refer to CHANGELOG.md for details.
v8.0.6
Please refer to CHANGELOG.md for details.
v8.0.5
Please refer to CHANGELOG.md for details.
v8.0.4
Please refer to CHANGELOG.md for details.
create-vite@8.0.3
Please refer to CHANGELOG.md for details.
v8.0.3
Please refer to CHANGELOG.md for details.
create-vite@8.0.2
Please refer to CHANGELOG.md for details.
v8.0.2
Please refer to CHANGELOG.md for details.
create-vite@8.0.1
Please refer to CHANGELOG.md for details.
v8.0.1
Please refer to CHANGELOG.md for details.
plugin-legacy@8.0.1
Please refer to CHANGELOG.md for details.
create-vite@8.0.0
Please refer to CHANGELOG.md for details.
plugin-legacy@8.0.0
Please refer to CHANGELOG.md for details.
v8.0.0
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
8.0.10 (2026-04-23)
Features
Bug Fixes
hmrClient.logger.debugandhmrClient.logger.errorlooked different from other HMR logs (#22147) (a4d828f)- css: show filename in CSS minification warnings for
.css?inline(#22292) (83f0a78)- optimizer: allow user transform.target to override default in optimizeDeps (#22273) (5c7cec6)
- remove format sniffing module resolution from JS resolver (#22297) (b8a21cc)
Code Refactoring
8.0.9 (2026-04-20)
Features
Bug Fixes
- allow binding when strictPort is set but wildcard port is in use (#22150) (dfc8aa5)
- build: emptyOutDir should happen for watch rebuilds (#22207) (ee52267)
- bundled-dev: reject requests to HMR patch files in non potentially trustworthy origins (#22269) (868f141)
- css: use unique key for cssEntriesMap to prevent same-basename collision (#22039) (374bb5d)
- deps: update all non-major dependencies (#22219) (4cd0d67)
- deps: update all non-major dependencies (#22268) (c28e9c1)
- detect Deno workspace root (fix #22237) (#22238) (1b793c0)
- dev: handle errors in
watchChangehook (#22188) (fc08bda)- optimizer: handle more chars that will be sanitized (#22208) (3f24533)
- skip fallback sourcemap generation for
?rawimports (#22148) (3ec9cda)Documentation
- align the descriptions in READMEs (#22231) (44c42b9)
- fix reuses wording in dev environment comment (#22173) (9163412)
- fix wording in sass error comment (#22214) (bc5c6a7)
- update build CLI defaults (#22261) (605bb97)
Miscellaneous Chores
8.0.8 (2026-04-09)
Features
... (truncated)
Commits
32c2978release: v8.0.10a4d06d9feat: update rolldown to 1.0.0-rc.17 (#22299)a4d828ffix:hmrClient.logger.debugandhmrClient.logger.errorlooked different f...83f0a78fix(css): show filename in CSS minification warnings for.css?inline(#22292)b8a21ccfix: remove format sniffing module resolution from JS resolver (#22297)40a0847refactor: typecheck client directory (#22284)5c7cec6fix(optimizer): allow user transform.target to override default in optimizeDe...9437518refactor: enable some typecheck rules (#22278)ce729f5release: v8.0.9605bb97docs: update build CLI defaults (#22261)- Additional commits viewable in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Package Dependencies
@vitejs/plugin-react
npm
4.7.0 → 6.0.1
Major
/ui
Technical Details
| ID: | 15509594 |
| UUID: | 4329874212 |
| Node ID: | PR_kwDORSXPC87VrL71 |
| Host: | GitHub |
| Repository: | RandomCodeSpace/otelcontext |