Skip to content
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

fix(deps): update react monorepo to v19 (major) #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 24, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 17.0.37 -> 19.0.10 age adoption passing confidence
react (source) 17.0.2 -> 19.0.0 age adoption passing confidence
react-dom (source) 17.0.2 -> 19.0.0 age adoption passing confidence

Release Notes

facebook/react (react)

v19.0.0

Compare Source

v18.3.1

Compare Source

v18.3.0

Compare Source

v18.2.0

Compare Source

React DOM
React DOM Server
Server Components (Experimental)

v18.1.0

Compare Source

React DOM
React DOM Server
ESLint Plugin: React Hooks
Use Subscription

v18.0.0

Compare 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
  • useId is 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.
  • startTransition and useTransition let 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).
  • useDeferredValue lets 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.
  • useSyncExternalStore is a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need for useEffect when implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.
  • useInsertionEffect is 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 to render or unmount. Use it instead of ReactDOM.render. New features in React 18 don't work without it.
  • hydrateRoot: New method to hydrate a server rendered application. Use it instead of ReactDOM.hydrate in conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.

Both createRoot and hydrateRoot accept a new option called onRecoverableError in case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will use reportError, or console.error in the older browsers.

React DOM Server

These new APIs are now exported from react-dom/server and 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 renderToString method keeps working but is discouraged.

facebook/react (react-dom)

v19.0.0

Compare Source

v18.3.1

Compare Source

v18.3.0

Compare Source

v18.2.0

Compare Source

React DOM
React DOM Server
Server Components (Experimental)

v18.1.0

Compare Source

React DOM
React DOM Server
ESLint Plugin: React Hooks
Use Subscription

v18.0.0

Compare 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
  • useId is 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.
  • startTransition and useTransition let 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).
  • useDeferredValue lets 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.
  • useSyncExternalStore is a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need for useEffect when implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.
  • useInsertionEffect is 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 to render or unmount. Use it instead of ReactDOM.render. New features in React 18 don't work without it.
  • hydrateRoot: New method to hydrate a server rendered application. Use it instead of ReactDOM.hydrate in conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.

Both createRoot and hydrateRoot accept a new option called onRecoverableError in case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will use reportError, or console.error in the older browsers.

React DOM Server

These new APIs are now exported from react-dom/server and 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 renderToString method 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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented Feb 24, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
michel-golfier ❌ Failed (Inspect) Feb 17, 2025 1:53pm
michelgolfier ❌ Failed (Inspect) Feb 17, 2025 1:53pm

@socket-security
Copy link

socket-security bot commented Mar 24, 2023

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 937461a to d51ae20 Compare March 27, 2023 19:24
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d51ae20 to 7ee7d18 Compare March 30, 2023 00:01
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7ee7d18 to 2531681 Compare April 3, 2023 11:05
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 2531681 to abaa456 Compare April 17, 2023 09:34
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from abaa456 to 024e173 Compare April 17, 2023 17:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 024e173 to f4b274c Compare May 28, 2023 11:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f4b274c to ca47f91 Compare June 2, 2023 17:40
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ca47f91 to f671c4f Compare June 7, 2023 22:23
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f671c4f to cc24ca1 Compare June 10, 2023 11:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from cc24ca1 to d6d33b7 Compare June 10, 2023 16:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d6d33b7 to 895865b Compare June 12, 2023 23:06
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 895865b to 5e43a2f Compare June 19, 2023 13:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5e43a2f to 81f133d Compare June 23, 2023 21:32
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from fd47b1d to 483b12c Compare October 24, 2024 23:34
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 483b12c to d0fd98a Compare December 4, 2024 19:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d0fd98a to b4e7988 Compare December 5, 2024 20:23
@renovate renovate bot changed the title chore(deps): update react monorepo to v18 (major) chore(deps): update react monorepo to v19 (major) Dec 5, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from b4e7988 to 3453f14 Compare December 7, 2024 08:54
@renovate renovate bot changed the title chore(deps): update react monorepo to v19 (major) fix(deps): update react monorepo to v19 (major) Dec 10, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 3453f14 to 64a0783 Compare December 22, 2024 20:28
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 64a0783 to 8218698 Compare January 6, 2025 14:33
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8218698 to 00b2a6d Compare January 9, 2025 03:57
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 00b2a6d to 927ba40 Compare January 12, 2025 14:23
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 927ba40 to 1a2d399 Compare January 13, 2025 02:29
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 1a2d399 to 0fd92b9 Compare January 14, 2025 11:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0fd92b9 to 9ea8dbe Compare January 25, 2025 18:40
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9ea8dbe to 3e6e839 Compare February 16, 2025 16:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants