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) #33

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 16.9.16 -> 19.0.7 age adoption passing confidence
@types/react-dom (source) 16.9.4 -> 19.0.3 age adoption passing confidence
react (source) 16.12.0 -> 19.0.0 age adoption passing confidence
react-dom (source) 16.12.0 -> 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.

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)

v16.14.0

Compare Source

React

v16.13.1

Compare Source

React DOM
  • Fix bug in legacy mode Suspense where effect clean-up functions are not fired. This only affects users who use Suspense for data fetching in legacy mode, which is not technically supported. (@​acdlite in #​18238)
  • Revert warning for cross-component updates that happen inside class render lifecycles (componentWillReceiveProps, shouldComponentUpdate, and so on). (@​gaearon in #​18330)

v16.13.0

Compare Source

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

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)

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.

@renovate renovate bot added dependencies Pull requests that update a dependency file renovate labels Feb 9, 2021
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 23bc911 to e3dcf98 Compare April 26, 2021 12:26
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e3dcf98 to f24186a Compare April 24, 2022 18:52
@renovate renovate bot changed the title fix(deps): update react monorepo to v17 (major) fix(deps): update react monorepo to v18 (major) Apr 24, 2022
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f24186a to 147d7a6 Compare May 15, 2022 20:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 147d7a6 to ffbf5d7 Compare June 18, 2022 17:50
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ffbf5d7 to 5cd54dd Compare September 25, 2022 21:15
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5cd54dd to edfcfbb Compare November 20, 2022 21:40
@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 edfcfbb to 8990d21 Compare March 16, 2023 15:38
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 7364b2d to 0e3e241 Compare March 29, 2023 19:32
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0e3e241 to 37e134e Compare April 3, 2023 09:32
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 5a6ef1f to a5775b2 Compare April 17, 2023 20:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from e5c2355 to f5aa060 Compare June 1, 2023 22:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from fce84e1 to 4037c41 Compare June 12, 2023 19:32
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 8d82ede to a7dc4cf Compare June 23, 2023 20:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from b3de640 to 95aef09 Compare July 13, 2023 18:11
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from c818297 to 1397b5e Compare July 31, 2023 22:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from c57c41e to 0d014f6 Compare April 26, 2024 22:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0d014f6 to cce1fc4 Compare May 11, 2024 14:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from cce1fc4 to e9de9c0 Compare May 23, 2024 20:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e9de9c0 to 2993cc1 Compare August 20, 2024 21:41
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 2993cc1 to fa71110 Compare August 30, 2024 12:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 88c9085 to 79d3bb4 Compare September 19, 2024 21:55
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 35f32d7 to e65386a Compare September 27, 2024 18:57
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e65386a to 0948303 Compare October 2, 2024 16:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0948303 to ac18e0b Compare October 11, 2024 17:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ac18e0b to 66b5caa Compare October 23, 2024 04:05
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 2104676 to caa511c Compare December 5, 2024 19:27
@renovate renovate bot changed the title chore(deps): update react monorepo to v18 (major) chore(deps): update react monorepo (major) Dec 5, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from caa511c to 15696c7 Compare December 5, 2024 23:05
@renovate renovate bot changed the title chore(deps): update react monorepo (major) chore(deps): update react monorepo to v19 (major) Dec 5, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 530515e to c2e319e Compare December 9, 2024 21:46
@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 c2e319e to b17c27e Compare December 18, 2024 16:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 6339c7c to 36e4e3b Compare January 13, 2025 02:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 36e4e3b to 820dfe1 Compare January 14, 2025 12:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants