[Flight] Don't drop debug info if there's only a readable debug channel (#34304)

When the Flight Client is waiting for pending debug chunks, it drops the
debug info if there is no writable side of the debug channel defined.
However, it should instead check if there's no readable side defined.

Fixing this is not only important for browser clients that don't want or
need a return channel, but it's also crucial for server-side rendering,
because the Node and Edge clients only accept a readable side of the
debug channel. So they can't even define a noop writable side as a
workaround.

DiffTrain build for [9c2e2b8475](https://github.com/facebook/react/commit/9c2e2b8475fb9d55fe47f55b007fba2d474e06f4)
This commit is contained in:
unstubbable
2025-08-27 05:08:46 -07:00
parent 41f244f5e8
commit 6865dd50f8
34 changed files with 156 additions and 96 deletions
+1 -1
View File
@@ -1 +1 @@
cacc20e37c9ec320b5d2aa13f86cfc999d269d6b
9c2e2b8475fb9d55fe47f55b007fba2d474e06f4
+1 -1
View File
@@ -1 +1 @@
cacc20e37c9ec320b5d2aa13f86cfc999d269d6b
9c2e2b8475fb9d55fe47f55b007fba2d474e06f4
+1 -1
View File
@@ -1409,7 +1409,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -1409,7 +1409,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -600,4 +600,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
+1 -1
View File
@@ -600,4 +600,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
@@ -604,7 +604,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -604,7 +604,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -19588,10 +19588,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19625,7 +19625,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+3 -3
View File
@@ -19359,10 +19359,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19396,7 +19396,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -11298,10 +11298,10 @@ var slice = Array.prototype.slice,
})(React.Component);
var internals$jscomp$inline_1603 = {
bundleType: 0,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1604 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11327,4 +11327,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
@@ -11010,10 +11010,10 @@ var slice = Array.prototype.slice,
})(React.Component);
var internals$jscomp$inline_1576 = {
bundleType: 0,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1577 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11039,4 +11039,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
+12 -6
View File
@@ -26223,7 +26223,13 @@ __DEV__ &&
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; instance.nodeType !== COMMENT_NODE; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -32115,11 +32121,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-cacc20e3-20250826" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-9c2e2b84-20250827" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-classic-cacc20e3-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-9c2e2b84-20250827\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -32162,10 +32168,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32766,7 +32772,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+12 -6
View File
@@ -26016,7 +26016,13 @@ __DEV__ &&
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; instance.nodeType !== COMMENT_NODE; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -31900,11 +31906,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-cacc20e3-20250826" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-9c2e2b84-20250827" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-modern-cacc20e3-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-9c2e2b84-20250827\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31947,10 +31953,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32551,7 +32557,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+12 -6
View File
@@ -17944,7 +17944,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -19599,14 +19605,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2087 = React.version;
if (
"19.2.0-www-classic-cacc20e3-20250826" !==
"19.2.0-www-classic-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2087
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2087,
"19.2.0-www-classic-cacc20e3-20250826"
"19.2.0-www-classic-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19624,10 +19630,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2712 = {
bundleType: 0,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2713 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20039,4 +20045,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
+12 -6
View File
@@ -17673,7 +17673,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -19328,14 +19334,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2077 = React.version;
if (
"19.2.0-www-modern-cacc20e3-20250826" !==
"19.2.0-www-modern-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2077
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2077,
"19.2.0-www-modern-cacc20e3-20250826"
"19.2.0-www-modern-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19353,10 +19359,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2694 = {
bundleType: 0,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2695 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19768,4 +19774,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
@@ -19999,7 +19999,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -21654,14 +21660,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2334 = React.version;
if (
"19.2.0-www-classic-cacc20e3-20250826" !==
"19.2.0-www-classic-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2334
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2334,
"19.2.0-www-classic-cacc20e3-20250826"
"19.2.0-www-classic-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21679,10 +21685,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2336 = {
bundleType: 0,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2336.getLaneLabelMap = getLaneLabelMap),
@@ -22098,7 +22104,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -19793,7 +19793,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -21448,14 +21454,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2324 = React.version;
if (
"19.2.0-www-modern-cacc20e3-20250826" !==
"19.2.0-www-modern-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2324
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2324,
"19.2.0-www-modern-cacc20e3-20250826"
"19.2.0-www-modern-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21473,10 +21479,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2326 = {
bundleType: 0,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2326.getLaneLabelMap = getLaneLabelMap),
@@ -21892,7 +21898,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -10163,5 +10163,5 @@ __DEV__ &&
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
})();
@@ -10092,5 +10092,5 @@ __DEV__ &&
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
})();
@@ -6892,4 +6892,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
@@ -6825,4 +6825,4 @@ exports.renderToString = function (children, options) {
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
@@ -26446,7 +26446,13 @@ __DEV__ &&
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; instance.nodeType !== COMMENT_NODE; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -32436,11 +32442,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-cacc20e3-20250826" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-9c2e2b84-20250827" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-classic-cacc20e3-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-9c2e2b84-20250827\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -32483,10 +32489,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -33253,5 +33259,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
})();
@@ -26239,7 +26239,13 @@ __DEV__ &&
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; instance.nodeType !== COMMENT_NODE; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -32221,11 +32227,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-cacc20e3-20250826" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-9c2e2b84-20250827" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-www-modern-cacc20e3-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-9c2e2b84-20250827\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -32268,10 +32274,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -33038,5 +33044,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
})();
@@ -18216,7 +18216,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -19915,14 +19921,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2116 = React.version;
if (
"19.2.0-www-classic-cacc20e3-20250826" !==
"19.2.0-www-classic-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2116
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2116,
"19.2.0-www-classic-cacc20e3-20250826"
"19.2.0-www-classic-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19940,10 +19946,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2746 = {
bundleType: 0,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2747 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20506,4 +20512,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
@@ -17945,7 +17945,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
}
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
for (; 8 !== instance.nodeType; ) {
if (!inRootOrSingleton) return null;
if (
(1 !== instance.nodeType ||
"INPUT" !== instance.nodeName ||
"hidden" !== instance.type) &&
!inRootOrSingleton
)
return null;
instance = getNextHydratable(instance.nextSibling);
if (null === instance) return null;
}
@@ -19644,14 +19650,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2106 = React.version;
if (
"19.2.0-www-modern-cacc20e3-20250826" !==
"19.2.0-www-modern-9c2e2b84-20250827" !==
isomorphicReactPackageVersion$jscomp$inline_2106
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2106,
"19.2.0-www-modern-cacc20e3-20250826"
"19.2.0-www-modern-9c2e2b84-20250827"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19669,10 +19675,10 @@ Internals.Events = [
];
var internals$jscomp$inline_2728 = {
bundleType: 0,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2729 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -20235,4 +20241,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
@@ -22454,7 +22454,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -22234,7 +22234,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -14048,7 +14048,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -13765,7 +13765,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -15464,10 +15464,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-cacc20e3-20250826",
version: "19.2.0-www-classic-9c2e2b84-20250827",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-classic-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15602,5 +15602,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-classic-cacc20e3-20250826";
exports.version = "19.2.0-www-classic-9c2e2b84-20250827";
})();
@@ -15464,10 +15464,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-cacc20e3-20250826",
version: "19.2.0-www-modern-9c2e2b84-20250827",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-cacc20e3-20250826"
reconcilerVersion: "19.2.0-www-modern-9c2e2b84-20250827"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15602,5 +15602,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-modern-cacc20e3-20250826";
exports.version = "19.2.0-www-modern-9c2e2b84-20250827";
})();
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-classic-cacc20e3-20250826
19.2.0-www-classic-9c2e2b84-20250827
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-modern-cacc20e3-20250826
19.2.0-www-modern-9c2e2b84-20250827