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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) >=16.8.0 -> >=18.3.12 age adoption passing confidence
@types/react-dom (source) ^16.9.9 -> ^18.3.1 age adoption passing confidence
eslint-plugin-react-hooks (source) ^4.2.0 -> ^5.0.0 age adoption passing confidence
react (source) ^16.14.0 -> ^18.3.1 age adoption passing confidence
react-dom (source) ^16.14.0 -> ^18.3.1 age adoption passing confidence

Release Notes

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

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

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" (UTC), 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.

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from c1fb149 to cf55ea9 Compare October 22, 2020 12:49
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from cf55ea9 to 487008d Compare April 26, 2021 17:41
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 487008d to ecb9e8f Compare March 29, 2022 18:20
@renovate renovate bot changed the title chore(deps): update react monorepo to v17 (major) chore(deps): update react monorepo to v18 (major) Mar 29, 2022
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ecb9e8f to 8e483f2 Compare May 15, 2022 19:35
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8e483f2 to 0fa2781 Compare June 18, 2022 19:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0fa2781 to 2bf8620 Compare November 20, 2022 21:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from ce01bb2 to 3443029 Compare March 24, 2023 23:41
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from a804504 to e580bc1 Compare March 29, 2023 23:52
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from fc4ef1e to eba65fe Compare June 1, 2023 21:02
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 97e49fb to 5c4a39b Compare June 14, 2023 12:24
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from ac3e015 to 529b63e Compare June 23, 2023 19:00
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 2269da0 to fd3ae3b Compare July 13, 2023 19:58
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 768d9bf to fdb025a Compare July 31, 2023 22:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 80d8215 to df81919 Compare August 9, 2023 22:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from df81919 to a548eff Compare August 22, 2023 20:05
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from a548eff to c42c174 Compare September 18, 2023 18:08
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 802454b to 8622022 Compare October 1, 2023 17:36
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8622022 to 3dbb774 Compare October 4, 2023 15:21
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 5 times, most recently from 488fbe7 to 4871e4c Compare March 28, 2024 19:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 62e6188 to 7448edb Compare April 8, 2024 23:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 1602492 to 1ce4834 Compare April 15, 2024 23:27
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from f98312f to 65be176 Compare April 26, 2024 23:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 65be176 to 5b7cc4d Compare May 11, 2024 11:20
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5b7cc4d to 9225866 Compare May 23, 2024 23:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9225866 to 85e6e3f Compare August 20, 2024 21:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 85e6e3f to 832b3dd Compare August 30, 2024 11:12
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from bd093f8 to b444dff Compare September 19, 2024 19:28
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 37bb5a9 to d810f60 Compare September 27, 2024 16:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from d810f60 to 9fabfae Compare October 2, 2024 16:59
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9fabfae to 4f5a4b5 Compare October 11, 2024 15:25
@renovate renovate bot changed the title chore(deps): update react monorepo to v18 (major) chore(deps): update react monorepo (major) Oct 11, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 4f5a4b5 to cd8ca9f Compare October 23, 2024 04:47
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