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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 17.0.40 -> 18.3.12 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 - 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.

@github-actions github-actions bot requested a deployment to doc-demo-app-v2-renovate-major-react-monorepo-682559 March 29, 2022 17:25 In progress
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 58aaf86 to 9633be6 Compare April 26, 2022 22:17
@github-actions github-actions bot temporarily deployed to doc-demo-app-v2-renovate-major-react-monorepo-682559 April 26, 2022 22:20 Inactive
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9633be6 to 9de08da Compare June 18, 2022 21:29
@renovate renovate bot changed the title fix(deps): update react monorepo to v18 (major) chore(deps): update react monorepo to v18 (major) Mar 16, 2023
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9de08da to 647d07a Compare March 16, 2023 12:04
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 647d07a to 3ad724e Compare March 24, 2023 23:09
@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 3 times, most recently from f1725c6 to 320ba78 Compare April 3, 2023 09:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 4889ff4 to a3416fa Compare April 17, 2023 18:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 5831157 to 6f9f0de Compare June 1, 2023 22:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from bfd5c7d to e3134f4 Compare June 12, 2023 19:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from baaa4ef to 0573e44 Compare June 23, 2023 21:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0573e44 to 48d6828 Compare July 13, 2023 17:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 3435311 to 1f9ea11 Compare July 31, 2023 23:17
@socket-security
Copy link

socket-security bot commented Jul 31, 2023

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@types/react@18.3.12 None 0 439 kB types
npm/react-dom@18.3.1 environment 0 4.51 MB react-bot
npm/react@18.3.1 environment 0 318 kB react-bot
npm/scheduler@0.23.2 environment 0 93.4 kB react-bot

🚮 Removed packages: npm/@types/react@17.0.40, npm/@types/scheduler@0.16.2, npm/react-dom@17.0.2, npm/react@17.0.2, npm/scheduler@0.20.2

View full report↗︎

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 1f9ea11 to 7a96946 Compare August 8, 2023 07:48
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 32c3df5 to a0f5e72 Compare March 18, 2024 16:04
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 5 times, most recently from 273dad4 to ce481b2 Compare March 27, 2024 18:48
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from b099a0f to 41d1ff3 Compare April 9, 2024 01:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 3d6f6f5 to 26f6bca Compare April 16, 2024 00:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from d1e0c71 to 9b55d45 Compare April 26, 2024 22:11
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9b55d45 to 7785721 Compare May 11, 2024 11:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7785721 to f11e029 Compare May 23, 2024 22:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f11e029 to 5d764e3 Compare August 20, 2024 21:13
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5d764e3 to 2c852d3 Compare August 30, 2024 10:39
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 9fa0996 to 2cdd834 Compare September 19, 2024 22:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 739d544 to b06ec8b Compare September 27, 2024 16:41
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from b06ec8b to 76562d2 Compare October 2, 2024 19:59
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 76562d2 to 84183fa Compare October 23, 2024 09:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants