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 to v18 (major) #549

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) ~17.0.39 -> ~18.3.0 age adoption passing confidence
@types/react-dom (source) ~17.0.19 -> ~18.3.0 age adoption passing confidence
react (source) ~17.0.2 -> ~18.3.0 age adoption passing confidence
react-dom (source) ~17.0.2 -> ~18.3.0 age adoption passing confidence

Release Notes

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.

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.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled because a matching PR was automerged previously.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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
Copy link
Contributor Author

renovate bot commented Jun 14, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 8 workspace projects
.                                        |  WARN  There are cyclic workspace dependencies: /tmp/renovate/repos/github/NiGhTTraX/mugshot/packages/contracts, /tmp/renovate/repos/github/NiGhTTraX/mugshot/packages/mugshot
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 16, reused 0, downloaded 12, added 0
Progress: resolved 22, reused 0, downloaded 18, added 0
packages/website                         |  WARN  deprecated @docusaurus/module-type-aliases@2.0.0-beta.ff31de0ff
packages/website                         |  WARN  deprecated @docusaurus/core@2.0.0-beta.ff31de0ff
Progress: resolved 43, reused 0, downloaded 39, added 0
packages/website                         |  WARN  deprecated @docusaurus/preset-classic@2.0.0-beta.ff31de0ff
Progress: resolved 58, reused 0, downloaded 54, added 0
Progress: resolved 124, reused 0, downloaded 120, added 0
Progress: resolved 198, reused 0, downloaded 194, added 0
Progress: resolved 252, reused 0, downloaded 248, added 0
Progress: resolved 281, reused 0, downloaded 277, added 0
Progress: resolved 323, reused 0, downloaded 319, added 0
Progress: resolved 353, reused 0, downloaded 353, added 0
Progress: resolved 440, reused 0, downloaded 440, added 0
Progress: resolved 497, reused 0, downloaded 497, added 0
Progress: resolved 580, reused 0, downloaded 580, added 0
Progress: resolved 663, reused 0, downloaded 661, added 0
Progress: resolved 698, reused 0, downloaded 697, added 0
Progress: resolved 792, reused 0, downloaded 791, added 0
Progress: resolved 819, reused 0, downloaded 818, added 0
Progress: resolved 908, reused 0, downloaded 907, added 0
Progress: resolved 1021, reused 0, downloaded 1014, added 0
Progress: resolved 1132, reused 0, downloaded 1124, added 0
Progress: resolved 1212, reused 0, downloaded 1204, added 0
Progress: resolved 1264, reused 0, downloaded 1256, added 0
Progress: resolved 1288, reused 0, downloaded 1280, added 0
Progress: resolved 1374, reused 0, downloaded 1366, added 0
Progress: resolved 1500, reused 0, downloaded 1492, added 0
Progress: resolved 1608, reused 0, downloaded 1600, added 0
Progress: resolved 1710, reused 0, downloaded 1702, added 0
Progress: resolved 1833, reused 0, downloaded 1824, added 0
Progress: resolved 1993, reused 0, downloaded 1984, added 0
 WARN  23 deprecated subdependencies found: @docusaurus/cssnano-preset@2.0.0-beta.ff31de0ff, @docusaurus/mdx-loader@2.0.0-beta.ff31de0ff, @docusaurus/plugin-content-blog@2.0.0-beta.ff31de0ff, @docusaurus/plugin-content-docs@2.0.0-beta.ff31de0ff, @docusaurus/plugin-content-pages@2.0.0-beta.ff31de0ff, @docusaurus/plugin-debug@2.0.0-beta.ff31de0ff, @docusaurus/plugin-google-analytics@2.0.0-beta.ff31de0ff, @docusaurus/plugin-google-gtag@2.0.0-beta.ff31de0ff, @docusaurus/plugin-sitemap@2.0.0-beta.ff31de0ff, @docusaurus/theme-classic@2.0.0-beta.ff31de0ff, @docusaurus/theme-common@2.0.0-beta.ff31de0ff, @docusaurus/theme-search-algolia@2.0.0-beta.ff31de0ff, @docusaurus/types@2.0.0-beta.ff31de0ff, @docusaurus/utils-validation@2.0.0-beta.ff31de0ff, @docusaurus/utils@2.0.0-beta.ff31de0ff, @npmcli/move-file@2.0.0, chokidar@2.1.8, fsevents@1.2.13, querystring@0.2.0, resolve-url@0.2.1, svgo@1.3.2, urix@0.1.0, uuid@3.4.0
Progress: resolved 2066, reused 0, downloaded 2057, added 0
Progress: resolved 2066, reused 0, downloaded 2057, added 0, done
 ERR_PNPM_PEER_DEP_ISSUES  Unmet peer dependencies

packages/website
├─┬ @docusaurus/core 2.0.0-beta.ff31de0ff
│ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
│ ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
│ ├─┬ react-helmet 6.1.0
│ │ └─┬ react-side-effect 2.1.1
│ │   └── ✕ unmet peer react@"^16.3.0 || ^17.0.0": found 18.3.0
│ └─┬ react-router 5.2.1
│   └─┬ mini-create-react-context 0.4.1
│     └── ✕ unmet peer react@"^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0": found 18.3.0
└─┬ @docusaurus/preset-classic 2.0.0-beta.ff31de0ff
  ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-content-blog 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └─┬ @docusaurus/mdx-loader 2.0.0-beta.ff31de0ff
  │   ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │   ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  │   └─┬ @mdx-js/react 1.6.22
  │     └── ✕ unmet peer react@"^16.13.1 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-content-docs 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-content-pages 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-debug 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └─┬ react-json-view 1.21.3
  │   ├── ✕ unmet peer react@"^17.0.0 || ^16.3.0 || ^15.5.4": found 18.3.0
  │   ├── ✕ unmet peer react-dom@"^17.0.0 || ^16.3.0 || ^15.5.4": found 18.3.0
  │   ├─┬ flux 4.0.3
  │   │ └── ✕ unmet peer react@"^15.0.2 || ^16.0.0 || ^17.0.0": found 18.3.0
  │   └─┬ react-textarea-autosize 8.3.3
  │     ├── ✕ unmet peer react@"^16.8.0 || ^17.0.0": found 18.3.0
  │     ├─┬ use-composed-ref 1.2.1
  │     │ └── ✕ unmet peer react@"^16.8.0 || ^17.0.0": found 18.3.0
  │     └─┬ use-latest 1.2.0
  │       ├── ✕ unmet peer react@"^16.8.0 || ^17.0.0": found 18.3.0
  │       └─┬ use-isomorphic-layout-effect 1.1.1
  │         └── ✕ unmet peer react@"^16.8.0 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-google-analytics 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-google-gtag 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/plugin-sitemap 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  ├─┬ @docusaurus/theme-classic 2.0.0-beta.ff31de0ff
  │ ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │ ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  │ └─┬ @docusaurus/theme-common 2.0.0-beta.ff31de0ff
  │   ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
  │   └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
  └─┬ @docusaurus/theme-search-algolia 2.0.0-beta.ff31de0ff
    ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
    ├── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0
    ├─┬ @docsearch/react 3.0.0-alpha.42
    │ ├── ✕ unmet peer react@">= 16.8.0 < 18.0.0": found 18.3.0
    │ ├── ✕ unmet peer react-dom@">= 16.8.0 < 18.0.0": found 18.3.0
    │ └── ✕ unmet peer @types/react@">= 16.8.0 < 18.0.0": found 18.3.0
    └─┬ @docusaurus/theme-common 2.0.0-beta.ff31de0ff
      ├── ✕ unmet peer react@"^16.8.4 || ^17.0.0": found 18.3.0
      └── ✕ unmet peer react-dom@"^16.8.4 || ^17.0.0": found 18.3.0

hint: If you don't want pnpm to fail on peer dependency issues, add "strict-peer-dependencies=false" to an .npmrc file at the root of your project.


@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from f53b65c to 242a62e Compare April 25, 2024 17:24
@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 242a62e to 0577e0a Compare April 25, 2024 22:56
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