Update react monorepo #193

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 19.0.10 -> 19.2.7
react (source) dependencies minor 19.0.0 -> 19.2.1
react-dom (source) dependencies minor 19.0.0 -> 19.2.1

Release Notes

facebook/react (react)

v19.2.1

Compare Source

React Server Components

v19.2.0

Compare Source

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features
  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools
New React DOM Features
  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.
Notable changes
  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId
All Changes
React
React DOM
React Server Components
React Reconciler

v19.1.2

Compare Source

React Server Components

v19.1.1

Compare Source

React

v19.1.0

Compare Source

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged.

  • An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error.
  • The captureOwnerStack API is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. #​29923, #​32353, #​30306,
    #​32538, #​32529, #​32538
React
  • Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. #​32069, #​32163, #​32224, #​32252
  • Reduced unnecessary client rendering through improved hydration scheduling #​31751
  • Increased priority of client rendered Suspense boundaries #​31776
  • Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. #​31620
  • Reduced garbage collection pressure by improving Suspense boundary retries. #​31667
  • Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed #​31526
  • Fixed a regression causing key warnings for flattened positional children in development mode. #​32117
  • Updated useId to use valid CSS selectors, changing format from :r123: to «r123». #​32001
  • Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. #​32355
  • Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. #​32200
  • Improved consistency across prod and dev to improve compatibility with Google Closure Compiler and bindings #​31808
  • Improve passive effect scheduling for consistent task yielding. #​31785
  • Fixed asserts in React Native when passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent rendering. #​32528
  • Fixed component name resolution for Portal #​32640
  • Added support for beforetoggle and toggle events on the dialog element. #​32479
React DOM
  • Fixed double warning when the href attribute is an empty string #​31783
  • Fixed an edge case where getHoistableRoot() didn’t work properly when the container was a Document #​32321
  • Removed support for using HTML comments (e.g. <!-- -->) as a DOM container. #​32250
  • Added support for <script> and <template> tags to be nested within <select> tags. #​31837
  • Fixed responsive images to be preloaded as HTML instead of headers #​32445
use-sync-external-store
  • Added exports field to package.json for use-sync-external-store to support various entrypoints. #​25231
React Server Components
  • Added unstable_prerender, a new experimental API for prerendering React Server Components on the server #​31724
  • Fixed an issue where streams would hang when receiving new chunks after a global error #​31840, #​31851
  • Fixed an issue where pending chunks were counted twice. #​31833
  • Added support for streaming in edge environments #​31852
  • Added support for sending custom error names from a server so that they are available in the client for console replaying. #​32116
  • Updated the server component wire format to remove IDs for hints and console.log because they have no return value #​31671
  • Exposed registerServerReference in client builds to handle server references in different environments. #​32534
  • Added react-server-dom-parcel package which integrates Server Components with the Parcel bundler #​31725, #​32132, #​31799, #​32294, #​31741

v19.0.1

Compare Source

React Server Components

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 | [`19.0.10` -> `19.2.7`](https://renovatebot.com/diffs/npm/@types%2freact/19.0.10/19.2.7) | | [react](https://react.dev/) ([source](https://github.com/facebook/react/tree/HEAD/packages/react)) | dependencies | minor | [`19.0.0` -> `19.2.1`](https://renovatebot.com/diffs/npm/react/19.0.0/19.2.1) | | [react-dom](https://react.dev/) ([source](https://github.com/facebook/react/tree/HEAD/packages/react-dom)) | dependencies | minor | [`19.0.0` -> `19.2.1`](https://renovatebot.com/diffs/npm/react-dom/19.0.0/19.2.1) | --- ### Release Notes <details> <summary>facebook/react (react)</summary> ### [`v19.2.1`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1921-Dec-3-2025) [Compare Source](https://github.com/facebook/react/compare/v19.2.0...v19.2.1) ##### React Server Components - Bring React Server Component fixes to Server Actions ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;35277](https://github.com/facebook/react/pull/35277)) ### [`v19.2.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1920-October-1st-2025) [Compare Source](https://github.com/facebook/react/compare/v19.1.2...v19.2.0) Below is a list of all new features, APIs, and bug fixes. Read the [React 19.2 release post](https://react.dev/blog/2025/10/01/react-19-2) for more information. ##### New React Features - [`<Activity>`](https://react.dev/reference/react/Activity): A new API to hide and restore the UI and internal state of its children. - [`useEffectEvent`](https://react.dev/reference/react/useEffectEvent) is a React Hook that lets you extract non-reactive logic into an [Effect Event](https://react.dev/learn/separating-events-from-effects#declaring-an-effect-event). - [`cacheSignal`](https://react.dev/reference/react/cacheSignal) (for RSCs) lets your know when the `cache()` lifetime is over. - [React Performance tracks](https://react.dev/reference/dev-tools/react-performance-tracks) appear on the Performance panel’s timeline in your browser developer tools ##### New React DOM Features - Added resume APIs for partial pre-rendering with Web Streams: - [`resume`](https://react.dev/reference/react-dom/server/resume): to resume a prerender to a stream. - [`resumeAndPrerender`](https://react.dev/reference/react-dom/static/resumeAndPrerender): to resume a prerender to HTML. - Added resume APIs for partial pre-rendering with Node Streams: - [`resumeToPipeableStream`](https://react.dev/reference/react-dom/server/resumeToPipeableStream): to resume a prerender to a stream. - [`resumeAndPrerenderToNodeStream`](https://react.dev/reference/react-dom/static/resumeAndPrerenderToNodeStream): to resume a prerender to HTML. - Updated [`prerender`](https://react.dev/reference/react-dom/static/prerender) APIs to return a `postponed` state that can be passed to the `resume` APIs. ##### Notable changes - React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming `<ViewTransition>` Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics. - Add Node Web Streams (`prerender`, `renderToReadableStream`) to server-side-rendering APIs for Node.js - Use underscore instead of `:` IDs generated by useId ##### All Changes ##### React - `<Activity />` was developed over many years, starting before `ClassComponent.setState` ([@&#8203;acdlite](https://github.com/acdlite) [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and many others) - Stringify context as "SomeContext" instead of "SomeContext.Provider" ([@&#8203;kassens](https://github.com/kassens) [#&#8203;33507](https://github.com/facebook/react/pull/33507)) - Include stack of cause of React instrumentation errors with `%o` placeholder ([@&#8203;eps1lon](https://github.com/eps1lon) [#&#8203;34198](https://github.com/facebook/react/pull/34198)) - Fix infinite `useDeferredValue` loop in popstate event ([@&#8203;acdlite](https://github.com/acdlite) [#&#8203;32821](https://github.com/facebook/react/pull/32821)) - Fix a bug when an initial value was passed to `useDeferredValue` ([@&#8203;acdlite](https://github.com/acdlite) [#&#8203;34376](https://github.com/facebook/react/pull/34376)) - Fix a crash when submitting forms with Client Actions ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33055](https://github.com/facebook/react/pull/33055)) - Hide/unhide the content of dehydrated suspense boundaries if they resuspend ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;32900](https://github.com/facebook/react/pull/32900)) - Avoid stack overflow on wide trees during Hot Reload ([@&#8203;sophiebits](https://github.com/sophiebits) [#&#8203;34145](https://github.com/facebook/react/pull/34145)) - Improve Owner and Component stacks in various places ([@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;eps1lon](https://github.com/eps1lon): [#&#8203;33629](https://github.com/facebook/react/pull/33629), [#&#8203;33724](https://github.com/facebook/react/pull/33724), [#&#8203;32735](https://github.com/facebook/react/pull/32735), [#&#8203;33723](https://github.com/facebook/react/pull/33723)) - Add `cacheSignal` ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33557](https://github.com/facebook/react/pull/33557)) ##### React DOM - Block on Suspensey Fonts during reveal of server-side-rendered content ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33342](https://github.com/facebook/react/pull/33342)) - Use underscore instead of `:` for IDs generated by `useId` ([@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;eps1lon](https://github.com/eps1lon): [#&#8203;32001](https://github.com/facebook/react/pull/32001), [#&#8203;33342](https://github.com/facebook/react/pull/33342)[#&#8203;33099](https://github.com/facebook/react/pull/33099), [#&#8203;33422](https://github.com/facebook/react/pull/33422)) - Stop warning when ARIA 1.3 attributes are used ([@&#8203;Abdul-Omira](https://github.com/Abdul-Omira) [#&#8203;34264](https://github.com/facebook/react/pull/34264)) - Allow `nonce` to be used on hoistable styles ([@&#8203;Andarist](https://github.com/Andarist) [#&#8203;32461](https://github.com/facebook/react/pull/32461)) - Warn for using a React owned node as a Container if it also has text content ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;32774](https://github.com/facebook/react/pull/32774)) - s/HTML/text for for error messages if text hydration mismatches ([@&#8203;rickhanlonii](https://github.com/rickhanlonii) [#&#8203;32763](https://github.com/facebook/react/pull/32763)) - Fix a bug with `React.use` inside `React.lazy`-ed Component ([@&#8203;hi-ogawa](https://github.com/hi-ogawa) [#&#8203;33941](https://github.com/facebook/react/pull/33941)) - Enable the `progressiveChunkSize` option for server-side-rendering APIs ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33027](https://github.com/facebook/react/pull/33027)) - Fix a bug with deeply nested Suspense inside Suspense fallback when server-side-rendering ([@&#8203;gnoff](https://github.com/gnoff) [#&#8203;33467](https://github.com/facebook/react/pull/33467)) - Avoid hanging when suspending after aborting while rendering ([@&#8203;gnoff](https://github.com/gnoff) [#&#8203;34192](https://github.com/facebook/react/pull/34192)) - Add Node Web Streams to server-side-rendering APIs for Node.js ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33475](https://github.com/facebook/react/pull/33475)) ##### React Server Components - Preload `<img>` and `<link>` using hints before they're rendered ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;34604](https://github.com/facebook/react/pull/34604)) - Log error if production elements are rendered during development ([@&#8203;eps1lon](https://github.com/eps1lon) [#&#8203;34189](https://github.com/facebook/react/pull/34189)) - Fix a bug when returning a Temporary reference (e.g. a Client Reference) from Server Functions ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;34084](https://github.com/facebook/react/pull/34084), [@&#8203;denk0403](https://github.com/denk0403) [#&#8203;33761](https://github.com/facebook/react/pull/33761)) - Pass line/column to `filterStackFrame` ([@&#8203;eps1lon](https://github.com/eps1lon) [#&#8203;33707](https://github.com/facebook/react/pull/33707)) - Support Async Modules in Turbopack Server References ([@&#8203;lubieowoce](https://github.com/lubieowoce) [#&#8203;34531](https://github.com/facebook/react/pull/34531)) - Add support for .mjs file extension in Webpack ([@&#8203;jennyscript](https://github.com/jennyscript) [#&#8203;33028](https://github.com/facebook/react/pull/33028)) - Fix a wrong missing key warning ([@&#8203;unstubbable](https://github.com/unstubbable) [#&#8203;34350](https://github.com/facebook/react/pull/34350)) - Make console log resolve in predictable order ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;33665](https://github.com/facebook/react/pull/33665)) ##### React Reconciler - [createContainer](https://github.com/facebook/react/blob/v19.2.0/packages/react-reconciler/src/ReactFiberReconciler.js#L255-L261) and [createHydrationContainer](https://github.com/facebook/react/blob/v19.2.0/packages/react-reconciler/src/ReactFiberReconciler.js#L305-L312) had their parameter order adjusted after `on*` handlers to account for upcoming experimental APIs ### [`v19.1.2`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1912-Dec-3-2025) [Compare Source](https://github.com/facebook/react/compare/v19.1.1...v19.1.2) ##### React Server Components - Bring React Server Component fixes to Server Actions ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;35277](https://github.com/facebook/react/pull/35277)) ### [`v19.1.1`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1911-July-28-2025) [Compare Source](https://github.com/facebook/react/compare/v19.1.0...v19.1.1) ##### React - Fixed Owner Stacks to work with ES2015 function.name semantics ([#&#8203;33680](https://github.com/facebook/react/pull/33680) by [@&#8203;hoxyq](https://github.com/hoxyq)) ### [`v19.1.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1910-March-28-2025) [Compare Source](https://github.com/facebook/react/compare/v19.0.1...v19.1.0) ##### Owner Stack An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged. - An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error. - The [captureOwnerStack API](https://react.dev/reference/react/captureOwnerStack) is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. [#&#8203;29923](https://github.com/facebook/react/pull/29923), [#&#8203;32353](https://github.com/facebook/react/pull/32353), [#&#8203;30306](https://github.com/facebook/react/pull/30306), [#&#8203;32538](https://github.com/facebook/react/pull/32538), [#&#8203;32529](https://github.com/facebook/react/pull/32529), [#&#8203;32538](https://github.com/facebook/react/pull/32538) ##### React - Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. [#&#8203;32069](https://github.com/facebook/react/pull/32069), [#&#8203;32163](https://github.com/facebook/react/pull/32163), [#&#8203;32224](https://github.com/facebook/react/pull/32224), [#&#8203;32252](https://github.com/facebook/react/pull/32252) - Reduced unnecessary client rendering through improved hydration scheduling [#&#8203;31751](https://github.com/facebook/react/pull/31751) - Increased priority of client rendered Suspense boundaries [#&#8203;31776](https://github.com/facebook/react/pull/31776) - Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. [#&#8203;31620](https://github.com/facebook/react/pull/31620) - Reduced garbage collection pressure by improving Suspense boundary retries. [#&#8203;31667](https://github.com/facebook/react/pull/31667) - Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed [#&#8203;31526](https://github.com/facebook/react/pull/31526) - Fixed a regression causing key warnings for flattened positional children in development mode. [#&#8203;32117](https://github.com/facebook/react/pull/32117) - Updated `useId` to use valid CSS selectors, changing format from `:r123:` to `«r123»`. [#&#8203;32001](https://github.com/facebook/react/pull/32001) - Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. [#&#8203;32355](https://github.com/facebook/react/pull/32355) - Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. [#&#8203;32200](https://github.com/facebook/react/pull/32200) - Improved consistency across prod and dev to improve compatibility with Google Closure Compiler and bindings [#&#8203;31808](https://github.com/facebook/react/pull/31808) - Improve passive effect scheduling for consistent task yielding. [#&#8203;31785](https://github.com/facebook/react/pull/31785) - Fixed asserts in React Native when passChildrenWhenCloningPersistedNodes is enabled for OffscreenComponent rendering. [#&#8203;32528](https://github.com/facebook/react/pull/32528) - Fixed component name resolution for Portal [#&#8203;32640](https://github.com/facebook/react/pull/32640) - Added support for beforetoggle and toggle events on the dialog element. [#&#8203;32479](https://github.com/facebook/react/pull/32479) ##### React DOM - Fixed double warning when the `href` attribute is an empty string [#&#8203;31783](https://github.com/facebook/react/pull/31783) - Fixed an edge case where `getHoistableRoot()` didn’t work properly when the container was a Document [#&#8203;32321](https://github.com/facebook/react/pull/32321) - Removed support for using HTML comments (e.g. `<!-- -->`) as a DOM container. [#&#8203;32250](https://github.com/facebook/react/pull/32250) - Added support for `<script>` and `<template>` tags to be nested within `<select>` tags. [#&#8203;31837](https://github.com/facebook/react/pull/31837) - Fixed responsive images to be preloaded as HTML instead of headers [#&#8203;32445](https://github.com/facebook/react/pull/32445) ##### use-sync-external-store - Added `exports` field to `package.json` for `use-sync-external-store` to support various entrypoints. [#&#8203;25231](https://github.com/facebook/react/pull/25231) ##### React Server Components - Added `unstable_prerender`, a new experimental API for prerendering React Server Components on the server [#&#8203;31724](https://github.com/facebook/react/pull/31724) - Fixed an issue where streams would hang when receiving new chunks after a global error [#&#8203;31840](https://github.com/facebook/react/pull/31840), [#&#8203;31851](https://github.com/facebook/react/pull/31851) - Fixed an issue where pending chunks were counted twice. [#&#8203;31833](https://github.com/facebook/react/pull/31833) - Added support for streaming in edge environments [#&#8203;31852](https://github.com/facebook/react/pull/31852) - Added support for sending custom error names from a server so that they are available in the client for console replaying. [#&#8203;32116](https://github.com/facebook/react/pull/32116) - Updated the server component wire format to remove IDs for hints and console.log because they have no return value [#&#8203;31671](https://github.com/facebook/react/pull/31671) - Exposed `registerServerReference` in client builds to handle server references in different environments. [#&#8203;32534](https://github.com/facebook/react/pull/32534) - Added react-server-dom-parcel package which integrates Server Components with the [Parcel bundler](https://parceljs.org/) [#&#8203;31725](https://github.com/facebook/react/pull/31725), [#&#8203;32132](https://github.com/facebook/react/pull/32132), [#&#8203;31799](https://github.com/facebook/react/pull/31799), [#&#8203;32294](https://github.com/facebook/react/pull/32294), [#&#8203;31741](https://github.com/facebook/react/pull/31741) ### [`v19.0.1`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1901-Dec-3-2025) [Compare Source](https://github.com/facebook/react/compare/v19.0.0...v19.0.1) ##### React Server Components - Bring React Server Component fixes to Server Actions ([@&#8203;sebmarkbage](https://github.com/sebmarkbage) [#&#8203;35277](https://github.com/facebook/react/pull/35277)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTUuMiIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-25 23:53:47 +01:00
kjuulh changed title from Update dependency @types/react to v19.0.12 to Update react monorepo 2025-03-28 23:27:26 +01:00
kjuulh force-pushed renovate/react-monorepo from 5de15ed7f4 to 444366cd30 2025-03-28 23:27:27 +01:00 Compare
kjuulh changed title from Update react monorepo to Update react monorepo to v19.1.0 2025-04-03 02:25:03 +02:00
kjuulh force-pushed renovate/react-monorepo from 444366cd30 to c601d88137 2025-04-03 02:25:04 +02:00 Compare
kjuulh changed title from Update react monorepo to v19.1.0 to Update react monorepo 2025-04-12 02:26:29 +02:00
kjuulh force-pushed renovate/react-monorepo from c601d88137 to 0c10d46212 2025-04-12 02:26:30 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 0c10d46212 to 3aa4672bc8 2025-04-15 02:27:03 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 3aa4672bc8 to 509bc8d3ad 2025-05-06 05:23:31 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 509bc8d3ad to 8267e29563 2025-05-13 02:24:31 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 8267e29563 to 24f99756c1 2025-05-22 02:24:23 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 24f99756c1 to 873df99e2e 2025-05-28 02:26:12 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 873df99e2e to 7571aa9c7c 2025-06-10 02:27:44 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from 7571aa9c7c to aef4fd324c 2025-06-12 02:27:17 +02:00 Compare
kjuulh force-pushed renovate/react-monorepo from aef4fd324c to dd4ce8c91a 2025-11-13 02:54:25 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from dd4ce8c91a to 6fd8b9342a 2025-11-15 02:27:11 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 6fd8b9342a to 579599fbe6 2025-11-18 05:28:20 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from 579599fbe6 to ec2f4fa9f2 2025-11-25 02:27:38 +01:00 Compare
kjuulh force-pushed renovate/react-monorepo from ec2f4fa9f2 to 8e3c5e644f 2025-12-04 02:26:31 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

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
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/downloader#193
No description provided.