Open renovate[bot] opened 1 year ago
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:
The artifact failure details are included below:
npm notice
npm notice New major version of npm available! 8.19.3 -> 9.2.0
npm notice Changelog: <https://github.com/npm/cli/releases/tag/v9.2.0>
npm notice Run `npm install -g npm@9.2.0` to update!
npm notice
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: react-materialize@3.9.8
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR! react@"^17.0.2" from the root project
npm ERR! peer react@"^16.8.0 || ^17.0.0" from @material-ui/core@4.11.4
npm ERR! node_modules/@material-ui/core
npm ERR! @material-ui/core@"^4.11.4" from the root project
npm ERR! peer @material-ui/core@"^4.0.0" from @material-ui/icons@4.11.2
npm ERR! node_modules/@material-ui/icons
npm ERR! @material-ui/icons@"^4.11.2" from the root project
npm ERR! 1 more (@material-ui/lab)
npm ERR! 12 more (@material-ui/icons, @material-ui/lab, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.12.0" from react-materialize@3.9.8
npm ERR! node_modules/react-materialize
npm ERR! react-materialize@"^3.9.8" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: react@16.14.0
npm ERR! node_modules/react
npm ERR! peer react@"^16.12.0" from react-materialize@3.9.8
npm ERR! node_modules/react-materialize
npm ERR! react-materialize@"^3.9.8" 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/2023-01-02T09_53_20_625Z-debug-0.log
This PR contains the following updates:
^0.3.1
->^0.7.0
Release Notes
facebookexperimental/Recoil (recoil)
### [`v0.7.7`](https://redirect.github.com/facebookexperimental/Recoil/releases/tag/0.7.7) [Compare Source](https://redirect.github.com/facebookexperimental/Recoil/compare/0.7.6...0.7.7) - Fix potential unhandled promise rejection in useRecoilCallback() ([#2075](https://redirect.github.com/facebookexperimental/Recoil/issues/2075)) - Add OSS support for GateKeeper feature toggling via RecoilEnv.RECOIL_GKS_ENABLED ([#2078](https://redirect.github.com/facebookexperimental/Recoil/issues/2078)) - Fix resolving suspense of async selectors used with SSR ([#2073](https://redirect.github.com/facebookexperimental/Recoil/issues/2073), [#1960](https://redirect.github.com/facebookexperimental/Recoil/issues/1960)) - Fix SSR with some versions of React DOM used with Next.JS 13 ([#2082](https://redirect.github.com/facebookexperimental/Recoil/issues/2082), [#2086](https://redirect.github.com/facebookexperimental/Recoil/issues/2086)) ### [`v0.7.6`](https://redirect.github.com/facebookexperimental/Recoil/releases/tag/0.7.6) [Compare Source](https://redirect.github.com/facebookexperimental/Recoil/compare/0.7.5...0.7.6) - Expose flag to disable "duplicate atom key" checking / logging, as it was too noisy in environments such as NextJS or some dev environments using Fast Refresh. ([#733](https://redirect.github.com/facebookexperimental/Recoil/issues/733), [#2020](https://redirect.github.com/facebookexperimental/Recoil/issues/2020), [#2046](https://redirect.github.com/facebookexperimental/Recoil/issues/2046)) - Import RecoilEnv from the recoil package, and set `RecoilEnv.RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED = false` in code to disable the checking and logging. - We also support `process.env.RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED=false` in NodeJS environments such as NextJs - ***Caution***: This disables all checks for duplicate atom keys including legitimate errors, so use with caution! - Workaround for React 18 environments with nested renderers that don't support useSyncExternalStore(). ([#2001](https://redirect.github.com/facebookexperimental/Recoil/issues/2001), [#2010](https://redirect.github.com/facebookexperimental/Recoil/issues/2010)) ### [`v0.7.5`](https://redirect.github.com/facebookexperimental/Recoil/releases/tag/0.7.5) [Compare Source](https://redirect.github.com/facebookexperimental/Recoil/compare/0.7.4...0.7.5) - Fix useRecoilSnapshot() with React's Fast Refresh during development ([#1891](https://redirect.github.com/facebookexperimental/Recoil/issues/1891)) - Fix useRecoilSnapshot() and recoil-sync with changed browser behavior starting with Chrome v104 ([#1943](https://redirect.github.com/facebookexperimental/Recoil/issues/1943), [#1936](https://redirect.github.com/facebookexperimental/Recoil/issues/1936)) ### [`v0.7.4`](https://redirect.github.com/facebookexperimental/Recoil/releases/tag/0.7.4) [Compare Source](https://redirect.github.com/facebookexperimental/Recoil/compare/0.7.3...0.7.4) - Fix missing Flow types ([#1857](https://redirect.github.com/facebookexperimental/Recoil/issues/1857)) - Cleanup memory leak when using atoms with selector defaults. ([#1821](https://redirect.github.com/facebookexperimental/Recoil/issues/1821), [#1840](https://redirect.github.com/facebookexperimental/Recoil/issues/1840), [#1844](https://redirect.github.com/facebookexperimental/Recoil/issues/1844)) ### [`v0.7.3`](https://redirect.github.com/facebookexperimental/Recoil/releases/tag/0.7.3) [Compare Source](https://redirect.github.com/facebookexperimental/Recoil/compare/0.7.2...0.7.3) - Enable atoms and selectors to be used in family parameters ([#1172](https://redirect.github.com/facebookexperimental/Recoil/issues/1172)) - Add `parentStoreID_UNSTABLE` to atom effects which is the ID of the parent store it cloned from, such as the host `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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.