-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update devdependencies (major) #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
1573bf4
to
6c6d050
Compare
6c6d050
to
a5960a6
Compare
c0e9b49
to
0266827
Compare
9c9591b
to
f2da98d
Compare
f2da98d
to
f77c4b5
Compare
b1836c4
to
03237be
Compare
c06c48e
to
1bdced1
Compare
a80d896
to
fa79aa0
Compare
fa79aa0
to
f46f265
Compare
7d9af7b
to
cc82fd7
Compare
cc82fd7
to
0913060
Compare
0913060
to
244bbf8
Compare
244bbf8
to
abe7735
Compare
a05ebf3
to
86053b0
Compare
d849f29
to
be6721a
Compare
f1226f7
to
b8da97a
Compare
248a277
to
9343c87
Compare
dcacc6d
to
7902976
Compare
07ca21d
to
984da18
Compare
984da18
to
140b136
Compare
140b136
to
ce70267
Compare
ceeb71f
to
ffcd25e
Compare
ffcd25e
to
5a50374
Compare
5a50374
to
bd40015
Compare
Important Review skippedAuto reviews are limited based on label configuration. 🏷️ Required labels (at least one) (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
bd40015
to
5e3b679
Compare
5e3b679
to
5c990ca
Compare
This PR contains the following updates:
18.2.79
->19.1.9
18.2.25
->19.1.7
4.2.1
->5.0.0
5.2.9
->7.1.1
Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.0.0
Compare Source
v4.7.0
Compare Source
Add HMR support for compound components (#518)
HMR now works for compound components like this:
Return
Plugin[]
instead ofPluginOption[]
(#537)The return type has changed from
react(): PluginOption[]
to more specialized typereact(): Plugin[]
. This allows for type-safe manipulation of plugins, for example:v4.6.0
Compare Source
Add raw Rolldown support
This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.
v4.5.2
Compare Source
Suggest
@vitejs/plugin-react-oxc
if rolldown-vite is detected #491Emit a log which recommends
@vitejs/plugin-react-oxc
whenrolldown-vite
is detected to improve performance and use Oxc under the hood. The warning can be disabled by settingdisableOxcRecommendation: false
in the plugin options.Use
optimizeDeps.rollupOptions
instead ofoptimizeDeps.esbuildOptions
for rolldown-vite #489This suppresses the warning about
optimizeDeps.esbuildOptions
being deprecated in rolldown-vite.Add Vite 7-beta to peerDependencies range #497
React plugins are compatible with Vite 7, this removes the warning when testing the beta.
v4.5.1
Compare Source
Add explicit semicolon in preambleCode #485
This fixes an edge case when using HTML minifiers that strips line breaks aggressively.
v4.5.0
Compare Source
Add
filter
for rolldown-vite #470Added
filter
so that it is more performant when running this plugin with rolldown-powered version of Vite.Skip HMR for JSX files with hooks #480
This removes the HMR warning for hooks with JSX.
v4.4.1
Compare Source
Fix type issue when using
moduleResolution: "node"
in tsconfig #462v4.4.0
Compare Source
Make compatible with rolldown-vite
This plugin is now compatible with rolldown-powered version of Vite.
Note that currently the
__source
property value position might be incorrect. This will be fixed in the near future.v4.3.4
Compare Source
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"
). We now enforce spec compliant (with { type: "json" }
)v4.3.3
Compare Source
React Compiler runtimeModule option removed
React Compiler was updated to accept a
target
option andruntimeModule
was removed. vite-plugin-react will still detectruntimeModule
for backwards compatibility.When using a custom
runtimeModule
ortarget !== '19'
, the plugin will not try to pre-optimizereact/compiler-runtime
dependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
v4.3.2
Compare Source
Ignore directive sourcemap error #369
v4.3.1
Compare Source
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule
: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule
, the plugin will not try to pre-optimizereact/compiler-runtime
dependency.Reminder: Vite expect code outside of
node_modules
to be ESM, so you will need to update the gist withimport React from 'react'
.v4.3.0
Compare Source
Fix support for React compiler
Don't set
retainLines: true
when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
vitejs/vite (vite)
v7.1.1
Compare Source
Bug Fixes
launch-editor-middleware
(#20569) (826b394)Miscellaneous Chores
v7.1.0
Compare Source
Features
generateCodeFrame
(#20508) (e7d0b2a)Bug Fixes
image-set
containing__VITE_ASSET__
(#20520) (f1a2635)entryCssAssetFileNames
as an empty Set (#20542) (6a46cda)Tests
process.features
(#20544) (856d3f0)v7.0.6
Compare Source
Bug Fixes
Miscellaneous Chores
Code Refactoring
v7.0.5
Compare Source
Bug Fixes
Accept: text/html
(#20376) (c9614b9)new URL(, import.meta.url)
(#20382) (6bc8bf6)Miscellaneous Chores
Code Refactoring
foo.endsWith("bar")
instead of/bar$/.test(foo)
(#20413) (862e192)v7.0.4
Compare Source
Bug Fixes
Build System
@oxc-project/runtime
devDep (#20389) (5e29602)v7.0.3
Compare Source
Bug Fixes
Miscellaneous Chores
n/prefer-node-protocol
rule (#20368) (38bb268)Code Refactoring
v7.0.2
Compare Source
Bug Fixes
v7.0.1
Compare Source
Bug Fixes
Miscellaneous Chores
v7.0.0
Compare Source
import.meta.url
in bundled Vite (#20235) (3bf3a8a), closes #20235ssrExportNameKey
(#20266) (ac302a7), closes #20266normalizeModuleId
(#20277) (9b98dcb), closes #20277numberToPos
(#20244) (3f46901), closes #20244v6.3.5
Compare Source
v6.3.4
Compare Source
require
to import externals in optimized dependenci (efc5eab), closes #19940v6.3.3
Compare Source
ssrTransform
re-export deps and test stacktrace with first line (#19629) (9399cda), closes #19629v6.3.2
Compare Source
css.lightningcss
option in css minification process (#19879) (b5055e0), closes #19879v6.3.1
Compare Source
Promise.allSettled
in preload function (#19805) (35c7f35), closes #19805transform
calls (#19878) (a152b7c), closes #19878v6.3.0
Compare Source
hot.invalidate
in circular deps (#19870) (d4ee5e8), closes #19870v6.2.7
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.6
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.5
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.4
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.3
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.2
Compare Source
base
(#19616) (2476391), closes #19616v6.2.1
Compare Source
isBuild
check from preAliasPlugin (#19587) (c9e086d), closes #19587applyToEnvironment
in internal plugins (#19588) (f678442), closes #19588*?url&no-inline
type and warning for.json?inline
/.json?no-inline
(#19566) (c0d3667), closes #19566v6.2.0
Compare Source
Bug Fixes
Miscellaneous Chores
v6.1.6
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.5
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.4
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.3
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.2
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.1
Compare Source
Features
Bug Fixes
.[cm]?[tj]sx?
static assets are JS mime (#19453) (e7ba55e)*.ipv4
address in cert (#19416) (973283b)Miscellaneous Chores
Code Refactoring
v6.1.0
Compare Source
Features
Bug Fixes
.[cm]?[tj]sx?
static assets are JS mime (#19453) (e7ba55e)*.ipv4
address in cert (#19416) (973283b)Miscellaneous Chores
Code Refactoring
v6.0.15
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.14
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.13
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.12
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.11
Compare Source
Features
port
in the logged error message after failed WS connection withEADDRINUSE
(#19212) (14027b0).jxl
(#18855) (57b397c)builtins
environmentresolve
(#18584) (2c2d521)defaultAllowedOrigins
for user-land config and 3rd party plugins (#19259) (dc8946b)wasm
to the compressible assets regex (#19085) (ce84142)Bug Fixes
resolveLibCssFilename
(#19324) (f183bdf)[@plugin](https://redirect.github.com/plugin)
imports of JS files treated as CSS and rebased (fix #19268) (#19269) (602b373)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.