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

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
eslint-plugin-react-hooks (source) 4.6.0 -> 5.0.0 age adoption passing confidence
react (source) 17.0.2 -> 18.3.1 age adoption passing confidence
react-dom (source) 17.0.2 -> 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

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

renovate bot commented Mar 29, 2022

⚠ 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: package-lock.json
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/icons@4.11.3
npm WARN node_modules/@material-ui/icons
npm WARN   @material-ui/icons@"4.11.3" from the root project
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/icons@4.11.3
npm WARN node_modules/@material-ui/icons
npm WARN   @material-ui/icons@"4.11.3" from the root project
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: next-offline@5.0.5
npm ERR! Found: webpack@5.73.0
npm ERR! node_modules/webpack
npm ERR!   dev webpack@"5.73.0" from the root project
npm ERR!   peerOptional webpack@"^4 || ^5" from @next/react-refresh-utils@11.1.4
npm ERR!   node_modules/@next/react-refresh-utils
npm ERR!     @next/react-refresh-utils@"11.1.4" from next@11.1.4
npm ERR!     node_modules/next
npm ERR!       next@"11.1.4" from the root project
npm ERR!       2 more (next-env, next-offline)
npm ERR!   2 more (copy-webpack-plugin, terser-webpack-plugin)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.19.1" from next-offline@5.0.5
npm ERR! node_modules/next-offline
npm ERR!   next-offline@"5.0.5" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: webpack@4.47.0
npm ERR! node_modules/webpack
npm ERR!   peer webpack@"^4.19.1" from next-offline@5.0.5
npm ERR!   node_modules/next-offline
npm ERR!     next-offline@"5.0.5" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-04-26T19_27_23_159Z-debug-0.log

@vercel
Copy link

vercel bot commented Mar 29, 2022

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/williamluke/Nitro/BioeCpDtSGAAzNLTQ2ungSU4Y9jS
✅ Preview: https://nitro-git-renovate-major-react-monorepo-williamluke.vercel.app

@sonarcloud
Copy link

sonarcloud bot commented Mar 29, 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
0.0% 0.0% Duplication

@vercel
Copy link

vercel bot commented Jun 18, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
Nitro ✅ Ready (Inspect) Visit Preview Jun 18, 2022 at 7:55PM (UTC)

@sonarcloud
Copy link

sonarcloud bot commented Jun 18, 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
0.0% 0.0% Duplication

Copy link

vercel bot commented Apr 25, 2024

Deployment failed with the following error:

Environment Variable "AUTH0_DOMAIN" references Secret "auth0-domain", which does not exist.

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from 083699f to ea8786e Compare April 26, 2024 19:27
Copy link

sonarcloud bot commented Apr 26, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/major-react-monorepo branch from ea8786e to 0b50954 Compare October 11, 2024 16:37
@renovate renovate bot changed the title Update react monorepo to v18 (major) Update react monorepo (major) Oct 11, 2024
Copy link
Contributor Author

renovate bot commented Oct 11, 2024

⚠️ 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: package-lock.json
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: eslint-plugin-react-hooks@4.6.0
npm WARN node_modules/eslint-plugin-react-hooks
npm WARN   dev eslint-plugin-react-hooks@"5.0.0" from the root project
npm WARN   1 more (eslint-config-airbnb)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer eslint-plugin-react-hooks@"^4 || ^3 || ^2.3.0 || ^1.7.0" from eslint-config-airbnb@18.2.1
npm WARN node_modules/eslint-config-airbnb
npm WARN   dev eslint-config-airbnb@"18.2.1" from the root project
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^16.8.0 || ^17.0.0" from @material-ui/icons@4.11.3
npm WARN node_modules/@material-ui/icons
npm WARN   @material-ui/icons@"4.11.3" from the root project
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react@17.0.2
npm WARN node_modules/react
npm WARN   react@"18.3.1" from the root project
npm WARN   14 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react@"17.0.2" from react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/core@4.12.4
npm WARN node_modules/@material-ui/core
npm WARN   @material-ui/core@"4.12.4" from the root project
npm WARN   1 more (@material-ui/icons)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^16.8.0 || ^17.0.0" from @material-ui/icons@4.11.3
npm WARN node_modules/@material-ui/icons
npm WARN   @material-ui/icons@"4.11.3" from the root project
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: nitro@2.0.0
npm WARN Found: react-dom@17.0.2
npm WARN node_modules/react-dom
npm WARN   react-dom@"18.3.1" from the root project
npm WARN   8 more (@material-ui/core, @material-ui/icons, ...)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer react-dom@"^17.0.2" from next@11.1.4
npm WARN node_modules/next
npm WARN   next@"11.1.4" from the root project
npm WARN   2 more (next-env, next-offline)
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm WARN ERESOLVE overriding peer dependency
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: next-offline@5.0.5
npm ERR! Found: webpack@5.73.0
npm ERR! node_modules/webpack
npm ERR!   dev webpack@"5.73.0" from the root project
npm ERR!   peerOptional webpack@"^4 || ^5" from @next/react-refresh-utils@11.1.4
npm ERR!   node_modules/@next/react-refresh-utils
npm ERR!     @next/react-refresh-utils@"11.1.4" from next@11.1.4
npm ERR!     node_modules/next
npm ERR!       next@"11.1.4" from the root project
npm ERR!       2 more (next-env, next-offline)
npm ERR!   2 more (copy-webpack-plugin, terser-webpack-plugin)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.19.1" from next-offline@5.0.5
npm ERR! node_modules/next-offline
npm ERR!   next-offline@"5.0.5" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: webpack@4.47.0
npm ERR! node_modules/webpack
npm ERR!   peer webpack@"^4.19.1" from next-offline@5.0.5
npm ERR!   node_modules/next-offline
npm ERR!     next-offline@"5.0.5" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-10-11T16_37_28_599Z-debug-0.log

Copy link

sonarcloud bot commented Oct 11, 2024

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