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

Update react monorepo (major) #20

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

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 17.0.83 -> 19.0.3 age adoption passing confidence
react (source) ^17.0.2 || ^18.0.0 -> ^19.0.0 age adoption passing confidence
react (source) 17.0.2 -> 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.


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.

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from bcdb498 to bc8bfa0 Compare April 26, 2022 21:55
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from bc8bfa0 to 282381b Compare June 18, 2022 15:21
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from c6903bc to f1016da Compare June 27, 2022 18:52
@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f1016da to 679f71d Compare November 23, 2022 08:18
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 679f71d to 1fed2b9 Compare December 7, 2022 23:27
@sonarqubecloud
Copy link

sonarqubecloud bot commented Dec 7, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from c719451 to faf4e46 Compare January 14, 2023 07:33
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from faf4e46 to e37035d Compare February 8, 2023 12:04
@renovate renovate bot changed the title Update dependency react from v17.0.2 to v18 Update react monorepo (major) Feb 24, 2023
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from e37035d to 6496ff0 Compare February 24, 2023 13:03
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 5 times, most recently from a80b6de to f145610 Compare March 24, 2023 16:21
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 5 times, most recently from 8c976d1 to 34f32dc Compare April 2, 2023 11:33
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 4 times, most recently from 5768abd to 448bde4 Compare April 10, 2023 17:59
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from c155988 to 450fbf7 Compare April 17, 2023 18:01
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from 12d0487 to 785cc86 Compare April 16, 2024 00:45
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 785cc86 to 0341fc3 Compare April 25, 2024 20:21
@renovate renovate bot changed the title Update react monorepo (major) Update react monorepo from v17.0.74 to v18 (major) Apr 25, 2024
@renovate renovate bot changed the title Update react monorepo from v17.0.74 to v18 (major) Update react monorepo (major) Apr 26, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 6c225df to 055f7db Compare April 26, 2024 21:41
@renovate renovate bot changed the title Update react monorepo (major) Update react monorepo from v17.0.74 to v18 (major) Apr 26, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 055f7db to ef43cf0 Compare May 11, 2024 12:30
@renovate renovate bot changed the title Update react monorepo from v17.0.74 to v18 (major) Update react monorepo (major) May 11, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ef43cf0 to f900de4 Compare May 23, 2024 22:51
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f900de4 to 9b5cd2d Compare August 20, 2024 23:37
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 9b5cd2d to b832ba3 Compare August 30, 2024 13:03
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 3 times, most recently from ad5f0f4 to 9e5b90f Compare September 19, 2024 19:40
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 9c0f61d to 859e0d1 Compare September 27, 2024 18:08
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 859e0d1 to 922e78e Compare October 2, 2024 17:07
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 922e78e to 16138e2 Compare October 23, 2024 06:49
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch 2 times, most recently from 35fee38 to f268bda Compare December 5, 2024 20:31
@renovate renovate bot changed the title Update react monorepo (major) Update react monorepo from v17.0.74 to v19 (major) Dec 5, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f268bda to 3621568 Compare December 6, 2024 17:57
@renovate renovate bot changed the title Update react monorepo from v17.0.74 to v19 (major) Update react monorepo (major) Dec 6, 2024
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 3621568 to 002e977 Compare December 18, 2024 16:09
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 002e977 to 6e2a5b1 Compare January 2, 2025 17:29
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 6e2a5b1 to 2749b54 Compare January 6, 2025 15:26
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