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

Update react monorepo to v18 (major) #262

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 2, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react (source) ^16.8.0 || ^17.0.0 -> ^16.8.0 || ^17.0.0 || ^18.0.0 age adoption passing confidence
react (source) 17.0.2 -> 18.3.1 age adoption passing confidence
react-dom (source) ^16.8.0 || ^17.0.0 -> ^16.8.0 || ^17.0.0 || ^18.0.0 age adoption passing confidence
react-dom (source) 17.0.2 -> 18.3.1 age adoption passing confidence
react-test-renderer (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.

facebook/react (react-test-renderer)

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 - "every weekend" (UTC), 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.


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

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

@renovate renovate bot added the renovate label Apr 2, 2022
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 586b0c7 to 2c7e19f Compare April 9, 2022 04:13
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from ce7f36c to 141f28a Compare April 26, 2022 23:22
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 141f28a to 8071f7f Compare April 30, 2022 04:57
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8071f7f to b3b03de Compare May 14, 2022 05:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 69535aa to 7d2bc52 Compare May 28, 2022 04:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 70f039f to 6480153 Compare June 18, 2022 03:51
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6480153 to f38459a Compare June 25, 2022 03:56
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 4ce70ff to a8fa163 Compare July 9, 2022 04:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a8fa163 to e3a2f96 Compare July 23, 2022 03:10
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e3a2f96 to 05fee9d Compare August 6, 2022 03:07
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 05fee9d to e02f3d0 Compare August 27, 2022 06:06
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 084aa87 to bf8fe17 Compare September 10, 2022 05:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from bf8fe17 to 2f8e55c Compare September 17, 2022 03:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from db07a16 to a0a806e Compare October 1, 2022 05:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 4492c28 to 562594c Compare October 15, 2022 04:05
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 562594c to df8a6af Compare October 22, 2022 05:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from df8a6af to ad915e1 Compare November 5, 2022 04:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ad915e1 to a531b27 Compare November 19, 2022 04:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a531b27 to 6fd90b3 Compare December 3, 2022 03:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6fd90b3 to dfa5077 Compare December 12, 2022 02:11
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from dfa5077 to ec656e6 Compare December 24, 2022 05:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ec656e6 to 5fc8b9c Compare January 7, 2023 04:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5fc8b9c to 7d1d4a2 Compare January 14, 2023 04:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 5e9fddd to e3b17a9 Compare January 21, 2023 18:55
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e3b17a9 to 5a41ddd Compare January 29, 2023 12:48
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5a41ddd to 6a95192 Compare February 25, 2023 07:13
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6a95192 to 6ac4b6a Compare March 18, 2023 02:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6ac4b6a to 636c10c Compare April 1, 2023 09:48
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 636c10c to 3de308c Compare April 29, 2023 04:13
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 3de308c to d4b8a00 Compare May 6, 2023 05:53
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 1b11aca to 39c0e35 Compare May 29, 2023 17:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 39c0e35 to a8cdcf8 Compare June 10, 2023 03:52
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 8e0c5ef to 576dc49 Compare July 15, 2023 04:58
@renovate
Copy link
Contributor Author

renovate bot commented Jul 22, 2023

⚠ Artifact update problem

Renovate 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:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: react-hooks-testing-library@0.6.0
npm error Found: react@18.3.1
npm error node_modules/react
npm error   dev react@"18.3.1" from the root project
npm error   peer react@">=16.8.0" from @testing-library/react-hooks@1.0.3
npm error   node_modules/@testing-library/react-hooks
npm error     @testing-library/react-hooks@"~1.0.2" from react-hooks-testing-library@0.6.0
npm error     node_modules/react-hooks-testing-library
npm error       dev react-hooks-testing-library@"0.6.0" from the root project
npm error   3 more (react-use-promise, react-dom, react-test-renderer)
npm error
npm error Could not resolve dependency:
npm error peer react@"^16.8.0" from react-hooks-testing-library@0.6.0
npm error node_modules/react-hooks-testing-library
npm error   dev react-hooks-testing-library@"0.6.0" from the root project
npm error
npm error Conflicting peer dependency: react@16.14.0
npm error node_modules/react
npm error   peer react@"^16.8.0" from react-hooks-testing-library@0.6.0
npm error   node_modules/react-hooks-testing-library
npm error     dev react-hooks-testing-library@"0.6.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-04-26T17_25_48_734Z-eresolve-report.txt

npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-04-26T17_25_48_734Z-debug-0.log

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 576dc49 to d42b481 Compare July 22, 2023 04:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d42b481 to 987f133 Compare April 25, 2024 20:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 987f133 to b8a2eb0 Compare April 26, 2024 17:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants