-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update dependency @vitejs/plugin-react to v4.3.3 #6
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/vitejs-plugin-react-4.x-lockfile
base: master
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 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
✅ Deploy Preview for aesthetic-puppy-2eb8eb canceled.
|
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
December 30, 2023 19:57
b4d37f2
to
d1ae8da
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
2 times, most recently
from
February 4, 2024 11:43
8e106e5
to
e7e8776
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
February 25, 2024 10:28
e7e8776
to
b8b6ad4
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
March 12, 2024 11:05
b8b6ad4
to
16dcaa1
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
2 times, most recently
from
March 24, 2024 17:24
e8352f2
to
922defd
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
3 times, most recently
from
April 21, 2024 08:33
d25f3af
to
672ba74
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
April 25, 2024 08:24
672ba74
to
c3cfa48
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
May 22, 2024 19:30
c3cfa48
to
8457f5e
Compare
renovate
bot
changed the title
Update dependency @vitejs/plugin-react to v4.2.1
Update dependency @vitejs/plugin-react to v4.3.0
May 22, 2024
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
2 times, most recently
from
June 10, 2024 03:02
0c6fc23
to
34cd174
Compare
renovate
bot
changed the title
Update dependency @vitejs/plugin-react to v4.3.0
Update dependency @vitejs/plugin-react to v4.3.1
Jun 10, 2024
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
July 21, 2024 12:23
34cd174
to
db788b5
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
August 6, 2024 10:46
db788b5
to
849ebdb
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
August 28, 2024 09:26
849ebdb
to
b8c6c53
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
September 29, 2024 22:41
b8c6c53
to
e8bfb30
Compare
renovate
bot
changed the title
Update dependency @vitejs/plugin-react to v4.3.1
Update dependency @vitejs/plugin-react to v4.3.2
Sep 29, 2024
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
October 9, 2024 10:17
e8bfb30
to
8be7743
Compare
renovate
bot
force-pushed
the
renovate/vitejs-plugin-react-4.x-lockfile
branch
from
October 19, 2024 18:28
8be7743
to
043c5dc
Compare
renovate
bot
changed the title
Update dependency @vitejs/plugin-react to v4.3.2
Update dependency @vitejs/plugin-react to v4.3.3
Oct 19, 2024
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:
4.2.0
->4.3.3
Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react)
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.
v4.2.1
Compare Source
Remove generic parameter on
Plugin
to avoid type error with Rollup 4/Vite 5 andskipLibCheck: false
.I expect very few people to currently use this feature, but if you are extending the React plugin via
api
object, you can get back the typing of the hook by importingViteReactPluginApi
: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.
🔕 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.