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 (major) #274

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-react-hooks (source) 2.5.1 -> 5.1.0 age adoption passing confidence
react (source) 17.0.2 -> 19.0.0 age adoption passing confidence
react-dom (source) 17.0.2 -> 19.0.0 age adoption passing confidence

Release Notes

facebook/react (eslint-plugin-react-hooks)

v5.1.0

Compare Source

v5.0.0

Compare Source

  • New Violations: Component names now need to start with an uppercase letter instead of a non-lowercase letter. This means _Button or _component are no longer valid. (@​kassens) in #​25162

v4.6.2

Compare Source

v4.6.1

Compare Source

v4.6.0

v4.5.0

v4.4.0

  • No changes, this was an automated release together with React 18.

v4.3.0

v4.2.0

  • No changes, this was an automated release together with React 17.

v4.1.2

v4.1.1

v4.1.0

v4.0.8

v4.0.7

v4.0.6

v4.0.5

v4.0.4

v4.0.3

  • Remove the heuristic that checks all Hooks ending with Effect due to too many false positives. (@​gaearon in #​19004)

v4.0.2

v4.0.1

v4.0.0

v3.0.0

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.

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.


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@codesandbox-ci
Copy link

codesandbox-ci bot commented Mar 26, 2020

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit ffadddf:

Sandbox Source
currying-feather-q5by3 Configuration

@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react-hooks to v3 Update dependency eslint-plugin-react-hooks to v3 Mar 27, 2020
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7435718 to f364777 Compare March 28, 2020 09:17
@codecov
Copy link

codecov bot commented Mar 28, 2020

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.58%. Comparing base (3a9319c) to head (1bc4d94).
Report is 15 commits behind head on next.

❗ Current head 1bc4d94 differs from pull request most recent head 06d738e. Consider uploading reports for the commit 06d738e to get more accurate results

Additional details and impacted files
@@           Coverage Diff           @@
##             next     #274   +/-   ##
=======================================
  Coverage   98.58%   98.58%           
=======================================
  Files           8        8           
  Lines         424      424           
  Branches      148      148           
=======================================
  Hits          418      418           
  Misses          6        6           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f364777 to 57e8245 Compare May 1, 2020 16:19
@renovate renovate bot changed the title Update dependency eslint-plugin-react-hooks to v3 Update dependency eslint-plugin-react-hooks to v4 May 1, 2020
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from ffadddf to a7e5a8d Compare May 13, 2020 16:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 0b58b58 to edc4e23 Compare May 27, 2020 00:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from edc4e23 to da7ba37 Compare June 30, 2020 11:31
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 028b18e to 668fc0c Compare July 13, 2020 17:03
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 668fc0c to 3f56904 Compare August 17, 2020 12:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 3f56904 to a94b097 Compare October 28, 2020 10:01
@renovate renovate bot changed the title Update dependency eslint-plugin-react-hooks to v4 chore(deps): update react monorepo (major) Oct 28, 2020
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a94b097 to 2aeeb84 Compare April 26, 2021 15:17
@renovate renovate bot changed the title chore(deps): update react monorepo (major) Update dependency eslint-plugin-react-hooks to v4 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 2aeeb84 to f25fe4d Compare March 7, 2022 13:52
@renovate renovate bot changed the title Update dependency eslint-plugin-react-hooks to v4 Update react monorepo (major) Apr 24, 2022
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f25fe4d to a70c17c Compare April 24, 2022 18:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a70c17c to 09a06a2 Compare May 15, 2022 23:46
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 09a06a2 to 8bf161e Compare June 18, 2022 21:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8bf161e to fd8a749 Compare September 25, 2022 11:50
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from fd8a749 to 4fc99a1 Compare November 20, 2022 09:59
@renovate renovate bot changed the title Update react monorepo (major) chore(deps): update react monorepo (major) Mar 17, 2023
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 0687b40 to 06d738e Compare April 26, 2024 20:15
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 06d738e to 893a48b Compare October 11, 2024 16:07
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 893a48b to 1795323 Compare December 5, 2024 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants