-
Notifications
You must be signed in to change notification settings - Fork 2
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 react dependencies #32
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/react-dependencies
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.
Open
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
2ea5752
to
1abc2ef
Compare
84d7da9
to
2e7e7ba
Compare
c7637fd
to
93f4a4f
Compare
93f4a4f
to
8fe2acd
Compare
2c5fb2d
to
7b6cd08
Compare
82d2c7c
to
75c4506
Compare
4d9846b
to
9637a56
Compare
9637a56
to
a766ed5
Compare
a766ed5
to
5231391
Compare
6694d42
to
fc4d0b4
Compare
a2d5911
to
230fdfe
Compare
230fdfe
to
30f73e3
Compare
a65864a
to
c835757
Compare
998951e
to
cc9252e
Compare
cc9252e
to
4c16d43
Compare
4c16d43
to
b6e3056
Compare
ec06c50
to
d9ba885
Compare
d9ba885
to
461f0a7
Compare
ccc5aef
to
eb5e5c2
Compare
eb5e5c2
to
8addc9f
Compare
51b8690
to
f711e7c
Compare
f711e7c
to
b843835
Compare
b843835
to
7a3dfdb
Compare
7a3dfdb
to
a8617e6
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.8.0
^4.6.0
->^4.6.2
^0.4.3
->^0.4.19
^18.2.0
->^18.3.1
^18.2.0
->^18.3.1
^6.18.0
->^6.30.0
Release Notes
vitejs/vite-plugin-react-swc (@vitejs/plugin-react-swc)
v3.8.0
Compare 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.2
Compare 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.1
Compare Source
Ignore directive sourcemap error #231
v3.7.0
Compare 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.0
Compare 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
.js
files is highly discouraged and can be removed in any future version.v3.5.0
Compare 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
React
in the scope.Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.
facebook/react (eslint-plugin-react-hooks)
v4.6.2
Compare Source
v4.6.1
Compare Source
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)
v0.4.19
Compare Source
Add name to configs for ESLint Config Inspector
v0.4.18
Compare Source
ESM/CJS interop is the worse that happened to this ecosystem, this is all I have to say.
v0.4.17
Compare Source
.default
property access under TS node16 module resolution (fixes #70)v0.4.16
Compare Source
Fix CJS/ESM interop issue. Sorry everyone for the trouble.
v0.4.15
Compare Source
Add support for custom HOCs (#60)
By default, the rule only knows that
memo
&forwardRef
function calls with return a React component. With this option, you can also allow extra function names like Mobx observer to make this code valid:Thanks @HorusGoul!
Add recommended config and simple types (#67)
You can now add the recommended config to your ESLint config like this:
To follow ESLint recommandations, the rule is added with the
error
severity.Some simple types ensure that people typecheking their config won't need
@ts-expect-error
anymore.Bump ESLint peer dependency to 8.40
This was actually done by mistake in the previous release when moving from a deprecated API to a new one.
Given that ESLint 8 is officialy end-of-life and the only report (#56) didn't get likes, I'm going forward and documenting the expected minimum version from ESLin in the package JSON so that people can get warning from their package manager.
v0.4.14
Compare Source
v0.4.13
Compare Source
react-redux
connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)
) (fixes #51)v0.4.12
Compare Source
v0.4.11
Compare Source
export type foo = string;
) (fixes #47)v0.4.10
Compare Source
function Foo() {}; export default React.memo(Foo)
(#46) (thanks @SukkaW!)v0.4.9
Compare Source
function Foo() {}; export default memo(Foo)
(fixes #44) (thanks @SukkaW!)v0.4.8
Compare Source
export const foo = -1
withallowConstantExport
(fixes #43)v0.4.7
Compare Source
export { Component as default }
(fixes #41)v0.4.6
Compare Source
v0.4.5
Compare Source
TaggedTemplateExpression
for styled components (fixes #32)facebook/react (react)
v18.3.1
Compare Source
act
fromreact
f1338fv18.3.0
Compare Source
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
this.refs
to support string ref codemod 909071findDOMNode
outside StrictMode c3b283test-utils
methods d4ea75defaultProps
for function components #25699key
#25697act
fromtest-utils
d4ea75React DOM
unmountComponentAtNode
8a015brenderToStaticNodeStream
#28874remix-run/react-router (react-router-dom)
v6.30.0
Compare Source
v6.29.0
Compare Source
v6.28.2
Compare Source
v6.28.1
Compare Source
v6.28.0
Compare Source
v6.27.0
Compare Source
v6.26.2
Compare Source
v6.26.1
Compare Source
v6.26.0
Compare Source
v6.25.1
Compare Source
v6.25.0
Compare Source
v6.24.1
Compare Source
v6.24.0
Compare Source
v6.23.1
Compare Source
v6.23.0
Compare Source
v6.22.3
Compare Source
v6.22.2
Compare Source
v6.22.1
Compare Source
v6.22.0
Compare Source
v6.21.3
Compare Source
v6.21.2
Compare Source
v6.21.1
Compare Source
v6.21.0
Compare Source
v6.20.1
Compare Source
v6.20.0
Compare Source
v6.19.0
Compare Source
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.