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

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, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-react-hooks (source) 2.5.1 -> 4.6.2 age adoption passing confidence
react (source) ^16.8.0 -> ^16.8.0 || ^18.0.0 age adoption passing confidence
react (source) 16.14.0 -> 18.3.1 age adoption passing confidence
react (source) ^16.8.6 -> ^18.0.0 age adoption passing confidence
react-dom (source) ^16.8.0 -> ^16.8.0 || ^18.0.0 age adoption passing confidence
react-dom (source) 16.14.0 -> 18.3.1 age adoption passing confidence
react-dom (source) ^16.8.6 -> ^18.0.0 age adoption passing confidence

Release Notes

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

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)

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)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Europe/Moscow, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from jeetiss March 29, 2020 21:38
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f1133c7 to 6e6fbdb Compare May 1, 2020 16:20
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react-hooks to v3 chore(deps): update dependency eslint-plugin-react-hooks to v4 May 1, 2020
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 7736001 to 4a0f967 Compare May 17, 2020 23:39
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from fbe9cca to 7e6e064 Compare May 27, 2020 02:28
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 7e6e064 to 395cfd1 Compare June 22, 2020 00:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from ec351a3 to b099d79 Compare July 5, 2020 23:59
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 37f1492 to 895c10d Compare July 13, 2020 17:03
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 895c10d to 24051c4 Compare August 3, 2020 00:38
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 9d88467 to 3e6bca8 Compare August 17, 2020 12:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from a89efeb to b246514 Compare September 11, 2020 12:23
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from e847f4c to 921a4ad Compare October 4, 2020 23:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 921a4ad to 5064f9d Compare October 11, 2020 23:40
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5064f9d to 18dd7f6 Compare October 20, 2020 20:25
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-react-hooks to v4 chore(deps): update react monorepo (major) Oct 20, 2020
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 8ddf401 to f2b8b8d Compare October 25, 2020 23:26
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from e232279 to 4eba3b5 Compare November 8, 2020 23:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ae6e89e to 4d28d40 Compare March 1, 2021 01:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from f7e7122 to f7fe36a Compare March 22, 2021 01:12
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 56865d1 to 9cb4a1e Compare March 29, 2021 05:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9cb4a1e to 70709c7 Compare April 4, 2021 22:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 70709c7 to 713cc18 Compare April 12, 2021 02:48
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 713cc18 to 027fac5 Compare April 19, 2021 06:50
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 027fac5 to 7932f3f Compare May 3, 2021 01:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from f3a4733 to 2cd93a8 Compare May 17, 2021 00:14
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from be22650 to 511303b Compare May 30, 2021 23:49
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from d57a773 to 0ede93d Compare June 13, 2021 23:29
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0ede93d to 8493b36 Compare June 20, 2021 23:01
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from b7e6672 to bf07577 Compare July 4, 2021 22:34
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from bf07577 to 0a09c70 Compare July 11, 2021 22:26
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 5d4b5c9 to 1cec1e5 Compare July 25, 2021 22:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 1cec1e5 to 4c8ffa6 Compare August 1, 2021 23:26
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 4c8ffa6 to cee3d3e Compare March 7, 2022 08:04
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from cee3d3e to 6327242 Compare April 24, 2022 18:16
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6327242 to e8cf880 Compare May 15, 2022 19:21
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e8cf880 to 0d7a511 Compare June 23, 2022 21:50
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0d7a511 to 0350eaf Compare May 28, 2023 23:18
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0350eaf to f9d6d1b Compare April 25, 2024 17:18
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f9d6d1b to 368d5da Compare April 26, 2024 19:53
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.

None yet

0 participants