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

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

Conversation

renovate[bot]
Copy link

@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) 16.13.1 -> 19.0.0 age adoption passing confidence
react-dom (source) 16.13.1 -> 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.

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

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 is behind base branch, 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.

@vercel
Copy link

vercel bot commented Mar 26, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/neontribe/neontribe-www/C6cPqYbY1VEtDpnd948e9JirizBa
✅ Preview: https://neontribe-www-git-renovate-major-react-monorepo-neontribe.vercel.app

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 75f5a83 to 81206f8 Compare March 30, 2020 10:53
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 81206f8 to 078986d Compare March 30, 2020 13:06
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 078986d to 32446c6 Compare April 1, 2020 11:06
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 32446c6 to 2cd4f63 Compare April 3, 2020 10:05
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 2cd4f63 to ce208b2 Compare May 1, 2020 16:22
@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 from ce208b2 to b789a27 Compare May 12, 2020 16:51
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from b789a27 to fabb5e8 Compare May 13, 2020 17:17
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from fabb5e8 to 43a1f1f Compare May 26, 2020 16:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 43a1f1f to e9a91de Compare May 27, 2020 03:01
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 0562860 to f8e9c16 Compare June 12, 2020 09:54
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f8e9c16 to 99e389b Compare June 12, 2020 15:06
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 99e389b to 117b2a5 Compare June 12, 2020 16:03
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8a89268 to eef90c2 Compare June 10, 2024 08:54
@renovate renovate bot changed the title Update react monorepo (major) chore(deps): update react monorepo (major) Jun 10, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from eef90c2 to f719af2 Compare June 10, 2024 09:56
@renovate renovate bot changed the title chore(deps): update react monorepo (major) Update react monorepo (major) Jun 10, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f719af2 to 8f09ab3 Compare July 5, 2024 14:40
@renovate renovate bot changed the title Update react monorepo (major) chore(deps): update react monorepo (major) Jul 5, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8f09ab3 to 5e8fc7b Compare July 24, 2024 09:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5e8fc7b to 00d6fbd Compare August 14, 2024 09:42
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 00d6fbd to 8b7927a Compare September 3, 2024 16:04
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8b7927a to 8fce4bd Compare September 9, 2024 13:25
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8fce4bd to 8f29b40 Compare October 11, 2024 16:19
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 8f29b40 to 5a74fc9 Compare December 5, 2024 20:35
@renovate renovate bot changed the title chore(deps): update react monorepo (major) fix(deps): update react monorepo (major) Dec 10, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 5a74fc9 to f83e0ff Compare January 14, 2025 18:57
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f83e0ff to ea551f5 Compare January 16, 2025 12:17
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants