Update dependency react-dom to v19.1.1 #142

Open
bustikiller wants to merge 1 commits from renovate/react-dom-19.x into main
Owner

This PR contains the following updates:

Package Type Update Change
react-dom (source) dependencies minor 19.0.0-rc-f38c22b244-20240704 -> 19.1.1
@types/react-dom (source) devDependencies major 18.3.7 -> 19.1.9

Release Notes

facebook/react (react-dom)

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.0

Compare Source

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a react@​18.3 release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features
React
  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.
React DOM Client
  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.
React DOM Server
  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.
React Server Components
  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.
Deprecations
  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testing-library/react or @​testing-library/react-native
Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React
  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.
  • Removed: contextTypes and getChildContext: Legacy Context for class components has been removed in favor of the contextType API.
  • Removed: string refs: Any usage of string refs need to be migrated to ref callbacks.
  • Removed: Module pattern factories: A rarely used pattern that can be migrated to regular functions.
  • Removed: React.createFactory: Now that JSX is broadly supported, all createFactory usage can be migrated to JSX components.
  • Removed: react-test-renderer/shallow: This has been a re-export of react-shallow-renderer since React 18. If needed, you can continue to use the third-party package directly. We recommend using @​testing-library/react or @​testing-library/react-native instead.
React DOM
  • Removed: react-dom/test-utils: We’ve moved act from react-dom/test-utils to react. All other utilities have been removed.
  • Removed: ReactDOM.render, ReactDOM.hydrate: These have been removed in favor of the concurrent equivalents: ReactDOM.createRoot and ReactDOM.hydrateRoot.
  • Removed: unmountComponentAtNode: Removed in favor of root.unmount().
  • Removed: ReactDOM.findDOMNode: You can replace ReactDOM.findDOMNode with DOM Refs.
Notable Changes
React
  • <Context> as a provider: You can now render <Context> as a provider instead of <Context.Provider>.
  • Cleanup functions for refs: When the component unmounts, React will call the cleanup function returned from the ref callback.
  • useDeferredValue initial value argument: When provided, useDeferredValue will return the initial value for the initial render of a component, then schedule a re-render in the background with the deferredValue returned.
  • Support for Custom Elements: React 19 now passes all tests on Custom Elements Everywhere.
  • StrictMode changes: useMemo and useCallback will now reuse the memoized results from the first render, during the second render. Additionally, StrictMode will now double-invoke ref callback functions on initial mount.
  • UMD builds removed: To load React 19 with a script tag, we recommend using an ESM-based CDN such as esm.sh.
React DOM
  • Diffs for hydration errors: In the case of a mismatch, React 19 logs a single error with a diff of the mismatched content.
  • Compatibility with third-party scripts and extensions: React will now force a client re-render to fix up any mismatched content caused by elements inserted by third-party JS.
TypeScript Changes

The most common changes can be codemodded with npx types-react-codemod@latest preset-19 ./path-to-your-react-ts-files.

  • Removed deprecated TypeScript types:
    • ReactChild (replacement: React.ReactElement | number | string)
    • ReactFragment (replacement: Iterable<React.ReactNode>)
    • ReactNodeArray (replacement: ReadonlyArray<React.ReactNode>)
    • ReactText (replacement: number | string)
    • VoidFunctionComponent (replacement: FunctionComponent)
    • VFC (replacement: FC)
    • Moved to prop-types: Requireable, ValidationMap, Validator, WeakValidationMap
    • Moved to create-react-class: ClassicComponentClass, ClassicComponent, ClassicElement, ComponentSpec, Mixin, ReactChildren, ReactHTML, ReactSVG, SFCFactory
  • Disallow implicit return in refs: refs can now accept cleanup functions. When you return something else, we can’t tell if you intentionally returned something not meant to clean up or returned the wrong value. Implicit returns of anything but functions will now error.
  • Require initial argument to useRef: The initial argument is now required to match useState, createContext etc
  • Refs are mutable by default: Ref objects returned from useRef() are now always mutable instead of sometimes being immutable. This feature was too confusing for users and conflicted with legit cases where refs were managed by React and manually written to.
  • Strict ReactElement typing: The props of React elements now default to unknown instead of any if the element is typed as ReactElement
  • JSX namespace in TypeScript: The global JSX namespace is removed to improve interoperability with other libraries using JSX. Instead, the JSX namespace is available from the React package: import { JSX } from 'react'
  • Better useReducer typings: Most useReducer usage should not require explicit type arguments.
    For example,
    -useReducer<React.Reducer<State, Action>>(reducer)
    +useReducer(reducer)
    
    or
    -useReducer<React.Reducer<State, Action>>(reducer)
    +useReducer<State, Action>(reducer)
    
All Changes
React
React DOM
React DOM Server
ReactTestRenderer
React Reconciler
React-Is
useSyncExternalStore

v19.0.0-rc-fb9a90fa48-20240614

Compare Source

v19.0.0-rc-fa6eab58-20240815

Compare Source

v19.0.0-rc-f9ebd85a-20240925

Compare Source

v19.0.0-rc-f994737d14-20240522

Compare Source

v19.0.0-rc-f90a6bcc-20240827

Compare Source

v19.0.0-rc-f6cce072-20240723

Compare Source

v19.0.0-rc-f65ac7bd-20240826

Compare Source

v19.0.0-rc-f3e09d6328-20240612

Compare Source


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 | |---|---|---|---| | [react-dom](https://react.dev/) ([source](https://github.com/facebook/react/tree/HEAD/packages/react-dom)) | dependencies | minor | [`19.0.0-rc-f38c22b244-20240704` -> `19.1.1`](https://renovatebot.com/diffs/npm/react-dom/19.0.0-rc-f38c22b244-20240704/19.1.1) | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom)) | devDependencies | major | [`18.3.7` -> `19.1.9`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.3.7/19.1.9) | --- ### Release Notes <details> <summary>facebook/react (react-dom)</summary> ### [`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.0...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.0`](https://github.com/facebook/react/blob/HEAD/CHANGELOG.md#1900-December-5-2024) [Compare Source](https://github.com/facebook/react/compare/fb9a90fa480efce40ac2a845478817467f965ddc...v19.0.0) Below is a list of all new features, APIs, deprecations, and breaking changes. Read [React 19 release post](https://react.dev/blog/2024/04/25/react-19) and [React 19 upgrade guide](https://react.dev/blog/2024/04/25/react-19-upgrade-guide) for more information. > Note: To help make the upgrade to React 19 easier, we’ve published a react\@&#8203;18.3 release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19. ##### New Features ##### React - Actions: `startTransition` can now accept async functions. Functions passed to `startTransition` are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like `fetch()` in the pending state, and provides support for error handling, and optimistic updates. - `useActionState`: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form `action` prop to support progressive enhancement in forms. - `useOptimistic`: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value. - `use`: is a new API that allows reading resources in render. In React 19, `use` accepts a promise or Context. If provided a promise, `use` will suspend until a value is resolved. `use` can only be used in render but can be called conditionally. - `ref` as a prop: Refs can now be used as props, removing the need for `forwardRef`. - **Suspense sibling pre-warming**: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests. ##### React DOM Client - `<form> action` prop: Form Actions allow you to manage forms automatically and integrate with `useFormStatus`. When a `<form> action` succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new `requestFormReset` API. - `<button> and <input> formAction` prop: Actions can be passed to the `formAction` prop to configure form submission behavior. This allows using different Actions depending on the input. - `useFormStatus`: is a new hook that provides the status of the parent `<form> action`, as if the form was a Context provider. The hook returns the values: `pending`, `data`, `method`, and `action`. - Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the `<head>` section of the document. - Support for Stylesheets: React 19 will ensure stylesheets are inserted into the `<head>` on the client before revealing the content of a Suspense boundary that depends on that stylesheet. - Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication. - Support for preloading resources: React 19 ships with `preinit`, `preload`, `prefetchDNS`, and `preconnect` APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation. ##### React DOM Server - Added `prerender` and `prerenderToNodeStream` APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike `renderToString`, they wait for data to load for HTML generation. ##### React Server Components - RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See [docs](https://19.react.dev/reference/rsc/server-components) for how to support React Server Components. ##### Deprecations - Deprecated: `element.ref` access: React 19 supports ref as a prop, so we’re deprecating `element.ref` in favor of `element.props.ref`. Accessing will result in a warning. - `react-test-renderer`: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to [@&#8203;testing-library/react](https://testing-library.com/docs/react-testing-library/intro/) or [@&#8203;testing-library/react-native](https://testing-library.com/docs/react-native-testing-library/intro) ##### Breaking Changes React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to `18.3.1`, where we've added additional deprecation warnings. Check out the [upgrade guide](https://19.react.dev/blog/2024/04/25/react-19-upgrade-guide) for more details and guidance on codemodding. ##### React - New JSX Transform is now required: We introduced [a new JSX transform](https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html) in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform. - Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window\.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced `onUncaughtError` and `onCaughtError` methods to `createRoot` and `hydrateRoot` to customize this error handling. - Removed: `propTypes`: Using `propTypes` will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution. - Removed: `defaultProps` for functions: ES6 default parameters can be used in place. Class components continue to support `defaultProps` since there is no ES6 alternative. - Removed: `contextTypes` and `getChildContext`: Legacy Context for class components has been removed in favor of the `contextType` API. - Removed: string refs: Any usage of string refs need to be migrated to ref callbacks. - Removed: Module pattern factories: A rarely used pattern that can be migrated to regular functions. - Removed: `React.createFactory`: Now that JSX is broadly supported, all `createFactory` usage can be migrated to JSX components. - Removed: `react-test-renderer/shallow`: This has been a re-export of [react-shallow-renderer](https://github.com/enzymejs/react-shallow-renderer) since React 18. If needed, you can continue to use the third-party package directly. We recommend using [@&#8203;testing-library/react](https://testing-library.com/docs/react-testing-library/intro/) or [@&#8203;testing-library/react-native](https://testing-library.com/docs/react-native-testing-library/intro) instead. ##### React DOM - Removed: `react-dom/test-utils`: We’ve moved `act` from `react-dom/test-utils` to react. All other utilities have been removed. - Removed: `ReactDOM`.`render`, `ReactDOM`.`hydrate`: These have been removed in favor of the concurrent equivalents: `ReactDOM`.`createRoot` and `ReactDOM.hydrateRoot`. - Removed: `unmountComponentAtNode`: Removed in favor of `root.unmount()`. - Removed: `ReactDOM`.`findDOMNode`: You can replace `ReactDOM`.`findDOMNode` with DOM Refs. ##### Notable Changes ##### React - `<Context>` as a provider: You can now render `<Context>` as a provider instead of `<Context.Provider>`. - Cleanup functions for refs: When the component unmounts, React will call the cleanup function returned from the ref callback. - `useDeferredValue` initial value argument: When provided, `useDeferredValue` will return the initial value for the initial render of a component, then schedule a re-render in the background with the `deferredValue` returned. - Support for Custom Elements: React 19 now passes all tests on [Custom Elements Everywhere](https://custom-elements-everywhere.com/). - StrictMode changes: `useMemo` and `useCallback` will now reuse the memoized results from the first render, during the second render. Additionally, StrictMode will now double-invoke ref callback functions on initial mount. - UMD builds removed: To load React 19 with a script tag, we recommend using an ESM-based CDN such as [esm.sh](http://esm.sh). ##### React DOM - Diffs for hydration errors: In the case of a mismatch, React 19 logs a single error with a diff of the mismatched content. - Compatibility with third-party scripts and extensions: React will now force a client re-render to fix up any mismatched content caused by elements inserted by third-party JS. ##### TypeScript Changes The most common changes can be codemodded with `npx types-react-codemod@latest preset-19 ./path-to-your-react-ts-files`. - Removed deprecated TypeScript types: - `ReactChild` (replacement: `React.ReactElement | number | string)` - `ReactFragment` (replacement: `Iterable<React.ReactNode>`) - `ReactNodeArray` (replacement: `ReadonlyArray<React.ReactNode>`) - `ReactText` (replacement: `number | string`) - `VoidFunctionComponent` (replacement: `FunctionComponent`) - `VFC` (replacement: `FC`) - Moved to `prop-types`: `Requireable`, `ValidationMap`, `Validator`, `WeakValidationMap` - Moved to `create-react-class`: `ClassicComponentClass`, `ClassicComponent`, `ClassicElement`, `ComponentSpec`, `Mixin`, `ReactChildren`, `ReactHTML`, `ReactSVG`, `SFCFactory` - Disallow implicit return in refs: refs can now accept cleanup functions. When you return something else, we can’t tell if you intentionally returned something not meant to clean up or returned the wrong value. Implicit returns of anything but functions will now error. - Require initial argument to `useRef`: The initial argument is now required to match `useState`, `createContext` etc - Refs are mutable by default: Ref objects returned from `useRef()` are now always mutable instead of sometimes being immutable. This feature was too confusing for users and conflicted with legit cases where refs were managed by React and manually written to. - Strict `ReactElement` typing: The props of React elements now default to `unknown` instead of `any` if the element is typed as `ReactElement` - JSX namespace in TypeScript: The global `JSX` namespace is removed to improve interoperability with other libraries using JSX. Instead, the JSX namespace is available from the React package: `import { JSX } from 'react'` - Better `useReducer` typings: Most `useReducer` usage should not require explicit type arguments.\ For example, ```diff -useReducer<React.Reducer<State, Action>>(reducer) +useReducer(reducer) ``` or ```diff -useReducer<React.Reducer<State, Action>>(reducer) +useReducer<State, Action>(reducer) ``` ##### All Changes ##### React - Add support for async Actions ([#&#8203;26621](https://github.com/facebook/react/pull/26621), [#&#8203;26726](https://github.com/facebook/react/pull/26726), [#&#8203;28078](https://github.com/facebook/react/pull/28078), [#&#8203;28097](https://github.com/facebook/react/pull/28097), [#&#8203;29226](https://github.com/facebook/react/pull/29226), [#&#8203;29618](https://github.com/facebook/react/pull/29618), [#&#8203;29670](https://github.com/facebook/react/pull/29670), [#&#8203;26716](https://github.com/facebook/react/pull/26716) by [@&#8203;acdlite](https://github.com/acdlite) and [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Add `useActionState()` hook to update state based on the result of a Form Action ([#&#8203;27270](https://github.com/facebook/react/pull/27270), [#&#8203;27278](https://github.com/facebook/react/pull/27278), [#&#8203;27309](https://github.com/facebook/react/pull/27309), [#&#8203;27302](https://github.com/facebook/react/pull/27302), [#&#8203;27307](https://github.com/facebook/react/pull/27307), [#&#8203;27366](https://github.com/facebook/react/pull/27366), [#&#8203;27370](https://github.com/facebook/react/pull/27370), [#&#8203;27321](https://github.com/facebook/react/pull/27321), [#&#8203;27374](https://github.com/facebook/react/pull/27374), [#&#8203;27372](https://github.com/facebook/react/pull/27372), [#&#8203;27397](https://github.com/facebook/react/pull/27397), [#&#8203;27399](https://github.com/facebook/react/pull/27399), [#&#8203;27460](https://github.com/facebook/react/pull/27460), [#&#8203;28557](https://github.com/facebook/react/pull/28557), [#&#8203;27570](https://github.com/facebook/react/pull/27570), [#&#8203;27571](https://github.com/facebook/react/pull/27571), [#&#8203;28631](https://github.com/facebook/react/pull/28631), [#&#8203;28788](https://github.com/facebook/react/pull/28788), [#&#8203;29694](https://github.com/facebook/react/pull/29694), [#&#8203;29695](https://github.com/facebook/react/pull/29695), [#&#8203;29694](https://github.com/facebook/react/pull/29694), [#&#8203;29665](https://github.com/facebook/react/pull/29665), [#&#8203;28232](https://github.com/facebook/react/pull/28232), [#&#8203;28319](https://github.com/facebook/react/pull/28319) by [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;eps1lon](https://github.com/eps1lon), and [@&#8203;rickhanlonii](https://github.com/rickhanlonii)) - Add `use()` API to read resources in render ([#&#8203;25084](https://github.com/facebook/react/pull/25084), [#&#8203;25202](https://github.com/facebook/react/pull/25202), [#&#8203;25207](https://github.com/facebook/react/pull/25207), [#&#8203;25214](https://github.com/facebook/react/pull/25214), [#&#8203;25226](https://github.com/facebook/react/pull/25226), [#&#8203;25247](https://github.com/facebook/react/pull/25247), [#&#8203;25539](https://github.com/facebook/react/pull/25539), [#&#8203;25538](https://github.com/facebook/react/pull/25538), [#&#8203;25537](https://github.com/facebook/react/pull/25537), [#&#8203;25543](https://github.com/facebook/react/pull/25543), [#&#8203;25561](https://github.com/facebook/react/pull/25561), [#&#8203;25620](https://github.com/facebook/react/pull/25620), [#&#8203;25615](https://github.com/facebook/react/pull/25615), [#&#8203;25922](https://github.com/facebook/react/pull/25922), [#&#8203;25641](https://github.com/facebook/react/pull/25641), [#&#8203;25634](https://github.com/facebook/react/pull/25634), [#&#8203;26232](https://github.com/facebook/react/pull/26232), [#&#8203;26536](https://github.com/facebook/react/pull/26535), [#&#8203;26739](https://github.com/facebook/react/pull/26739), [#&#8203;28233](https://github.com/facebook/react/pull/28233) by [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;MofeiZ](https://github.com/mofeiZ), [@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;sophiebits](https://github.com/sophiebits), [@&#8203;eps1lon](https://github.com/eps1lon), and [@&#8203;hansottowirtz](https://github.com/hansottowirtz)) - Add `useOptimistic()` hook to display mutated state optimistically during an async mutation ([#&#8203;26740](https://github.com/facebook/react/pull/26740), [#&#8203;26772](https://github.com/facebook/react/pull/26772), [#&#8203;27277](https://github.com/facebook/react/pull/27277), [#&#8203;27453](https://github.com/facebook/react/pull/27453), [#&#8203;27454](https://github.com/facebook/react/pull/27454), [#&#8203;27936](https://github.com/facebook/react/pull/27936) by [@&#8203;acdlite](https://github.com/acdlite)) - Added an `initialValue` argument to `useDeferredValue()` hook ([#&#8203;27500](https://github.com/facebook/react/pull/27500), [#&#8203;27509](https://github.com/facebook/react/pull/27509), [#&#8203;27512](https://github.com/facebook/react/pull/27512), [#&#8203;27888](https://github.com/facebook/react/pull/27888), [#&#8203;27550](https://github.com/facebook/react/pull/27550) by [@&#8203;acdlite](https://github.com/acdlite)) - Support refs as props, warn on `element.ref` access ([#&#8203;28348](https://github.com/facebook/react/pull/28348), [#&#8203;28464](https://github.com/facebook/react/pull/28464), [#&#8203;28731](https://github.com/facebook/react/pull/28731) by [@&#8203;acdlite](https://github.com/acdlite)) - Support Custom Elements ([#&#8203;22184](https://github.com/facebook/react/pull/22184), [#&#8203;26524](https://github.com/facebook/react/pull/26524), [#&#8203;26523](https://github.com/facebook/react/pull/26523), [#&#8203;27511](https://github.com/facebook/react/pull/27511), [#&#8203;24541](https://github.com/facebook/react/pull/24541) by [@&#8203;josepharhar](https://github.com/josepharhar), [@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;gnoff](https://github.com/gnoff) and [@&#8203;eps1lon](https://github.com/eps1lon)) - Add ref cleanup function ([#&#8203;25686](https://github.com/facebook/react/pull/25686), [#&#8203;28883](https://github.com/facebook/react/pull/28883), [#&#8203;28910](https://github.com/facebook/react/pull/28910) by [@&#8203;sammy-SC](https://github.com/sammy-SC), [@&#8203;jackpope](https://github.com/jackpope), and [@&#8203;kassens](https://github.com/kassens)) - Sibling pre-rendering replaced by sibling pre-warming ([#&#8203;26380](https://github.com/facebook/react/pull/26380), [#&#8203;26549](https://github.com/facebook/react/pull/26549), [#&#8203;30761](https://github.com/facebook/react/pull/30761), [#&#8203;30800](https://github.com/facebook/react/pull/30800), [#&#8203;30762](https://github.com/facebook/react/pull/30762), [#&#8203;30879](https://github.com/facebook/react/pull/30879), [#&#8203;30934](https://github.com/facebook/react/pull/30934), [#&#8203;30952](https://github.com/facebook/react/pull/30952), [#&#8203;31056](https://github.com/facebook/react/pull/31056), [#&#8203;31452](https://github.com/facebook/react/pull/31452) by [@&#8203;sammy-SC](https://github.com/sammy-SC), [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;gnoff](https://github.com/gnoff), [@&#8203;jackpope](https://github.com/jackpope), [@&#8203;rickhanlonii](https://github.com/rickhanlonii)) - Don’t rethrow errors at the root ([#&#8203;28627](https://github.com/facebook/react/pull/28627), [#&#8203;28641](https://github.com/facebook/react/pull/28641) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Batch sync discrete, continuous, and default lanes ([#&#8203;25700](https://github.com/facebook/react/pull/25700) by [@&#8203;tyao1](https://github.com/tyao1)) - Switch `<Context>` to mean `<Context.Provider>` ([#&#8203;28226](https://github.com/facebook/react/pull/28226) by [@&#8203;gaearon](https://github.com/gaearon)) - Changes to *StrictMode* - Handle `info`, `group`, and `groupCollapsed` in *StrictMode* logging ([#&#8203;25172](https://github.com/facebook/react/pull/25172) by [@&#8203;timneutkens](https://github.com/timneutkens)) - Refs are now attached/detached/attached in *StrictMode* ([#&#8203;25049](https://github.com/facebook/react/pull/25049) by [@&#8203;sammy-SC](https://github.com/sammy-SC)) - Fix `useSyncExternalStore()` hydration in *StrictMode* ([#&#8203;26791](https://github.com/facebook/react/pull/26791) by [@&#8203;sophiebits](https://github.com/sophiebits)) - Always trigger `componentWillUnmount()` in *StrictMode* ([#&#8203;26842](https://github.com/facebook/react/pull/26842) by [@&#8203;tyao1](https://github.com/tyao1)) - Restore double invoking `useState()` and `useReducer()` initializer functions in *StrictMode* ([#&#8203;28248](https://github.com/facebook/react/pull/28248) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Reuse memoized result from first pass ([#&#8203;25583](https://github.com/facebook/react/pull/25583) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix `useId()` in *StrictMode* ([#&#8203;25713](https://github.com/facebook/react/pull/25713) by [@&#8203;gnoff](https://github.com/gnoff)) - Add component name to *StrictMode* error messages ([#&#8203;25718](https://github.com/facebook/react/pull/25718) by [@&#8203;sammy-SC](https://github.com/sammy-SC)) - Add support for rendering BigInt ([#&#8203;24580](https://github.com/facebook/react/pull/24580) by [@&#8203;eps1lon](https://github.com/eps1lon)) - `act()` no longer checks `shouldYield` which can be inaccurate in test environments ([#&#8203;26317](https://github.com/facebook/react/pull/26317) by [@&#8203;acdlite](https://github.com/acdlite)) - Warn when keys are spread with props ([#&#8203;25697](https://github.com/facebook/react/pull/25697), [#&#8203;26080](https://github.com/facebook/react/pull/26080) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and [@&#8203;kassens](https://github.com/kassens)) - Generate sourcemaps for production build artifacts ([#&#8203;26446](https://github.com/facebook/react/pull/26446) by [@&#8203;markerikson](https://github.com/markerikson)) - Improve stack diffing algorithm ([#&#8203;27132](https://github.com/facebook/react/pull/27132) by [@&#8203;KarimP](https://github.com/KarimP)) - Suspense throttling lowered from 500ms to 300ms ([#&#8203;26803](https://github.com/facebook/react/pull/26803) by [@&#8203;acdlite](https://github.com/acdlite)) - Lazily propagate context changes ([#&#8203;20890](https://github.com/facebook/react/pull/20890) by [@&#8203;acdlite](https://github.com/acdlite) and [@&#8203;gnoff](https://github.com/gnoff)) - Immediately rerender pinged fiber ([#&#8203;25074](https://github.com/facebook/react/pull/25074) by [@&#8203;acdlite](https://github.com/acdlite)) - Move update scheduling to microtask ([#&#8203;26512](https://github.com/facebook/react/pull/26512) by [@&#8203;acdlite](https://github.com/acdlite)) - Consistently apply throttled retries ([#&#8203;26611](https://github.com/facebook/react/pull/26611), [#&#8203;26802](https://github.com/facebook/react/pull/26802) by [@&#8203;acdlite](https://github.com/acdlite)) - Suspend Thenable/Lazy if it's used in React.Children ([#&#8203;28284](https://github.com/facebook/react/pull/28284) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Detect infinite update loops caused by render phase updates ([#&#8203;26625](https://github.com/facebook/react/pull/26625) by [@&#8203;acdlite](https://github.com/acdlite)) - Update conditional hooks warning ([#&#8203;29626](https://github.com/facebook/react/pull/29626) by [@&#8203;sophiebits](https://github.com/sophiebits)) - Update error URLs to go to new docs ([#&#8203;27240](https://github.com/facebook/react/pull/27240) by [@&#8203;rickhanlonii](https://github.com/rickhanlonii)) - Rename the `react.element` symbol to `react.transitional.element` ([#&#8203;28813](https://github.com/facebook/react/pull/28813) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Fix crash when suspending in shell during `useSyncExternalStore()` re-render ([#&#8203;27199](https://github.com/facebook/react/pull/27199) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix incorrect “detected multiple renderers" error in tests ([#&#8203;22797](https://github.com/facebook/react/pull/22797) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Fix bug where effect cleanup may be called twice after bailout ([#&#8203;26561](https://github.com/facebook/react/pull/26561) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix suspending in shell during discrete update ([#&#8203;25495](https://github.com/facebook/react/pull/25495) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix memory leak after repeated setState bailouts ([#&#8203;25309](https://github.com/facebook/react/pull/25309) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix `useSyncExternalStore()` dropped update when state is dispatched in render phase ([#&#8203;25578](https://github.com/facebook/react/pull/25578) by [@&#8203;pandaiolo](https://github.com/pandaiolo)) - Fix logging when rendering a lazy fragment ([#&#8203;30372](https://github.com/facebook/react/pull/30372) by [@&#8203;tom-sherman](https://github.com/tom-sherman)) - Remove string refs ([#&#8203;25383](https://github.com/facebook/react/pull/25383), [#&#8203;28322](https://github.com/facebook/react/pull/28322) by [@&#8203;eps1lon](https://github.com/eps1lon) and [@&#8203;acdlite](https://github.com/acdlite)) - Remove Legacy Context ([#&#8203;30319](https://github.com/facebook/react/issues/30319) by [@&#8203;kassens](https://github.com/kassens)) - Remove `RefreshRuntime.findAffectedHostInstances` ([#&#8203;30538](https://github.com/facebook/react/pull/30538) by [@&#8203;gaearon](https://github.com/gaearon)) - Remove client caching from `cache()` API ([#&#8203;27977](https://github.com/facebook/react/pull/27977), [#&#8203;28250](https://github.com/facebook/react/pull/28250) by [@&#8203;acdlite](https://github.com/acdlite) and [@&#8203;gnoff](https://github.com/gnoff)) - Remove `propTypes` ([#&#8203;28324](https://github.com/facebook/react/pull/28324), [#&#8203;28326](https://github.com/facebook/react/pull/28326) by [@&#8203;gaearon](https://github.com/gaearon)) - Remove `defaultProps` support, except for classes ([#&#8203;28733](https://github.com/facebook/react/pull/28733) by [@&#8203;acdlite](https://github.com/acdlite)) - Remove UMD builds ([#&#8203;28735](https://github.com/facebook/react/pull/28735) by [@&#8203;gnoff](https://github.com/gnoff)) - Remove delay for non-transition updates ([#&#8203;26597](https://github.com/facebook/react/pull/26597) by [@&#8203;acdlite](https://github.com/acdlite)) - Remove `createFactory` ([#&#8203;27798](https://github.com/facebook/react/pull/27798) by [@&#8203;kassens](https://github.com/kassens)) ##### React DOM - Adds Form Actions to handle form submission ([#&#8203;26379](https://github.com/facebook/react/pull/26379), [#&#8203;26674](https://github.com/facebook/react/pull/26674), [#&#8203;26689](https://github.com/facebook/react/pull/26689), [#&#8203;26708](https://github.com/facebook/react/pull/26708), [#&#8203;26714](https://github.com/facebook/react/pull/26714), [#&#8203;26735](https://github.com/facebook/react/pull/26735), [#&#8203;26846](https://github.com/facebook/react/pull/26846), [#&#8203;27358](https://github.com/facebook/react/pull/27358), [#&#8203;28056](https://github.com/facebook/react/pull/28056) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;acdlite](https://github.com/acdlite), and [@&#8203;jupapios](https://github.com/jupapios)) - Add `useFormStatus()` hook to provide status information of the last form submission ([#&#8203;26719](https://github.com/facebook/react/pull/26719), [#&#8203;26722](https://github.com/facebook/react/pull/26722), [#&#8203;26788](https://github.com/facebook/react/pull/26788), [#&#8203;29019](https://github.com/facebook/react/pull/29019), [#&#8203;28728](https://github.com/facebook/react/pull/28728), [#&#8203;28413](https://github.com/facebook/react/pull/28413) by [@&#8203;acdlite](https://github.com/acdlite) and [@&#8203;eps1lon](https://github.com/eps1lon)) - Support for Document Metadata. Adds `preinit`, `preinitModule`, `preconnect`, `prefetchDNS`, `preload`, and `preloadModule` APIs. - [#&#8203;25060](https://github.com/facebook/react/pull/25060), [#&#8203;25243](https://github.com/facebook/react/pull/25243), [#&#8203;25388](https://github.com/facebook/react/pull/25388), [#&#8203;25432](https://github.com/facebook/react/pull/25432), [#&#8203;25436](https://github.com/facebook/react/pull/25436), [#&#8203;25426](https://github.com/facebook/react/pull/25426), [#&#8203;25500](https://github.com/facebook/react/pull/25500), [#&#8203;25480](https://github.com/facebook/react/pull/25480), [#&#8203;25508](https://github.com/facebook/react/pull/25508), [#&#8203;25515](https://github.com/facebook/react/pull/25515), [#&#8203;25514](https://github.com/facebook/react/pull/25514), [#&#8203;25532](https://github.com/facebook/react/pull/25532), [#&#8203;25536](https://github.com/facebook/react/pull/25536), [#&#8203;25534](https://github.com/facebook/react/pull/25534), [#&#8203;25546](https://github.com/facebook/react/pull/25546), [#&#8203;25559](https://github.com/facebook/react/pull/25559), [#&#8203;25569](https://github.com/facebook/react/pull/25569), [#&#8203;25599](https://github.com/facebook/react/pull/25599), [#&#8203;25689](https://github.com/facebook/react/pull/25689), [#&#8203;26106](https://github.com/facebook/react/pull/26106), [#&#8203;26152](https://github.com/facebook/react/pull/26152), [#&#8203;26239](https://github.com/facebook/react/pull/26239), [#&#8203;26237](https://github.com/facebook/react/pull/26237), [#&#8203;26280](https://github.com/facebook/react/pull/26280), [#&#8203;26154](https://github.com/facebook/react/pull/26154), [#&#8203;26256](https://github.com/facebook/react/pull/26256), [#&#8203;26353](https://github.com/facebook/react/pull/26353), [#&#8203;26427](https://github.com/facebook/react/pull/26427), [#&#8203;26450](https://github.com/facebook/react/pull/26450), [#&#8203;26502](https://github.com/facebook/react/pull/26502), [#&#8203;26514](https://github.com/facebook/react/pull/26514), [#&#8203;26531](https://github.com/facebook/react/pull/26531), [#&#8203;26532](https://github.com/facebook/react/pull/26532), [#&#8203;26557](https://github.com/facebook/react/pull/26557), [#&#8203;26871](https://github.com/facebook/react/pull/26871), [#&#8203;26881](https://github.com/facebook/react/pull/26881), [#&#8203;26877](https://github.com/facebook/react/pull/26877), [#&#8203;26873](https://github.com/facebook/react/pull/26873), [#&#8203;26880](https://github.com/facebook/react/pull/26880), [#&#8203;26942](https://github.com/facebook/react/pull/26942), [#&#8203;26938](https://github.com/facebook/react/pull/26938), [#&#8203;26940](https://github.com/facebook/react/pull/26940), [#&#8203;26939](https://github.com/facebook/react/pull/26939), [#&#8203;27030](https://github.com/facebook/react/pull/27030), [#&#8203;27201](https://github.com/facebook/react/pull/27201), [#&#8203;27212](https://github.com/facebook/react/pull/27212), [#&#8203;27217](https://github.com/facebook/react/pull/27217), [#&#8203;27218](https://github.com/facebook/react/pull/27218), [#&#8203;27220](https://github.com/facebook/react/pull/27220), [#&#8203;27224](https://github.com/facebook/react/pull/27224), [#&#8203;27223](https://github.com/facebook/react/pull/27223), [#&#8203;27269](https://github.com/facebook/react/pull/27269), [#&#8203;27260](https://github.com/facebook/react/pull/27260), [#&#8203;27347](https://github.com/facebook/react/pull/27347), [#&#8203;27346](https://github.com/facebook/react/pull/27346), [#&#8203;27361](https://github.com/facebook/react/pull/27361), [#&#8203;27400](https://github.com/facebook/react/pull/27400), [#&#8203;27541](https://github.com/facebook/react/pull/27541), [#&#8203;27610](https://github.com/facebook/react/pull/27610), [#&#8203;28110](https://github.com/facebook/react/pull/28110), [#&#8203;29693](https://github.com/facebook/react/pull/29693), [#&#8203;29732](https://github.com/facebook/react/pull/29732), [#&#8203;29811](https://github.com/facebook/react/pull/29811), [#&#8203;27586](https://github.com/facebook/react/pull/27586), [#&#8203;28069](https://github.com/facebook/react/pull/28069) by [@&#8203;gnoff](https://github.com/gnoff), [@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;kassens](https://github.com/kassens), [@&#8203;sokra](https://github.com/sokra), [@&#8203;sweetliquid](https://github.com/sweetliquid) - Add `fetchPriority` to `<img>` and `<link>` ([#&#8203;25927](https://github.com/facebook/react/pull/25927) by [@&#8203;styfle](https://github.com/styfle)) - Add support for SVG `transformOrigin` prop ([#&#8203;26130](https://github.com/facebook/react/pull/26130) by [@&#8203;arav-ind](https://github.com/arav-ind)) - Add support for `onScrollEnd` event ([#&#8203;26789](https://github.com/facebook/react/pull/26789) by [@&#8203;devongovett](https://github.com/devongovett)) - Allow `<hr>` as child of `<select>` ([#&#8203;27632](https://github.com/facebook/react/pull/27632) by [@&#8203;SouSingh](https://github.com/SouSingh)) - Add support for Popover API ([#&#8203;27981](https://github.com/facebook/react/pull/27981) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Add support for `inert` ([#&#8203;24730](https://github.com/facebook/react/pull/24730) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Add support for `imageSizes` and `imageSrcSet` ([#&#8203;22550](https://github.com/facebook/react/pull/22550) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Synchronously flush transitions in popstate events ([#&#8203;26025](https://github.com/facebook/react/pull/26025), [#&#8203;27559](https://github.com/facebook/react/pull/27559), [#&#8203;27505](https://github.com/facebook/react/pull/27505), [#&#8203;30759](https://github.com/facebook/react/pull/30759) by [@&#8203;tyao1](https://github.com/tyao1) and [@&#8203;acdlite](https://github.com/acdlite)) - `flushSync` exhausts queue even if something throws ([#&#8203;26366](https://github.com/facebook/react/pull/26366) by [@&#8203;acdlite](https://github.com/acdlite)) - Throw error if `react` and `react-dom` versions don’t match ([#&#8203;29236](https://github.com/facebook/react/pull/29236) by [@&#8203;acdlite](https://github.com/acdlite)) - Ensure `srcset` and `src` are assigned last on `<img>` instances ([#&#8203;30340](https://github.com/facebook/react/pull/30340) by [@&#8203;gnoff](https://github.com/gnoff)) - Javascript URLs are replaced with functions that throw errors ([#&#8203;26507](https://github.com/facebook/react/pull/26507), [#&#8203;29808](https://github.com/facebook/react/pull/29808) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and [@&#8203;kassens](https://github.com/kassens)) - Treat toggle and beforetoggle as discrete events ([#&#8203;29176](https://github.com/facebook/react/pull/29176) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Filter out empty `src` and `href` attributes (unless for `<a href=”” />`) ([#&#8203;18513](https://github.com/facebook/react/pull/18513), [#&#8203;28124](https://github.com/facebook/react/pull/28124) by [@&#8203;bvaughn](https://github.com/bvaughn) and [@&#8203;eps1lon](https://github.com/eps1lon)) - Fix unitless `scale` style property ([#&#8203;25601](https://github.com/facebook/react/pull/25601) by [@&#8203;JonnyBurger](https://github.com/JonnyBurger)) - Fix `onChange` error message for controlled `<select>` ([#&#8203;27740](https://github.com/facebook/react/pull/27740) by [@&#8203;Biki-das](https://github.com/Biki-das)) - Fix focus restore in child windows after element reorder ([#&#8203;30951](https://github.com/facebook/react/pull/30951) by [@&#8203;ling1726](https://github.com/ling1726)) - Remove `render`, `hydrate`, `findDOMNode`, `unmountComponentAtNode`, `unstable_createEventHandle`, `unstable_renderSubtreeIntoContainer`, and `unstable_runWithPriority`. Move `createRoot` and `hydrateRoot` to `react-dom/client`. ([#&#8203;28271](https://github.com/facebook/react/pull/28271) by [@&#8203;gnoff](https://github.com/gnoff)) - Remove `test-utils` ([#&#8203;28541](https://github.com/facebook/react/pull/28541) by [@&#8203;eps1lon](https://github.com/eps1lon)) - Remove `unstable_flushControlled` ([#&#8203;26397](https://github.com/facebook/react/pull/26397) by [@&#8203;kassens](https://github.com/kassens)) - Remove legacy mode ([#&#8203;28468](https://github.com/facebook/react/pull/28468) by [@&#8203;gnoff](https://github.com/gnoff)) - Remove `renderToStaticNodeStream()` ([#&#8203;28873](https://github.com/facebook/react/pull/28873) by [@&#8203;gnoff](https://github.com/gnoff)) - Remove `unstable_renderSubtreeIntoContainer` ([#&#8203;29771](https://github.com/facebook/react/pull/29771) by [@&#8203;kassens](https://github.com/kassens)) ##### React DOM Server - Stable release of React Server Components ([Many, many PRs](https://github.com/facebook/react/pulls?q=is%3Apr+is%3Aclosed+%5BFlight%5D+in%3Atitle+created%3A%3C2024-12-01+) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage), [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;gnoff](https://github.com/gnoff), [@&#8203;sammy-SC](https://github.com/sammy-SC), [@&#8203;gaearon](https://github.com/gaearon), [@&#8203;sophiebits](https://github.com/sophiebits), [@&#8203;unstubbable](https://github.com/unstubbable), [@&#8203;lubieowoce](https://github.com/lubieowoce)) - Support Server Actions ([#&#8203;26124](https://github.com/facebook/react/pull/26124), [#&#8203;26632](https://github.com/facebook/react/pull/26632), [#&#8203;27459](https://github.com/facebook/react/pull/27459) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and [@&#8203;acdlite](https://github.com/acdlite)) - Changes to SSR - Add external runtime which bootstraps hydration on the client for binary transparency ([#&#8203;25437](https://github.com/facebook/react/pull/25437), [#&#8203;26169](https://github.com/facebook/react/pull/26169), [#&#8203;25499](https://github.com/facebook/react/pull/25499) by [@&#8203;MofeiZ](https://github.com/mofeiZ) and [@&#8203;acdlite](https://github.com/acdlite)) - Support subresource integrity for `bootstrapScripts` and `bootstrapModules` ([#&#8203;25104](https://github.com/facebook/react/pull/25104) by [@&#8203;gnoff](https://github.com/gnoff)) - Fix null bytes written at text chunk boundaries ([#&#8203;26228](https://github.com/facebook/react/pull/26228) by [@&#8203;sophiebits](https://github.com/sophiebits)) - Fix logic around attribute serialization ([#&#8203;26526](https://github.com/facebook/react/pull/26526) by [@&#8203;gnoff](https://github.com/gnoff)) - Fix precomputed chunk cleared on Node 18 ([#&#8203;25645](https://github.com/facebook/react/pull/25645) by [@&#8203;feedthejim](https://github.com/feedthejim)) - Optimize end tag chunks ([#&#8203;27522](https://github.com/facebook/react/pull/27522) by [@&#8203;yujunjung](https://github.com/yujunjung)) - Gracefully handle suspending in DOM configs ([#&#8203;26768](https://github.com/facebook/react/pull/26768) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Check for nullish values on ReactCustomFormAction ([#&#8203;26770](https://github.com/facebook/react/pull/26770) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Preload `bootstrapModules`, `bootstrapScripts`, and update priority queue ([#&#8203;26754](https://github.com/facebook/react/pull/26754), [#&#8203;26753](https://github.com/facebook/react/pull/26753), [#&#8203;27190](https://github.com/facebook/react/pull/27190), [#&#8203;27189](https://github.com/facebook/react/pull/27189) by [@&#8203;gnoff](https://github.com/gnoff)) - Client render the nearest child or parent suspense boundary if replay errors or is aborted ([#&#8203;27386](https://github.com/facebook/react/pull/27386) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Don't bail out of flushing if we still have pending root tasks ([#&#8203;27385](https://github.com/facebook/react/pull/27385) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Ensure Resumable State is Serializable ([#&#8203;27388](https://github.com/facebook/react/pull/27388) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Remove extra render pass when reverting to client render ([#&#8203;26445](https://github.com/facebook/react/pull/26445) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix unwinding context during selective hydration ([#&#8203;25876](https://github.com/facebook/react/pull/25876) by [@&#8203;tyao1](https://github.com/tyao1)) - Stop flowing and then abort if a stream is cancelled ([#&#8203;27405](https://github.com/facebook/react/pull/27405) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Pass cancellation reason to abort ([#&#8203;27536](https://github.com/facebook/react/pull/27536) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Add `onHeaders` entrypoint option ([#&#8203;27641](https://github.com/facebook/react/pull/27641), [#&#8203;27712](https://github.com/facebook/react/pull/27712) by [@&#8203;gnoff](https://github.com/gnoff)) - Escape `<style>` and `<script>` textContent to enable rendering inner content without dangerouslySetInnerHTML ([#&#8203;28870](https://github.com/facebook/react/pull/28870), [#&#8203;28871](https://github.com/facebook/react/pull/28871) by [@&#8203;gnoff](https://github.com/gnoff)) - Fallback to client replaying actions for Blob serialization ([#&#8203;28987](https://github.com/facebook/react/pull/28987) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Render Suspense fallback if boundary contains new stylesheet during sync update ([#&#8203;28965](https://github.com/facebook/react/pull/28965) by [@&#8203;gnoff](https://github.com/gnoff)) - Fix header length tracking ([#&#8203;30327](https://github.com/facebook/react/issues/30327) by [@&#8203;gnoff](https://github.com/gnoff)) - Use `srcset` to trigger load event on mount ([#&#8203;30351](https://github.com/facebook/react/issues/30351) by [@&#8203;gnoff](https://github.com/gnoff)) - Don't perform work when closing stream ([#&#8203;30497](https://github.com/facebook/react/issues/30497) by [@&#8203;gnoff](https://github.com/gnoff)) - Allow aborting during render ([#&#8203;30488](https://github.com/facebook/react/issues/30488), [#&#8203;30730](https://github.com/facebook/react/pull/30730) by [@&#8203;gnoff](https://github.com/gnoff)) - Start initial work immediately ([#&#8203;31079](https://github.com/facebook/react/issues/31079) by [@&#8203;gnoff](https://github.com/gnoff)) - A transition flowing into a dehydrated boundary no longer suspends when showing fallback ([#&#8203;27230](https://github.com/facebook/react/pull/27230) by [@&#8203;acdlite](https://github.com/acdlite)) - Fix selective hydration triggers false update loop error ([#&#8203;27439](https://github.com/facebook/react/pull/27439) by [@&#8203;acdlite](https://github.com/acdlite)) - Warn for Child Iterator of all types but allow Generator Components ([#&#8203;28853](https://github.com/facebook/react/pull/28853) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Include regular stack trace in serialized errors ([#&#8203;28684](https://github.com/facebook/react/pull/28684), [#&#8203;28738](https://github.com/facebook/react/pull/28738) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Aborting early no longer infinitely suspends ([#&#8203;24751](https://github.com/facebook/react/pull/24751) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Fix hydration warning suppression in text comparisons ([#&#8203;24784](https://github.com/facebook/react/pull/24784) by [@&#8203;gnoff](https://github.com/gnoff)) - Changes to error handling in SSR - Add diffs to hydration warnings ([#&#8203;28502](https://github.com/facebook/react/pull/28502), [#&#8203;28512](https://github.com/facebook/react/pull/28512) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Make Error creation lazy ([#&#8203;24728](https://github.com/facebook/react/pull/24728) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Remove recoverable error when a sync update flows into a dehydrated boundary ([#&#8203;25692](https://github.com/facebook/react/pull/25692) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Don't "fix up" mismatched text content with suppressedHydrationWarning ([#&#8203;26391](https://github.com/facebook/react/pull/26391) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Fix component stacks in errors ([#&#8203;27456](https://github.com/facebook/react/pull/27456) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Add component stacks to `onError` ([#&#8203;27761](https://github.com/facebook/react/pull/27761), [#&#8203;27850](https://github.com/facebook/react/pull/27850) by [@&#8203;gnoff](https://github.com/gnoff) and [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Throw hydration mismatch errors once ([#&#8203;28502](https://github.com/facebook/react/pull/28502) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Add Bun streaming server renderer ([#&#8203;25597](https://github.com/facebook/react/pull/25597) by [@&#8203;colinhacks](https://github.com/colinhacks)) - Add nonce support to bootstrap scripts ([#&#8203;26738](https://github.com/facebook/react/pull/26738) by [@&#8203;danieltott](https://github.com/danieltott)) - Add `crossorigin` support to bootstrap scripts ([#&#8203;26844](https://github.com/facebook/react/pull/26844) by [@&#8203;HenriqueLimas](https://github.com/HenriqueLimas)) - Support `nonce` and `fetchpriority` in preload links ([#&#8203;26826](https://github.com/facebook/react/pull/26826) by [@&#8203;liuyenwei](https://github.com/liuyenwei)) - Add `referrerPolicy` to `ReactDOM.preload()` ([#&#8203;27096](https://github.com/facebook/react/pull/27096) by [@&#8203;styfle](https://github.com/styfle)) - Add server condition for `react/jsx-dev-runtime` ([#&#8203;28921](https://github.com/facebook/react/pull/28921) by [@&#8203;himself65](https://github.com/himself65)) - Export version ([#&#8203;29596](https://github.com/facebook/react/pull/29596) by [@&#8203;unstubbable](https://github.com/unstubbable)) - Rename the secret export of Client and Server internals ([#&#8203;28786](https://github.com/facebook/react/pull/28786), [#&#8203;28789](https://github.com/facebook/react/pull/28789) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage)) - Remove layout effect warning on server ([#&#8203;26395](https://github.com/facebook/react/pull/26395) by [@&#8203;rickhanlonii](https://github.com/rickhanlonii)) - Remove `errorInfo.digest` from `onRecoverableError` ([#&#8203;28222](https://github.com/facebook/react/pull/28222) by [@&#8203;gnoff](https://github.com/gnoff)) ##### ReactTestRenderer - Add deprecation error to `react-test-renderer` on web ([#&#8203;27903](https://github.com/facebook/react/pull/27903), [#&#8203;28904](https://github.com/facebook/react/pull/28904) by [@&#8203;jackpope](https://github.com/jackpope) and [@&#8203;acdlite](https://github.com/acdlite)) - Render with ConcurrentRoot on web ([#&#8203;28498](https://github.com/facebook/react/pull/28498) by [@&#8203;jackpope](https://github.com/jackpope)) - Remove `react-test-renderer/shallow` export ([#&#8203;25475](https://github.com/facebook/react/pull/25475), [#&#8203;28497](https://github.com/facebook/react/pull/28497) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and [@&#8203;jackpope](https://github.com/jackpope)) ##### React Reconciler - Enable suspending commits without blocking render ([#&#8203;26398](https://github.com/facebook/react/pull/26398), [#&#8203;26427](https://github.com/facebook/react/pull/26427) by [@&#8203;acdlite](https://github.com/acdlite)) - Remove `prepareUpdate` ([#&#8203;26583](https://github.com/facebook/react/pull/26583), [#&#8203;27409](http://github.com/facebook/react/pull/27409) by [@&#8203;sebmarkbage](https://github.com/sebmarkbage) and [@&#8203;sophiebits](https://github.com/sophiebits)) ##### React-Is - Enable tree shaking ([#&#8203;27701](https://github.com/facebook/react/pull/27701) by [@&#8203;markerikson](https://github.com/markerikson)) - Remove `isConcurrentMode` and `isAsyncMode` methods ([#&#8203;28224](https://github.com/facebook/react/pull/28224) by [@&#8203;gaearon](https://github.com/gaearon)) ##### useSyncExternalStore - Remove React internals access ([#&#8203;29868](https://github.com/facebook/react/pull/29868) by [@&#8203;phryneas](https://github.com/phryneas)) - Fix stale selectors keeping previous store references ([#&#8203;25969](https://github.com/facebook/react/pull/25968) by [@&#8203;jellevoost](https://github.com/jellevoost)) ### [`v19.0.0-rc-fb9a90fa48-20240614`](https://github.com/facebook/react/compare/fa6eab58541330349480690ef4e211520cc08d94...fb9a90fa480efce40ac2a845478817467f965ddc) [Compare Source](https://github.com/facebook/react/compare/fa6eab58541330349480690ef4e211520cc08d94...fb9a90fa480efce40ac2a845478817467f965ddc) ### [`v19.0.0-rc-fa6eab58-20240815`](https://github.com/facebook/react/compare/f9ebd85a196948be17efdd6774b4d0464b3b1f53...fa6eab58541330349480690ef4e211520cc08d94) [Compare Source](https://github.com/facebook/react/compare/f9ebd85a196948be17efdd6774b4d0464b3b1f53...fa6eab58541330349480690ef4e211520cc08d94) ### [`v19.0.0-rc-f9ebd85a-20240925`](https://github.com/facebook/react/compare/f994737d14e83f22ead70e6a41f87353008b73cf...f9ebd85a196948be17efdd6774b4d0464b3b1f53) [Compare Source](https://github.com/facebook/react/compare/f994737d14e83f22ead70e6a41f87353008b73cf...f9ebd85a196948be17efdd6774b4d0464b3b1f53) ### [`v19.0.0-rc-f994737d14-20240522`](https://github.com/facebook/react/compare/f90a6bcc4c988f7524ce2be675b3257a530a51e9...f994737d14e83f22ead70e6a41f87353008b73cf) [Compare Source](https://github.com/facebook/react/compare/f90a6bcc4c988f7524ce2be675b3257a530a51e9...f994737d14e83f22ead70e6a41f87353008b73cf) ### [`v19.0.0-rc-f90a6bcc-20240827`](https://github.com/facebook/react/compare/f6cce072cf831573a29849b4146f6bab51f85380...f90a6bcc4c988f7524ce2be675b3257a530a51e9) [Compare Source](https://github.com/facebook/react/compare/f6cce072cf831573a29849b4146f6bab51f85380...f90a6bcc4c988f7524ce2be675b3257a530a51e9) ### [`v19.0.0-rc-f6cce072-20240723`](https://github.com/facebook/react/compare/f65ac7bd4aac61db1ec25af5b03b72d03779a890...f6cce072cf831573a29849b4146f6bab51f85380) [Compare Source](https://github.com/facebook/react/compare/f65ac7bd4aac61db1ec25af5b03b72d03779a890...f6cce072cf831573a29849b4146f6bab51f85380) ### [`v19.0.0-rc-f65ac7bd-20240826`](https://github.com/facebook/react/compare/f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25...f65ac7bd4aac61db1ec25af5b03b72d03779a890) [Compare Source](https://github.com/facebook/react/compare/f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25...f65ac7bd4aac61db1ec25af5b03b72d03779a890) ### [`v19.0.0-rc-f3e09d6328-20240612`](https://github.com/facebook/react/compare/f38c22b244086f62ae5ed851b6ed17029ec44be5...f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25) [Compare Source](https://github.com/facebook/react/compare/f38c22b244086f62ae5ed851b6ed17029ec44be5...f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzOS41Ny40IiwidXBkYXRlZEluVmVyIjoiNDEuOTkuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
bustikiller force-pushed renovate/react-dom-19.x from 861e7547c5 to 9853ead966 2024-12-11 01:10:47 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 9853ead966 to c612385462 2024-12-12 01:10:22 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from c612385462 to 3692f3d89c 2024-12-15 01:21:49 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 3692f3d89c to 08826e0e7d 2024-12-16 01:18:35 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 08826e0e7d to dd251395ce 2024-12-17 01:07:25 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from dd251395ce to 39699ffc5b 2024-12-18 01:06:47 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 39699ffc5b to ba5e1e7a24 2024-12-19 01:07:34 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ba5e1e7a24 to b3604c85a3 2024-12-21 01:07:56 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b3604c85a3 to 4bba5015de 2024-12-22 01:22:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 4bba5015de to a0ef88063d 2024-12-29 01:13:03 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from a0ef88063d to d2d56dadfb 2024-12-30 01:05:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from d2d56dadfb to 2325f44aa6 2025-01-02 03:13:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2325f44aa6 to 1402ac2651 2025-01-04 03:06:19 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 1402ac2651 to f95cd7f07f 2025-01-05 03:05:56 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from f95cd7f07f to 15eaa45df7 2025-01-07 03:04:20 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 15eaa45df7 to baab0596ac 2025-01-09 03:06:32 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from baab0596ac to cbdce7014b 2025-01-10 03:06:39 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from cbdce7014b to f18d16a722 2025-01-11 03:12:04 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from f18d16a722 to b6e4d3b22d 2025-01-13 03:04:21 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b6e4d3b22d to 78f386852d 2025-01-14 03:06:04 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 78f386852d to 58eec42da0 2025-01-16 03:08:32 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 58eec42da0 to 44bb1e2884 2025-01-17 03:08:20 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 44bb1e2884 to b31f3bec34 2025-01-23 03:19:45 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b31f3bec34 to bf4eff02a8 2025-01-25 03:11:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from bf4eff02a8 to 2c2a6dce9a 2025-01-27 03:06:14 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2c2a6dce9a to 612b48d1bd 2025-01-28 03:08:16 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 612b48d1bd to 22c1a81118 2025-01-29 03:09:33 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 22c1a81118 to 697537f600 2025-02-01 03:07:34 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 697537f600 to 7b2f4f0342 2025-02-02 03:09:18 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 7b2f4f0342 to f79c2b362e 2025-02-03 03:10:31 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from f79c2b362e to bbb1530073 2025-02-05 03:07:58 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from bbb1530073 to d518e1a54d 2025-02-12 03:10:04 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from d518e1a54d to 6f00eaf0f4 2025-02-13 03:30:10 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6f00eaf0f4 to 2b21e60a2b 2025-02-17 03:14:10 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2b21e60a2b to b13d14afa7 2025-02-18 03:12:17 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b13d14afa7 to 0c3ccb0380 2025-02-19 03:12:11 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 0c3ccb0380 to ceecef6e9d 2025-02-20 03:13:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ceecef6e9d to ebd21b5123 2025-02-21 03:12:26 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ebd21b5123 to 6dfcff8e26 2025-03-02 03:11:40 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6dfcff8e26 to b991f66986 2025-03-03 03:10:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b991f66986 to 6301e5c2df 2025-03-04 03:08:29 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6301e5c2df to 2b9b38fb92 2025-03-05 03:09:30 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2b9b38fb92 to 88ed546e3c 2025-03-06 03:11:20 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 88ed546e3c to cf0ca76e42 2025-03-07 03:06:51 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from cf0ca76e42 to 7f8b81e24b 2025-03-08 03:04:48 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 7f8b81e24b to 8f6285a534 2025-03-09 03:13:17 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 8f6285a534 to 9f0d280308 2025-03-11 03:07:13 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 9f0d280308 to 2f7316f241 2025-03-12 03:07:55 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2f7316f241 to 6de2e5f0ab 2025-03-13 03:08:25 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6de2e5f0ab to 5879c10d06 2025-03-14 03:08:35 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5879c10d06 to d18e3b18b7 2025-03-15 03:08:27 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from d18e3b18b7 to 51a78017aa 2025-03-19 03:05:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 51a78017aa to a8e8c3bcb0 2025-03-20 03:05:16 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from a8e8c3bcb0 to 6468c571a8 2025-03-21 03:06:14 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6468c571a8 to 130ea71687 2025-03-22 03:04:58 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 130ea71687 to 6a02525ebe 2025-03-23 03:03:50 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6a02525ebe to e1998d61cb 2025-03-26 03:06:29 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e1998d61cb to 7e2c9fcf39 2025-03-27 03:06:55 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 7e2c9fcf39 to fb75b5be35 2025-03-28 03:09:36 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from fb75b5be35 to b6d9b4112d 2025-03-29 03:08:11 +00:00 Compare
bustikiller changed title from Update dependency react-dom to v19.0.0 to Update dependency react-dom to v19.1.0 2025-03-29 03:08:11 +00:00
bustikiller force-pushed renovate/react-dom-19.x from b6d9b4112d to e18a7014f0 2025-04-02 02:07:05 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e18a7014f0 to ac33b54404 2025-04-03 02:05:35 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ac33b54404 to ece0fd4677 2025-04-04 02:07:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ece0fd4677 to d6f787c779 2025-04-05 02:05:50 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from d6f787c779 to 91ea90c2d8 2025-04-06 02:06:14 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 91ea90c2d8 to 4ce7d6c2cf 2025-04-07 02:18:33 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 4ce7d6c2cf to 56f760f892 2025-04-10 02:05:30 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 56f760f892 to 39e7898dc1 2025-04-11 02:05:22 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 39e7898dc1 to 3b81e2293e 2025-04-13 02:06:25 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 3b81e2293e to 6a7ebb59c5 2025-04-19 02:06:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6a7ebb59c5 to 278d6da389 2025-04-20 02:08:03 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 278d6da389 to ba3354fb4d 2025-04-22 02:06:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ba3354fb4d to 77fdff144e 2025-04-23 02:06:56 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 77fdff144e to e8ec1449b5 2025-04-26 02:07:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e8ec1449b5 to 8f09f0606d 2025-04-27 02:07:51 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 8f09f0606d to f75ee2a623 2025-04-28 02:06:07 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from f75ee2a623 to 8fa46f6d3a 2025-04-30 02:07:25 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 8fa46f6d3a to 4a4988bf09 2025-05-01 02:07:22 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 4a4988bf09 to 4da1bd87bf 2025-05-02 02:06:17 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 4da1bd87bf to ba3970f636 2025-05-06 02:06:04 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ba3970f636 to 8ab7bf3eaa 2025-05-10 02:07:35 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 8ab7bf3eaa to 9b8efb4d8e 2025-05-11 02:06:59 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 9b8efb4d8e to 87d3d65d45 2025-05-12 02:04:57 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 87d3d65d45 to cb1d5b3a01 2025-05-13 02:05:42 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from cb1d5b3a01 to 430050948f 2025-05-14 02:05:36 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 430050948f to 6e17bcec4b 2025-05-15 02:09:09 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 6e17bcec4b to 549a614c7b 2025-05-16 02:09:27 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 549a614c7b to 89608c7f3e 2025-05-20 02:05:57 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 89608c7f3e to 5db62469b6 2025-05-29 02:08:40 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5db62469b6 to 147bc444d0 2025-05-31 02:07:12 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 147bc444d0 to c990aaee6a 2025-06-01 02:08:35 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from c990aaee6a to 93d5418c14 2025-06-02 02:04:50 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 93d5418c14 to ea17c56c9a 2025-06-03 02:07:05 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ea17c56c9a to 14d3d5a75f 2025-06-05 02:06:38 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 14d3d5a75f to 16d556da18 2025-06-09 02:06:31 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 16d556da18 to 912679b864 2025-06-10 02:07:33 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 912679b864 to 5b888d832a 2025-06-11 02:09:21 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5b888d832a to 466ef899cc 2025-06-13 02:07:24 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 466ef899cc to aed26f34a0 2025-06-14 02:06:24 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from aed26f34a0 to bbee77cac2 2025-06-15 02:04:10 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from bbee77cac2 to a94081f18b 2025-06-16 02:04:54 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from a94081f18b to ac2dd3be62 2025-06-18 02:08:02 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ac2dd3be62 to 472f01581a 2025-06-20 02:07:48 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 472f01581a to 0aebee80c7 2025-06-21 02:07:45 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 0aebee80c7 to 5d0bb1e1e2 2025-06-22 02:08:04 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5d0bb1e1e2 to 1e17dd515b 2025-06-23 02:08:22 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 1e17dd515b to 3ea3114026 2025-06-24 02:07:18 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 3ea3114026 to ab6ed671c9 2025-06-26 02:08:12 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from ab6ed671c9 to e649d39ec5 2025-06-28 02:05:39 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e649d39ec5 to b6e0a823bb 2025-06-29 02:06:45 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b6e0a823bb to 87116922f2 2025-06-30 02:07:19 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 87116922f2 to e5d2628d99 2025-07-01 02:08:02 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e5d2628d99 to c67708f02e 2025-07-02 02:10:47 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from c67708f02e to 3c9e2094e4 2025-07-04 02:06:19 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 3c9e2094e4 to f104b01133 2025-07-05 02:06:58 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from f104b01133 to 2dd658b5cc 2025-07-06 02:08:22 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2dd658b5cc to 5bf134db43 2025-07-07 02:05:31 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5bf134db43 to 2c7680625c 2025-07-08 02:14:41 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 2c7680625c to 3807ccb2a3 2025-07-09 02:07:09 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 3807ccb2a3 to 8dd8f117a4 2025-07-10 02:13:00 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 8dd8f117a4 to bc78f6fd1d 2025-07-11 02:07:42 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from bc78f6fd1d to b088daa7db 2025-07-13 02:08:06 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b088daa7db to 0a4b086e29 2025-07-14 02:05:37 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 0a4b086e29 to 600a27356e 2025-07-15 02:06:40 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 600a27356e to a6fe547d49 2025-07-16 02:10:52 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from a6fe547d49 to b7a9bd3647 2025-07-26 02:09:19 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from b7a9bd3647 to feb10982ae 2025-07-27 02:07:53 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from feb10982ae to 5c045854dc 2025-07-28 02:07:32 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 5c045854dc to 88891f4972 2025-07-29 02:09:43 +00:00 Compare
bustikiller changed title from Update dependency react-dom to v19.1.0 to Update dependency react-dom to v19.1.1 2025-07-29 02:09:43 +00:00
bustikiller force-pushed renovate/react-dom-19.x from 88891f4972 to e5d8a1c9c6 2025-07-30 02:06:09 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from e5d8a1c9c6 to 664c42a0a8 2025-07-31 02:08:17 +00:00 Compare
bustikiller force-pushed renovate/react-dom-19.x from 664c42a0a8 to f7f57a42cb 2025-09-04 15:04:58 +00:00 Compare
Some checks failed
Build Nginx-based docker image / build-static-assets (push) Has been cancelled
Required
Details
Add copyright notice / copyright_notice (pull_request) Has been cancelled
Required
Details
Check usage of free licenses / build-static-assets (pull_request) Has been cancelled
Required
Details
Playwright Tests / test (pull_request) Has been cancelled
Required
Details
Some required checks were not successful.
This branch is out-of-date with the base branch
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-dom-19.x:renovate/react-dom-19.x
git checkout renovate/react-dom-19.x
Sign in to join this conversation.
No Reviewers
No Label
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bustikiller/wedding-planner-frontend#142
No description provided.