This repository was archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
chore(deps): update react monorepo to v18 (major) #293
Open
renovate
wants to merge
1
commit into
next
Choose a base branch
from
renovate/major-react-monorepo
base: next
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
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
898fc81 to
5129fda
Compare
5129fda to
52eaba8
Compare
52eaba8 to
2310771
Compare
2310771 to
cd718b9
Compare
cd718b9 to
4c992e0
Compare
4c992e0 to
a6e1219
Compare
a6e1219 to
5c304a0
Compare
5c304a0 to
3106d2f
Compare
3106d2f to
0a56a1e
Compare
0a56a1e to
87dc6aa
Compare
87dc6aa to
11fe738
Compare
11fe738 to
c2b7e1d
Compare
c2b7e1d to
7f2f0df
Compare
7f2f0df to
c437849
Compare
16aeb2d to
8783c61
Compare
8783c61 to
4b686da
Compare
4b686da to
8b59a0d
Compare
8b59a0d to
d8ff202
Compare
d8ff202 to
c1143f7
Compare
c1143f7 to
11fdc3c
Compare
11fdc3c to
5874528
Compare
5874528 to
9fb7976
Compare
9fb7976 to
b53a686
Compare
b53a686 to
f509ad7
Compare
f509ad7 to
14f7399
Compare
14f7399 to
d9a4f90
Compare
d9a4f90 to
1aa22b3
Compare
1aa22b3 to
5c58156
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
17.0.47->18.3.1117.0.2->18.3.117.0.2->18.3.1Release Notes
facebook/react (react)
v18.3.1Compare Source
v18.3.0Compare Source
v18.2.0Compare Source
React DOM
onRecoverableError. (@gnoff in #24591)documentcausing a blank page on mismatch. (@gnoff in #24523)setStatein Safari when adding an iframe. (@gaearon in #24459)React DOM Server
<title>elements to match the browser constraints. (@gnoff in #24679)highWaterMarkto0. (@jplhomer in #24641)Server Components (Experimental)
useId()inside Server Components. (@gnoff in #24172)v18.1.0Compare Source
React DOM
react-dom/clientwhen using UMD bundle. (@alireza-molaee in #24274)suppressHydrationWarningto work in production too. (@gaearon in #24271)componentWillUnmountfiring twice inside of Suspense. (@acdlite in #24308)useDeferredValuecausing an infinite loop when passed an unmemoized value. (@acdlite in #24247)setStateloop inuseEffect. (@gaearon in #24298)setStateinuseInsertionEffect. (@gaearon in #24295)React DOM Server
bootstrapScriptContentcontents. (@gnoff in #24385)renderToPipeableStream. (@gnoff in #24291)ESLint Plugin: React Hooks
Use Subscription
use-sync-external-storeshim. (@gaearon in #24289)v18.0.0Compare Source
Below is a list of all new features, APIs, deprecations, and breaking changes.
Read React 18 release post and React 18 upgrade guide for more information.
New Features
React
useIdis a new hook for generating unique IDs on both the client and server, while avoiding hydration mismatches. It is primarily useful for component libraries integrating with accessibility APIs that require unique IDs. This solves an issue that already exists in React 17 and below, but it’s even more important in React 18 because of how the new streaming server renderer delivers HTML out-of-order.startTransitionanduseTransitionlet you mark some state updates as not urgent. Other state updates are considered urgent by default. React will allow urgent state updates (for example, updating a text input) to interrupt non-urgent state updates (for example, rendering a list of search results).useDeferredValuelets you defer re-rendering a non-urgent part of the tree. It is similar to debouncing, but has a few advantages compared to it. There is no fixed time delay, so React will attempt the deferred render right after the first render is reflected on the screen. The deferred render is interruptible and doesn't block user input.useSyncExternalStoreis a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need foruseEffectwhen implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.useInsertionEffectis a new hook that allows CSS-in-JS libraries to address performance issues of injecting styles in render. Unless you’ve already built a CSS-in-JS library we don’t expect you to ever use this. This hook will run after the DOM is mutated, but before layout effects read the new layout. This solves an issue that already exists in React 17 and below, but is even more important in React 18 because React yields to the browser during concurrent rendering, giving it a chance to recalculate layout.React DOM Client
These new APIs are now exported from
react-dom/client:createRoot: New method to create a root torenderorunmount. Use it instead ofReactDOM.render. New features in React 18 don't work without it.hydrateRoot: New method to hydrate a server rendered application. Use it instead ofReactDOM.hydratein conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.Both
createRootandhydrateRootaccept a new option calledonRecoverableErrorin case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will usereportError, orconsole.errorin the older browsers.React DOM Server
These new APIs are now exported from
react-dom/serverand have full support for streaming Suspense on the server:renderToPipeableStream: for streaming in Node environments.renderToReadableStream: for modern edge runtime environments, such as Deno and Cloudflare workers.The existing
renderToStringmethod keeps working but is discouraged.facebook/react (react-dom)
v18.3.1Compare Source
v18.3.0Compare Source
v18.2.0Compare Source
React DOM
onRecoverableError. (@gnoff in #24591)documentcausing a blank page on mismatch. (@gnoff in #24523)setStatein Safari when adding an iframe. (@gaearon in #24459)React DOM Server
<title>elements to match the browser constraints. (@gnoff in #24679)highWaterMarkto0. (@jplhomer in #24641)Server Components (Experimental)
useId()inside Server Components. (@gnoff in #24172)v18.1.0Compare Source
React DOM
react-dom/clientwhen using UMD bundle. (@alireza-molaee in #24274)suppressHydrationWarningto work in production too. (@gaearon in #24271)componentWillUnmountfiring twice inside of Suspense. (@acdlite in #24308)useDeferredValuecausing an infinite loop when passed an unmemoized value. (@acdlite in #24247)setStateloop inuseEffect. (@gaearon in #24298)setStateinuseInsertionEffect. (@gaearon in #24295)React DOM Server
bootstrapScriptContentcontents. (@gnoff in #24385)renderToPipeableStream. (@gnoff in #24291)ESLint Plugin: React Hooks
Use Subscription
use-sync-external-storeshim. (@gaearon in #24289)v18.0.0Compare Source
Below is a list of all new features, APIs, deprecations, and breaking changes.
Read React 18 release post and React 18 upgrade guide for more information.
New Features
React
useIdis a new hook for generating unique IDs on both the client and server, while avoiding hydration mismatches. It is primarily useful for component libraries integrating with accessibility APIs that require unique IDs. This solves an issue that already exists in React 17 and below, but it’s even more important in React 18 because of how the new streaming server renderer delivers HTML out-of-order.startTransitionanduseTransitionlet you mark some state updates as not urgent. Other state updates are considered urgent by default. React will allow urgent state updates (for example, updating a text input) to interrupt non-urgent state updates (for example, rendering a list of search results).useDeferredValuelets you defer re-rendering a non-urgent part of the tree. It is similar to debouncing, but has a few advantages compared to it. There is no fixed time delay, so React will attempt the deferred render right after the first render is reflected on the screen. The deferred render is interruptible and doesn't block user input.useSyncExternalStoreis a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need foruseEffectwhen implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.useInsertionEffectis a new hook that allows CSS-in-JS libraries to address performance issues of injecting styles in render. Unless you’ve already built a CSS-in-JS library we don’t expect you to ever use this. This hook will run after the DOM is mutated, but before layout effects read the new layout. This solves an issue that already exists in React 17 and below, but is even more important in React 18 because React yields to the browser during concurrent rendering, giving it a chance to recalculate layout.React DOM Client
These new APIs are now exported from
react-dom/client:createRoot: New method to create a root torenderorunmount. Use it instead ofReactDOM.render. New features in React 18 don't work without it.hydrateRoot: New method to hydrate a server rendered application. Use it instead ofReactDOM.hydratein conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.Both
createRootandhydrateRootaccept a new option calledonRecoverableErrorin case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will usereportError, orconsole.errorin the older browsers.React DOM Server
These new APIs are now exported from
react-dom/serverand have full support for streaming Suspense on the server:renderToPipeableStream: for streaming in Node environments.renderToReadableStream: for modern edge runtime environments, such as Deno and Cloudflare workers.The existing
renderToStringmethod keeps working but is discouraged.Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.