Update react monorepo to v18 #11

Open
kjuulh wants to merge 1 commits from renovate/react-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
@types/react (source) devDependencies major 17.0.38 -> 18.3.5
react (source) dependencies major ^17.0.2 -> ^18.0.0
react-dom (source) dependencies major ^17.0.2 -> ^18.0.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

facebook/react (react)

v18.3.1

Compare Source

  • Export act from react f1338f

v18.3.0

Compare Source

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React
  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #​25383
  • Warn for deprecated defaultProps for function components #​25699
  • Warn when spreading key #​25697
  • Warn when using act from test-utils d4ea75
React DOM
  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #​28874

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: Enabled.

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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | devDependencies | major | [`17.0.38` -> `18.3.5`](https://renovatebot.com/diffs/npm/@types%2freact/17.0.38/18.3.5) | | [react](https://reactjs.org/) ([source](https://github.com/facebook/react/tree/HEAD/packages/react)) | dependencies | major | [`^17.0.2` -> `^18.0.0`](https://renovatebot.com/diffs/npm/react/17.0.2/18.3.1) | | [react-dom](https://reactjs.org/) ([source](https://github.com/facebook/react/tree/HEAD/packages/react-dom)) | dependencies | major | [`^17.0.2` -> `^18.0.0`](https://renovatebot.com/diffs/npm/react-dom/17.0.2/18.3.1) | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>facebook/react (react)</summary> ### [`v18.3.1`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1831-April-26-2024) [Compare Source](https://github.com/facebook/react/compare/v18.3.0...v18.3.1) - Export `act` from `react` [f1338f](https://github.com/facebook/react/commit/f1338f8080abd1386454a10bbf93d67bfe37ce85) ### [`v18.3.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1830-April-25-2024) [Compare Source](https://github.com/facebook/react/compare/v18.2.0...v18.3.0) This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. Read the [React 19 Upgrade Guide](https://react.dev/blog/2024/04/25/react-19-upgrade-guide) for more info. ##### React - Allow writing to `this.refs` to support string ref codemod [909071](https://github.com/facebook/react/commit/9090712fd3ca4e1099e1f92e67933c2cb4f32552) - Warn for deprecated `findDOMNode` outside StrictMode [c3b283](https://github.com/facebook/react/commit/c3b283964108b0e8dbcf1f9eb2e7e67815e39dfb) - Warn for deprecated `test-utils` methods [d4ea75](https://github.com/facebook/react/commit/d4ea75dc4258095593b6ac764289f42bddeb835c) - Warn for deprecated Legacy Context outside StrictMode [415ee0](https://github.com/facebook/react/commit/415ee0e6ea0fe3e288e65868df2e3241143d5f7f) - Warn for deprecated string refs outside StrictMode [#&#8203;25383](https://github.com/facebook/react/pull/25383) - Warn for deprecated `defaultProps` for function components [#&#8203;25699](https://github.com/facebook/react/pull/25699) - Warn when spreading `key` [#&#8203;25697](https://github.com/facebook/react/pull/25697) - Warn when using `act` from `test-utils` [d4ea75](https://github.com/facebook/react/commit/d4ea75dc4258095593b6ac764289f42bddeb835c) ##### React DOM - Warn for deprecated `unmountComponentAtNode` [8a015b](https://github.com/facebook/react/commit/8a015b68cc060079878e426610e64e86fb328f8d) - Warn for deprecated `renderToStaticNodeStream` [#&#8203;28874](https://github.com/facebook/react/pull/28874) ### [`v18.2.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1820-June-14-2022) [Compare Source](https://github.com/facebook/react/compare/v18.1.0...v18.2.0) ##### React DOM - Provide a component stack as a second argument to `onRecoverableError`. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24591](https://github.com/facebook/react/pull/24591)) - Fix hydrating into `document` causing a blank page on mismatch. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24523](https://github.com/facebook/react/pull/24523)) - Fix false positive hydration errors with Suspense. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24480](https://github.com/facebook/react/pull/24480) and [@&#8203;acdlite](https://github.com/acdlite) in [#&#8203;24532](https://github.com/facebook/react/pull/24532)) - Fix ignored `setState` in Safari when adding an iframe. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24459](https://github.com/facebook/react/pull/24459)) ##### React DOM Server - Pass information about server errors to the client. ([@&#8203;salazarm](https://github.com/salazarm) and [@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24551](https://github.com/facebook/react/pull/24551) and [#&#8203;24591](https://github.com/facebook/react/pull/24591)) - Allow to provide a reason when aborting the HTML stream. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24680](https://github.com/facebook/react/pull/24680)) - Eliminate extraneous text separators in the HTML where possible. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24630](https://github.com/facebook/react/pull/24630)) - Disallow complex children inside `<title>` elements to match the browser constraints. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24679](https://github.com/facebook/react/pull/24679)) - Fix buffering in some worker environments by explicitly setting `highWaterMark` to `0`. ([@&#8203;jplhomer](https://github.com/jplhomer) in [#&#8203;24641](https://github.com/facebook/react/pull/24641)) ##### Server Components (Experimental) - Add support for `useId()` inside Server Components. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24172](https://github.com/facebook/react/pull/24172)) ### [`v18.1.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1810-April-26-2022) [Compare Source](https://github.com/facebook/react/compare/v18.0.0...v18.1.0) ##### React DOM - Fix the false positive warning about `react-dom/client` when using UMD bundle. ([@&#8203;alireza-molaee](https://github.com/alireza-molaee) in [#&#8203;24274](https://github.com/facebook/react/pull/24274)) - Fix `suppressHydrationWarning` to work in production too. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24271](https://github.com/facebook/react/pull/24271)) - Fix `componentWillUnmount` firing twice inside of Suspense. ([@&#8203;acdlite](https://github.com/acdlite) in [#&#8203;24308](https://github.com/facebook/react/pull/24308)) - Fix some transition updates being ignored. ([@&#8203;acdlite](https://github.com/acdlite) in [#&#8203;24353](https://github.com/facebook/react/pull/24353)) - Fix `useDeferredValue` causing an infinite loop when passed an unmemoized value. ([@&#8203;acdlite](https://github.com/acdlite) in [#&#8203;24247](https://github.com/facebook/react/pull/24247)) - Fix throttling of revealing Suspense fallbacks. ([@&#8203;sunderls](https://github.com/sunderls) in [#&#8203;24253](https://github.com/facebook/react/pull/24253)) - Fix an inconsistency in whether the props object is the same between renders. ([@&#8203;Andarist](https://github.com/Andarist) and [@&#8203;acdlite](https://github.com/acdlite) in [#&#8203;24421](https://github.com/facebook/react/pull/24421)) - Fix a missing warning about a `setState` loop in `useEffect`. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24298](https://github.com/facebook/react/pull/24298)) - Fix a spurious hydration error. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24404](https://github.com/facebook/react/pull/24404)) - Warn when calling `setState` in `useInsertionEffect`. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24295](https://github.com/facebook/react/pull/24295)) - Ensure the reason for hydration errors is always displayed. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24276](https://github.com/facebook/react/pull/24276)) ##### React DOM Server - Fix escaping for the `bootstrapScriptContent` contents. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24385](https://github.com/facebook/react/pull/24385)) - Significantly improve performance of `renderToPipeableStream`. ([@&#8203;gnoff](https://github.com/gnoff) in [#&#8203;24291](https://github.com/facebook/react/pull/24291)) ##### ESLint Plugin: React Hooks - Fix false positive errors with a large number of branches. ([@&#8203;scyron6](https://github.com/scyron6) in [#&#8203;24287](https://github.com/facebook/react/pull/24287)) - Don't consider a known dependency stable when the variable is reassigned. ([@&#8203;afzalsayed96](https://github.com/afzalsayed96) in [#&#8203;24343](https://github.com/facebook/react/pull/24343)) ##### Use Subscription - Replace the implementation with the `use-sync-external-store` shim. ([@&#8203;gaearon](https://github.com/gaearon) in [#&#8203;24289](https://github.com/facebook/react/pull/24289)) ### [`v18.0.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1800-March-29-2022) [Compare Source](https://github.com/facebook/react/compare/v17.0.2...v18.0.0) Below is a list of all new features, APIs, deprecations, and breaking changes. Read [React 18 release post](https://reactjs.org/blog/2022/03/29/react-v18.html) and [React 18 upgrade guide](https://reactjs.org/blog/2022/03/08/react-18-upgrade-guide.html) 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`](https://developer.mozilla.org/en-US/docs/Web/API/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. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy40MjQuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
kjuulh force-pushed renovate/react-monorepo from b2446d54be to c6ef9782f0 2022-10-27 08:01:01 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from c6ef9782f0 to dd150f2aca 2022-10-27 13:52:10 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from dd150f2aca to f657467c3a 2022-10-28 10:35:52 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f657467c3a to afedce9c83 2022-10-31 19:00:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from afedce9c83 to 00fc88a1a7 2022-11-01 19:28:27 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 00fc88a1a7 to 41e9d62c18 2022-11-04 20:24:45 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 41e9d62c18 to 99eb6ea64d 2022-11-04 22:05:07 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 99eb6ea64d to a7a4b53668 2022-11-09 16:58:49 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a7a4b53668 to bca98ddd15 2022-11-10 09:41:08 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from bca98ddd15 to 3e72a3aeea 2022-11-11 09:36:57 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3e72a3aeea to 32e64d4846 2022-11-12 13:05:31 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 32e64d4846 to 5a0d12b029 2022-11-13 01:28:19 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5a0d12b029 to dc9d0e3d90 2023-01-18 15:10:53 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from dc9d0e3d90 to ed5010e585 2023-01-18 20:17:05 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from ed5010e585 to 0ed44df439 2023-01-31 08:42:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0ed44df439 to 1102ca36d9 2023-02-05 00:08:27 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1102ca36d9 to db0f9fc83c 2023-02-05 12:10:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from db0f9fc83c to eb3949291f 2023-02-07 10:02:48 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from eb3949291f to 126743bf2e 2023-02-11 12:59:03 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 126743bf2e to 2d60805c08 2023-02-17 21:54:51 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 2d60805c08 to d900286502 2023-02-21 22:23:49 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from d900286502 to 5d2ac199df 2023-02-23 20:36:32 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5d2ac199df to 56de8748f5 2023-02-26 21:01:04 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 56de8748f5 to b329c5adfd 2023-03-02 08:07:53 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from b329c5adfd to 3841076197 2023-03-02 09:41:39 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3841076197 to a97e7ada1e 2023-03-24 23:06:02 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a97e7ada1e to 39f5e0e79b 2023-03-27 20:55:16 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 39f5e0e79b to 4e292878cf 2023-03-29 00:30:35 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4e292878cf to 777cb046bf 2023-04-02 21:35:42 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 777cb046bf to 1e13376748 2023-04-03 22:14:37 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1e13376748 to bc61f90039 2023-04-10 13:33:47 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from bc61f90039 to b25598f20a 2023-04-12 17:19:17 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from b25598f20a to 54438bc43e 2023-04-17 19:02:25 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 54438bc43e to 5627d24c1a 2023-04-17 19:23:58 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5627d24c1a to 78fc71e591 2023-04-21 22:47:43 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 78fc71e591 to 3c8c9419a1 2023-04-26 21:52:30 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3c8c9419a1 to 176dc65a58 2023-05-03 18:22:36 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 176dc65a58 to a3bfd46f71 2023-05-03 22:52:01 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a3bfd46f71 to 0c0af2628a 2023-05-04 20:49:26 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0c0af2628a to 2f392a28bc 2023-05-06 13:56:11 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 2f392a28bc to 7b057c20d0 2023-05-18 00:39:48 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7b057c20d0 to e5f6041c4b 2023-05-24 17:04:21 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from e5f6041c4b to 1eb8f2afa7 2023-06-07 23:50:13 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1eb8f2afa7 to 6262480adc 2023-06-10 10:13:21 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6262480adc to 6afdbe2eec 2023-06-10 17:25:04 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6afdbe2eec to 111bdad2ac 2023-06-12 21:29:16 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 111bdad2ac to cec88651a7 2023-06-19 14:41:52 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from cec88651a7 to b004131bd7 2023-06-23 21:09:03 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from b004131bd7 to 4a65c8e164 2023-07-23 12:40:11 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4a65c8e164 to 4b294c5f5b 2023-07-25 00:16:01 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4b294c5f5b to 4af0b71512 2023-07-26 20:11:39 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4af0b71512 to 322df44676 2023-07-31 22:50:42 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 322df44676 to 518e8005fe 2023-08-08 09:02:27 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 518e8005fe to 7a4cf4157e 2023-08-09 21:32:46 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7a4cf4157e to d5513e8a16 2023-08-22 20:57:33 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from d5513e8a16 to 7c5408d889 2023-09-18 19:25:26 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7c5408d889 to 99daa28c31 2023-09-26 16:22:29 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 99daa28c31 to 047016eacf 2023-10-01 12:39:21 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 047016eacf to da406a71df 2023-10-04 23:01:55 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from da406a71df to fc5a6314a8 2023-10-09 17:42:33 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from fc5a6314a8 to 9e15af2607 2023-10-09 19:27:43 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 9e15af2607 to a65b3d0b32 2023-10-10 21:56:43 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a65b3d0b32 to 90fe80a2a3 2023-10-18 14:25:22 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 90fe80a2a3 to 1c03ca2040 2023-10-19 19:47:20 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1c03ca2040 to 396a6029d2 2023-10-20 16:30:25 +02:00 Compare
Author
Owner

⚠ 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
 WARN  The "store" setting has been renamed to "store-dir". Please use the new name.
 WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
Progress: resolved 1, reused 0, downloaded 0, added 0
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
undefined
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

### ⚠ 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 ```  WARN  The "store" setting has been renamed to "store-dir". Please use the new name.  WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left. Progress: resolved 1, reused 0, downloaded 0, added 0  WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left. undefined  ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams ```
kjuulh force-pushed renovate/react-monorepo from 396a6029d2 to 8264edfd35 2023-10-25 16:42:49 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8264edfd35 to 417d6dc970 2023-10-26 07:48:17 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 417d6dc970 to 769a1a946f 2023-11-02 00:22:19 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 769a1a946f to 7ec6f0a4ca 2023-11-05 11:10:06 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7ec6f0a4ca to ca7ace6f88 2023-11-06 12:50:52 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from ca7ace6f88 to b23ac1905b 2023-11-07 21:39:18 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from b23ac1905b to e1800fa5e5 2023-11-21 02:52:59 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from e1800fa5e5 to 1cd99459ce 2023-11-27 21:10:33 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1cd99459ce to f851f2b237 2023-12-01 23:37:12 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f851f2b237 to eccda05e8e 2023-12-02 18:42:11 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from eccda05e8e to 70ff7f9c25 2023-12-04 22:01:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 70ff7f9c25 to 4ca21cc237 2023-12-09 14:26:45 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4ca21cc237 to 52a93bfd39 2023-12-13 00:04:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 52a93bfd39 to eb3febc17a 2023-12-13 02:46:15 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from eb3febc17a to 72d6823357 2023-12-28 16:28:43 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 72d6823357 to 20866cd44f 2024-01-06 10:51:22 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 20866cd44f to 42aaa75baa 2024-01-15 10:18:06 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 42aaa75baa to 960b12a3af 2024-02-01 07:23:49 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 960b12a3af to 718c542c12 2024-02-01 09:21:52 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 718c542c12 to f90c9d49f0 2024-02-01 11:57:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f90c9d49f0 to 0da9536db4 2024-02-03 02:23:21 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0da9536db4 to a002c8f8ae 2024-02-05 05:57:32 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a002c8f8ae to 1054ab4280 2024-02-05 21:23:07 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1054ab4280 to c4c4ae5f8b 2024-02-06 11:23:31 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c4c4ae5f8b to 39a27046bb 2024-02-17 07:50:15 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 39a27046bb to fd6a535933 2024-02-19 23:54:42 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from fd6a535933 to f20acf83a0 2024-02-23 09:46:10 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f20acf83a0 to 7f6470dcce 2024-02-26 20:30:53 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7f6470dcce to 5e71e5e8af 2024-02-27 10:56:28 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5e71e5e8af to 53dd0f8f26 2024-02-29 13:54:33 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 53dd0f8f26 to 1f72171e01 2024-03-04 18:47:52 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1f72171e01 to abaf9f8b38 2024-03-05 11:19:23 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from abaf9f8b38 to 34631790a4 2024-03-06 21:13:14 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 34631790a4 to f5a4256dda 2024-03-12 01:58:09 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f5a4256dda to 79190c3172 2024-03-14 15:47:46 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 79190c3172 to 4eaea86903 2024-03-18 14:52:21 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4eaea86903 to 294c44b05d 2024-03-22 19:49:24 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 294c44b05d to f066ce7d37 2024-03-22 21:12:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f066ce7d37 to 20f1d02760 2024-03-25 11:12:42 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 20f1d02760 to bea4d6880f 2024-03-26 09:47:26 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from bea4d6880f to 227955dd16 2024-03-26 19:58:19 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 227955dd16 to 226c28c30d 2024-03-27 17:49:01 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 226c28c30d to f6850afab7 2024-04-02 15:48:14 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f6850afab7 to 38d30067b6 2024-04-09 01:01:22 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 38d30067b6 to 300fa01ac4 2024-04-11 19:55:54 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 300fa01ac4 to 46d13d4fb3 2024-04-11 23:57:24 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 46d13d4fb3 to 81bfac3af1 2024-04-13 12:10:52 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 81bfac3af1 to 569ce70f08 2024-04-16 00:10:09 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 569ce70f08 to 3b9ad63a4b 2024-04-25 22:44:34 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3b9ad63a4b to 28cf4ad11d 2024-04-26 23:44:27 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 28cf4ad11d to 198a325150 2024-05-11 13:17:06 +02:00 Compare
Author
Owner

⚠️ 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
 WARN  The "store" setting has been renamed to "store-dir". Please use the new name.
 WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
Progress: resolved 1, reused 0, downloaded 0, added 0
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
undefined
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

### ⚠️ 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 ```  WARN  The "store" setting has been renamed to "store-dir". Please use the new name.  WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left. Progress: resolved 1, reused 0, downloaded 0, added 0  WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.  WARN  GET https://registry.npmjs.org/next error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/react error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/react-dom error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.10.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/sass/-/sass-1.50.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.  WARN  GET https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left. undefined  ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams ```
kjuulh force-pushed renovate/react-monorepo from 198a325150 to f1acde67b1 2024-05-23 22:56:28 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f1acde67b1 to a5cae2266e 2024-08-21 22:43:10 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a5cae2266e to 77c2fcbd21 2024-08-30 13:10:19 +02:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/react-monorepo:renovate/react-monorepo
git checkout renovate/react-monorepo
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: wishlist/client#11
No description provided.