Update react monorepo #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 minor 18.0.21 -> 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.

👻 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 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 | minor | [`18.0.21` -> `18.3.5`](https://renovatebot.com/diffs/npm/@types%2freact/18.0.21/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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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 6501980f5c to f06c8aee01 2022-10-27 08:17:26 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f06c8aee01 to 0a3d239fcc 2022-10-27 14:04:54 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0a3d239fcc to c4be3b0515 2022-10-31 19:18:14 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c4be3b0515 to f1cf0fa9f9 2022-11-01 19:45:06 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f1cf0fa9f9 to 299c73441f 2022-11-04 20:43:00 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 299c73441f to a042631769 2022-11-13 15:39:00 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a042631769 to d76a5d51f7 2022-11-15 20:20:58 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from d76a5d51f7 to cd6eb3388e 2022-12-01 20:27:39 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from cd6eb3388e to b67e92ff6d 2022-12-02 15:57:33 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from b67e92ff6d to e1ea0847ad 2022-12-05 21:28:53 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from e1ea0847ad to 69253643c3 2022-12-08 23:50:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 69253643c3 to f938ad8b2e 2022-12-10 20:35:21 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f938ad8b2e to 0fa957eb06 2022-12-13 15:54:47 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0fa957eb06 to 07dd62ae12 2022-12-13 22:24:43 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 07dd62ae12 to a51d88762e 2022-12-18 12:14:55 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a51d88762e to a288b90e10 2022-12-26 18:57:37 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a288b90e10 to 785cfb4d2c 2023-01-18 20:31:02 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 785cfb4d2c to c29e641d38 2023-01-30 22:16:54 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c29e641d38 to c4ed5f2209 2023-02-05 00:18:58 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c4ed5f2209 to 8ca6cd5b04 2023-02-05 12:22:19 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8ca6cd5b04 to 4519a37bfc 2023-02-07 09:47:17 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4519a37bfc to 4d3d3481b9 2023-02-11 13:07:55 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4d3d3481b9 to 0c666d1c5b 2023-02-17 21:40:03 +01:00 Compare
kjuulh changed title from Update react monorepo to v18 to Update react monorepo 2023-02-21 22:32:56 +01:00
kjuulh force-pushed renovate/react-monorepo from 0c666d1c5b to 2993a102b8 2023-02-21 22:32:57 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 2993a102b8 to f3906b19b5 2023-02-23 20:49:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f3906b19b5 to 7b2e42bf73 2023-02-26 21:12:03 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7b2e42bf73 to 37a8c8b567 2023-03-02 08:20:00 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 37a8c8b567 to 4605f424d1 2023-03-02 09:51:34 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4605f424d1 to 0c62ad0b2c 2023-03-24 23:22:06 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0c62ad0b2c to 56e7f89113 2023-03-27 21:06:39 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 56e7f89113 to f09940e2cf 2023-03-29 00:12:38 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f09940e2cf to 3b89436bc6 2023-04-02 21:19:04 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3b89436bc6 to eec247545f 2023-04-03 22:26:32 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from eec247545f to 92e6cea94f 2023-04-10 13:18:11 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 92e6cea94f to f451900636 2023-04-12 17:29:30 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f451900636 to 38d1872fab 2023-04-17 18:47:36 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 38d1872fab to e2449691b9 2023-04-17 19:31:29 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from e2449691b9 to 0edfd4e28b 2023-04-21 22:57:27 +02:00 Compare
kjuulh changed title from Update react monorepo to Update react monorepo to v18.2.0 2023-04-26 22:07:52 +02:00
kjuulh force-pushed renovate/react-monorepo from 0edfd4e28b to 5085e5b562 2023-04-26 22:07:52 +02:00 Compare
kjuulh changed title from Update react monorepo to v18.2.0 to Update react monorepo 2023-05-03 18:33:27 +02:00
kjuulh force-pushed renovate/react-monorepo from 5085e5b562 to 8f681c9f66 2023-05-03 18:33:27 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8f681c9f66 to f98849a17b 2023-05-03 23:02:00 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f98849a17b to 971538e108 2023-05-04 21:00:47 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 971538e108 to 442da91492 2023-05-06 14:06:50 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 442da91492 to 3ae8b39566 2023-05-24 16:51:46 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3ae8b39566 to 83b499610d 2023-06-08 00:06:08 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 83b499610d to 467fc5d05a 2023-06-10 10:21:44 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 467fc5d05a to 0e12706a13 2023-06-10 17:33:06 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0e12706a13 to dfc46ac890 2023-06-12 21:14:27 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from dfc46ac890 to 179951db29 2023-06-19 14:49:06 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 179951db29 to 8037334e48 2023-06-23 20:53:42 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8037334e48 to e40b2c73b7 2023-07-23 12:53:08 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from e40b2c73b7 to 532ce2401e 2023-07-25 00:23:53 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 532ce2401e to b1caf95007 2023-07-26 20:19:31 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from b1caf95007 to a05b5a2055 2023-07-31 22:58:04 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a05b5a2055 to 5e3793123e 2023-08-08 08:47:43 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5e3793123e to 6f735dbb14 2023-08-09 21:16:24 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6f735dbb14 to 4f79ed0eee 2023-08-22 20:41:24 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 4f79ed0eee to 8b3415b74e 2023-09-18 19:33:59 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8b3415b74e to 6c19e9cc23 2023-09-26 16:31:48 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6c19e9cc23 to 16151f7a73 2023-10-01 12:16:34 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 16151f7a73 to a1a3866a60 2023-10-04 23:11:29 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a1a3866a60 to e69e46c579 2023-10-09 17:20:11 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from e69e46c579 to 56cda63a88 2023-10-09 19:36:19 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 56cda63a88 to dd257beffb 2023-10-10 22:17:33 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from dd257beffb to 6b1fbc9874 2023-10-18 14:09:31 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6b1fbc9874 to 68b3ed46be 2023-10-19 19:56:08 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 68b3ed46be to a5693d6a1b 2023-10-20 16:38:59 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from a5693d6a1b to e3f709cb1d 2023-10-25 16:51:35 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from e3f709cb1d to 057f1ff2ec 2023-10-26 07:29:31 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 057f1ff2ec to 29ee0abd1b 2023-11-01 23:56:20 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 29ee0abd1b to 599ab1fa77 2023-11-05 10:51:09 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 599ab1fa77 to c25833ba25 2023-11-06 12:59:33 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c25833ba25 to 18ff4227fb 2023-11-07 21:51:03 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 18ff4227fb to d6fb1a0f54 2023-11-21 03:04:02 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from d6fb1a0f54 to 6bf6a8c2b5 2023-11-27 21:20:56 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6bf6a8c2b5 to 07150a5215 2023-12-01 23:15:33 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 07150a5215 to c8d050f054 2023-12-02 18:22:54 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c8d050f054 to 0583f8dee6 2023-12-04 22:11:20 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0583f8dee6 to dd5eab944e 2023-12-09 14:35:11 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from dd5eab944e to df8156ddac 2023-12-12 23:45:24 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from df8156ddac to 3c12d7a989 2023-12-13 02:54:28 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3c12d7a989 to 72001dae0b 2023-12-28 16:39:05 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 72001dae0b to 1b4f96f75e 2024-01-06 11:38:36 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1b4f96f75e to 74b79ab4e3 2024-01-15 10:27:34 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 74b79ab4e3 to 1832edd826 2024-02-01 07:36:16 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1832edd826 to 76c4f36ec5 2024-02-01 08:54:04 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 76c4f36ec5 to cbde0b6779 2024-02-01 11:26:17 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from cbde0b6779 to a1a4d90e35 2024-02-03 01:56:55 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a1a4d90e35 to c4d2c0daeb 2024-02-05 05:30:12 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from c4d2c0daeb to 5962f7f8c7 2024-02-05 20:31:07 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5962f7f8c7 to 790cb24ff1 2024-02-06 11:49:30 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 790cb24ff1 to dbfce03d85 2024-02-17 08:16:01 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from dbfce03d85 to bb294d41cf 2024-02-19 23:00:31 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from bb294d41cf to 9be2a3291c 2024-02-23 09:18:31 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 9be2a3291c to 978e499c96 2024-02-26 21:45:14 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 978e499c96 to 3d89d2f8c7 2024-02-27 11:44:34 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3d89d2f8c7 to 200ec8178e 2024-02-29 14:24:35 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 200ec8178e to e728ed72e8 2024-03-04 19:18:11 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from e728ed72e8 to ac3d59a11e 2024-03-05 10:32:05 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from ac3d59a11e to cebb97eab5 2024-03-06 20:25:12 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from cebb97eab5 to 79f6677e89 2024-03-12 02:14:32 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 79f6677e89 to f1c86955ad 2024-03-14 15:14:34 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f1c86955ad to 92b1e536e1 2024-03-18 14:20:53 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 92b1e536e1 to f66f5e4dfb 2024-03-22 19:17:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from f66f5e4dfb to 82bdcdfd10 2024-03-22 20:51:34 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 82bdcdfd10 to 1e872e1fab 2024-03-25 11:29:00 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1e872e1fab to 6733ec5486 2024-03-26 09:16:06 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6733ec5486 to a407709d21 2024-03-26 20:15:28 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from a407709d21 to 1838ef6b55 2024-03-27 18:06:04 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 1838ef6b55 to ba6f1c2d05 2024-04-02 15:17:26 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from ba6f1c2d05 to 0f589aa980 2024-04-09 01:12:57 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0f589aa980 to 030f842736 2024-04-11 20:08:11 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 030f842736 to 28c69ad986 2024-04-12 00:10:03 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 28c69ad986 to 09b192022c 2024-04-13 11:44:55 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 09b192022c to 9ec4619d42 2024-04-16 00:23:28 +02:00 Compare
kjuulh changed title from Update react monorepo to Update react monorepo to v18.3.0 2024-04-25 22:19:33 +02:00
kjuulh force-pushed renovate/react-monorepo from 9ec4619d42 to da86a4bc90 2024-04-25 22:19:35 +02:00 Compare
kjuulh changed title from Update react monorepo to v18.3.0 to Update react monorepo 2024-04-26 18:53:09 +02:00
kjuulh changed title from Update react monorepo to Update react monorepo to v18.3.1 2024-04-26 23:21:23 +02:00
kjuulh force-pushed renovate/react-monorepo from da86a4bc90 to a534cfe56d 2024-04-26 23:21:26 +02:00 Compare
kjuulh changed title from Update react monorepo to v18.3.1 to Update react monorepo 2024-05-11 12:52:57 +02:00
kjuulh force-pushed renovate/react-monorepo from a534cfe56d to 5665dd10cc 2024-05-11 12:52:59 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 5665dd10cc to 0c47e048e1 2024-05-23 23:08:19 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0c47e048e1 to f1cdfce3b3 2024-08-21 23:11:56 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from f1cdfce3b3 to f876ae40ba 2024-08-30 12:36:06 +02:00 Compare
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
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: rawpotion/man#11
No description provided.