-
Notifications
You must be signed in to change notification settings - Fork 11
chore(deps): update react monorepo to v18 (major) - autoclosed #119
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
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: package-lock.json |
1eb9832 to
7ac6998
Compare
|
We have to wait for react-accessible-accordion (github) to bring compatibility with react 18. |
|
Yeah it's only just been released so will likely take a few weeks for the ecosystem to catch up. |
ca0c862 to
9505b38
Compare
2849032 to
0fb0d07
Compare
|
These are also coupled to React 18 |
08fae99 to
2a5a0cd
Compare
f170ab4 to
5da7a33
Compare
ee77b5c to
bf026d4
Compare
bdd9656 to
013a627
Compare
0bb24d7 to
d86d61c
Compare
d86d61c to
73cf3d1
Compare
This PR contains the following updates:
~17->~18.2.017.0.2->18.2.0~17->~18.2.017.0.2->18.2.017.0.2->18.2.0Release Notes
facebook/react
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 #24172v18.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 - 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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate. View repository job log here.