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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2020

Mend Renovate

This PR contains the following updates:

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

v17.0.2

Compare Source

React DOM

v17.0.1

Compare Source

React DOM

v17.0.0

Compare Source

Today, we are releasing React 17!

Learn more about React 17 and how to update to it on the official React blog.

React
React DOM
React DOM Server
React Test Renderer
Concurrent Mode (Experimental)
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.

v17.0.2

Compare Source

React DOM

v17.0.1

Compare Source

React DOM

v17.0.0

Compare Source

Today, we are releasing React 17!

Learn more about React 17 and how to update to it on the official React blog.

React
React DOM
React DOM Server
React Test Renderer
Concurrent Mode (Experimental)
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.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 08e77de to 40d806f Compare March 12, 2021 23:47
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 8 times, most recently from d04fe86 to fe21c1e Compare March 22, 2021 23:52
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 0143d8c to c9e64b8 Compare March 30, 2021 10:55
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 149b5ee to fa502a2 Compare April 13, 2021 12:29
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 391ccfe to 4982af8 Compare May 4, 2021 19:11
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 9e7ef38 to bc14e35 Compare May 14, 2021 11:30
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from bc14e35 to b38814f Compare May 15, 2021 09:54
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 6 times, most recently from 6978fa5 to 3c44189 Compare May 29, 2021 09:07
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from be142aa to 5f2a95f Compare July 21, 2021 09:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from e6885ea to 578ba2f Compare July 29, 2021 17:53
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 97c5e66 to 8ab3376 Compare August 10, 2021 08:54
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8ab3376 to 6772288 Compare August 23, 2021 09:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6772288 to c848ffc Compare September 22, 2021 08:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from c848ffc to 8d9cf15 Compare October 1, 2021 09:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 19f7f44 to e5230b8 Compare October 25, 2021 16:33
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e5230b8 to 1413afd Compare November 1, 2021 11:18
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 1413afd to 7d2f51f Compare November 12, 2021 12:53
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7d2f51f to b6883f5 Compare November 22, 2021 12:15
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from b6883f5 to f258753 Compare November 30, 2021 10:30
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f258753 to 96bf104 Compare December 9, 2021 11:05
@renovate renovate bot changed the title chore(deps): update react monorepo to v17 (major) chore(deps): update react monorepo to v18 (major) Apr 24, 2022
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 96bf104 to 8e645bd Compare April 24, 2022 18:47
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8e645bd to 8916b4f Compare May 15, 2022 23:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 2696b1b to a890057 Compare June 18, 2022 15:51
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a890057 to e24abe1 Compare September 25, 2022 14:51
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e24abe1 to cd1bd0c Compare November 20, 2022 11:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from adb70a2 to 0b23374 Compare March 24, 2023 15:15
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0b23374 to 4b0ef13 Compare April 25, 2024 17:11
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 4b0ef13 to 3a5f252 Compare April 26, 2024 19:33
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.

None yet

0 participants