-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update dependency @vitejs/plugin-react-swc to v3.11.0 #41
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/vitejs-plugin-react-swc-3.x-lockfile
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22a2413 to
d29389b
Compare
d29389b to
1522b3b
Compare
1522b3b to
3d04a2c
Compare
67cd652 to
3ae67e4
Compare
3ae67e4 to
f482c4f
Compare
d4b365d to
f922a12
Compare
f922a12 to
bdff881
Compare
bdff881 to
be9f915
Compare
a246a32 to
b6eb595
Compare
b6eb595 to
acc02bf
Compare
acc02bf to
b8de8b9
Compare
b8de8b9 to
f0795b2
Compare
f0795b2 to
29e8339
Compare
29e8339 to
a94a3f9
Compare
a94a3f9 to
2ec54a6
Compare
2ec54a6 to
1a7eb05
Compare
1a7eb05 to
18a773c
Compare
18a773c to
059bb1e
Compare
059bb1e to
ffc09b9
Compare
ffc09b9 to
2b4d580
Compare
2b4d580 to
8c5d67d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.3.2->3.11.0Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react-swc)
v3.11.0Compare 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:v3.10.2Compare Source
Suggest
@vitejs/plugin-react-oxcif rolldown-vite is detected #491Emit a log which recommends
@vitejs/plugin-react-oxcwhenrolldown-viteis detected to improve performance and use Oxc under the hood. The warning can be disabled by settingdisableOxcRecommendation: truein the plugin options.Use
optimizeDeps.rollupOptionsinstead ofoptimizeDeps.esbuildOptionsfor rolldown-vite #489This suppresses the warning about
optimizeDeps.esbuildOptionsbeing 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.
v3.10.1Compare Source
Add explicit semicolon in preambleCode #485
This fixes an edge case when using HTML minifiers that strips line breaks aggressively.
v3.10.0Compare Source
Add
filterfor rolldown-vite #470Added
filterso that it is more performant when running this plugin with rolldown-powered version of Vite.Skip HMR preamble in Vitest browser mode #478
This was causing annoying
Sourcemap for "/@​react-refresh" points to missing source filesand is unnecessary in test mode.Skip HMR for JSX files with hooks #480
This removes the HMR warning for hooks with JSX.
v3.9.0Compare Source
Make compatible with rolldown-vite
This plugin is now compatible with rolldown-powered version of Vite.
v3.8.1Compare Source
Remove WebContainers warning #268
SWC is now supported in WebContainers 🎉
v3.8.0Compare Source
Add useAtYourOwnRisk_mutateSwcOptions option
The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later.
Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name
useAtYourOwnRisk.v3.7.2Compare Source
Add Vite 6 to peerDependencies range #207
Thanks @RobinTail
Revert throw when refresh runtime is loaded twice #237
Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.
This revert was done in the Babel plugin last year and I didn't port it back.
v3.7.1Compare Source
Ignore directive sourcemap error #231
v3.7.0Compare Source
Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
v3.6.0Compare Source
Add parserConfig option
This will unlock to use the plugin in some use cases where the original source code is not in TS. Using this option to keep using JSX inside
.jsfiles is highly discouraged and can be removed in any future version.v3.5.0Compare Source
Update peer dependency range to target Vite 5
There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.
Align jsx runtime for optimized dependencies
This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have
Reactin the scope.Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.
v3.4.1Compare Source
Add support for
.mts(fixes #161)Using CJS in source code will not work in Vite (and will never be supported), so this is better to only use
.ts.But to better align with Vite core defaults,
.mtsextension will now be processed like.ts. This maybe reverted in a future major.v3.4.0Compare Source
devTargetoption (fixes #141)config.server.hmr === falseinstead ofprocess.env.TESTConfiguration
📅 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.