Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

chore(deps): update react monorepo to v18 (major) #293

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 13, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 17.0.47 -> 18.3.11 age adoption passing confidence
react (source) 17.0.2 -> 18.3.1 age adoption passing confidence
react-dom (source) 17.0.2 -> 18.3.1 age adoption passing confidence

Release Notes

facebook/react (react)

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)

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 - "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.


  • 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 Jun 13, 2022

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

Name Status Preview Comments Updated (UTC)
headlesscommerce-org ❌ Failed (Inspect) Oct 2, 2024 6:55pm

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 898fc81 to 5129fda Compare June 14, 2022 23:05
@renovate renovate bot changed the title fix(deps): update react monorepo to v18 (major) chore(deps): update react monorepo to v18 (major) Mar 17, 2023
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5129fda to 52eaba8 Compare March 17, 2023 08:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 52eaba8 to 2310771 Compare March 24, 2023 16:32
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 2310771 to cd718b9 Compare March 27, 2023 20:34
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from cd718b9 to 4c992e0 Compare March 29, 2023 20:59
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 4c992e0 to a6e1219 Compare April 3, 2023 08:56
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a6e1219 to 5c304a0 Compare April 17, 2023 13:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5c304a0 to 3106d2f Compare April 17, 2023 18:44
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 3106d2f to 0a56a1e Compare June 1, 2023 03:57
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0a56a1e to 87dc6aa Compare June 1, 2023 22:29
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 87dc6aa to 11fe738 Compare June 8, 2023 00:15
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 11fe738 to c2b7e1d Compare June 10, 2023 09:22
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from c2b7e1d to 7f2f0df Compare June 10, 2023 19:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7f2f0df to c437849 Compare June 12, 2023 19:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 16aeb2d to 8783c61 Compare April 15, 2024 22:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8783c61 to 4b686da Compare April 25, 2024 20:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 4b686da to 8b59a0d Compare April 26, 2024 18:50
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8b59a0d to d8ff202 Compare April 26, 2024 21:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d8ff202 to c1143f7 Compare May 11, 2024 11:07
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from c1143f7 to 11fdc3c Compare May 23, 2024 21:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 11fdc3c to 5874528 Compare August 20, 2024 21:08
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5874528 to 9fb7976 Compare August 31, 2024 08:30
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9fb7976 to b53a686 Compare September 16, 2024 10:53
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from b53a686 to f509ad7 Compare September 17, 2024 10:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f509ad7 to 14f7399 Compare September 19, 2024 19:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 14f7399 to d9a4f90 Compare September 24, 2024 17:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d9a4f90 to 1aa22b3 Compare September 27, 2024 16:30
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants