This repository was archived by the owner on Jan 31, 2025. It is now read-only.
generated from gatsbyjs/gatsby-starter-default
-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update react monorepo to v19 (major) #38
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/major-react-monorepo
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 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
Contributor
Author
⚠ 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 |
f81557a to
f5ebcf5
Compare
fbcb976 to
c5fbd13
Compare
c5fbd13 to
9f314f8
Compare
9f314f8 to
913c709
Compare
e56df0f to
c714ff7
Compare
17180a2 to
b7ffa8e
Compare
2478bb3 to
55dc14a
Compare
d0cfd0c to
6792a26
Compare
8c9e9bb to
0d3999b
Compare
1199eae to
483cd46
Compare
483cd46 to
96c496a
Compare
eede448 to
c30e821
Compare
808437d to
73f1378
Compare
73f1378 to
2612193
Compare
2612193 to
39de33b
Compare
6388d31 to
611d95a
Compare
35adf7a to
7593de6
Compare
af81c14 to
3c0c71c
Compare
9046538 to
68361de
Compare
a68b7bd to
ce25076
Compare
75e02a4 to
2b841af
Compare
8d615b3 to
8b36420
Compare
8b36420 to
d130aa4
Compare
d130aa4 to
ee69439
Compare
5aaed4f to
7058a47
Compare
7058a47 to
fb8b44f
Compare
Contributor
Author
|
fb8b44f to
882f5f0
Compare
882f5f0 to
a61ff7e
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.2->19.0.017.0.2->19.0.0Release Notes
facebook/react (react)
v19.0.0Compare Source
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)
v19.0.0Compare Source
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 - "* * * * 0,6" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 was generated by Mend Renovate. View the repository job log.