Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,16 @@
"pretty-ms": "7.0.0",
"random-seed": "0.3.0",
"react": "19.0.0",
"react-builtin": "npm:react@19.2.0-canary-5d87cd22-20250704",
"react-builtin": "npm:react@19.2.0-canary-befc1246-20250708",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:react-dom@19.2.0-canary-5d87cd22-20250704",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-5d87cd22-20250704",
"react-experimental-builtin": "npm:react@0.0.0-experimental-5d87cd22-20250704",
"react-is-builtin": "npm:react-is@19.2.0-canary-5d87cd22-20250704",
"react-server-dom-turbopack": "19.2.0-canary-5d87cd22-20250704",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-5d87cd22-20250704",
"react-server-dom-webpack": "19.2.0-canary-5d87cd22-20250704",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-5d87cd22-20250704",
"react-dom-builtin": "npm:react-dom@19.2.0-canary-befc1246-20250708",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-befc1246-20250708",
"react-experimental-builtin": "npm:react@0.0.0-experimental-befc1246-20250708",
"react-is-builtin": "npm:react-is@19.2.0-canary-befc1246-20250708",
"react-server-dom-turbopack": "19.2.0-canary-befc1246-20250708",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-befc1246-20250708",
"react-server-dom-webpack": "19.2.0-canary-befc1246-20250708",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-befc1246-20250708",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand All @@ -252,8 +252,8 @@
"resolve-from": "5.0.0",
"sass": "1.54.0",
"satori": "0.12.2",
"scheduler-builtin": "npm:scheduler@0.27.0-canary-5d87cd22-20250704",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-5d87cd22-20250704",
"scheduler-builtin": "npm:scheduler@0.27.0-canary-befc1246-20250708",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-befc1246-20250708",
"seedrandom": "3.0.5",
"semver": "7.3.7",
"serve-handler": "6.1.6",
Expand Down Expand Up @@ -297,10 +297,10 @@
"@types/react-dom": "19.1.2",
"@types/retry": "0.12.0",
"jest-snapshot": "30.0.0-alpha.6",
"react": "19.2.0-canary-5d87cd22-20250704",
"react-dom": "19.2.0-canary-5d87cd22-20250704",
"react-is": "19.2.0-canary-5d87cd22-20250704",
"scheduler": "0.27.0-canary-5d87cd22-20250704"
"react": "19.2.0-canary-befc1246-20250708",
"react-dom": "19.2.0-canary-befc1246-20250708",
"react-is": "19.2.0-canary-befc1246-20250708",
"scheduler": "0.27.0-canary-befc1246-20250708"
},
"patchedDependencies": {
"webpack-sources@3.2.3": "patches/webpack-sources@3.2.3.patch",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@
"function" === typeof fn && componentFrameCache.set(fn, sampleLines);
return sampleLines;
}
function describeFiber(fiber) {
function describeFiber(fiber, childFiber) {
switch (fiber.tag) {
case 26:
case 27:
Expand All @@ -850,7 +850,9 @@
case 16:
return describeBuiltInComponentFrame("Lazy");
case 13:
return describeBuiltInComponentFrame("Suspense");
return fiber.child !== childFiber && null !== childFiber
? describeBuiltInComponentFrame("Suspense Fallback")
: describeBuiltInComponentFrame("Suspense");
case 19:
return describeBuiltInComponentFrame("SuspenseList");
case 0:
Expand All @@ -870,9 +872,10 @@
}
function getStackByFiberInDevAndProd(workInProgress) {
try {
var info = "";
var info = "",
previous = null;
do {
info += describeFiber(workInProgress);
info += describeFiber(workInProgress, previous);
var debugInfo = workInProgress._debugInfo;
if (debugInfo)
for (var i = debugInfo.length - 1; 0 <= i; i--) {
Expand Down Expand Up @@ -900,6 +903,7 @@
info = JSCompiler_temp_const + JSCompiler_inline_result;
}
}
previous = workInProgress;
workInProgress = workInProgress.return;
} while (workInProgress);
return info;
Expand Down Expand Up @@ -31105,11 +31109,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-experimental-5d87cd22-20250704" !== isomorphicReactPackageVersion)
if ("19.2.0-experimental-befc1246-20250708" !== 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-experimental-5d87cd22-20250704\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-experimental-befc1246-20250708\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -31146,10 +31150,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-experimental-5d87cd22-20250704",
version: "19.2.0-experimental-befc1246-20250708",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-5d87cd22-20250704"
reconcilerVersion: "19.2.0-experimental-befc1246-20250708"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -31295,7 +31299,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-experimental-5d87cd22-20250704";
exports.version = "19.2.0-experimental-befc1246-20250708";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ function describeNativeComponentFrame(fn, construct) {
? describeBuiltInComponentFrame(previousPrepareStackTrace)
: "";
}
function describeFiber(fiber) {
function describeFiber(fiber, childFiber) {
switch (fiber.tag) {
case 26:
case 27:
Expand All @@ -587,7 +587,9 @@ function describeFiber(fiber) {
case 16:
return describeBuiltInComponentFrame("Lazy");
case 13:
return describeBuiltInComponentFrame("Suspense");
return fiber.child !== childFiber && null !== childFiber
? describeBuiltInComponentFrame("Suspense Fallback")
: describeBuiltInComponentFrame("Suspense");
case 19:
return describeBuiltInComponentFrame("SuspenseList");
case 0:
Expand All @@ -607,9 +609,11 @@ function describeFiber(fiber) {
}
function getStackByFiberInDevAndProd(workInProgress) {
try {
var info = "";
var info = "",
previous = null;
do
(info += describeFiber(workInProgress)),
(info += describeFiber(workInProgress, previous)),
(previous = workInProgress),
(workInProgress = workInProgress.return);
while (workInProgress);
return info;
Expand Down Expand Up @@ -19253,14 +19257,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2169 = React.version;
if (
"19.2.0-experimental-5d87cd22-20250704" !==
"19.2.0-experimental-befc1246-20250708" !==
isomorphicReactPackageVersion$jscomp$inline_2169
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2169,
"19.2.0-experimental-5d87cd22-20250704"
"19.2.0-experimental-befc1246-20250708"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -19282,10 +19286,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2854 = {
bundleType: 0,
version: "19.2.0-experimental-5d87cd22-20250704",
version: "19.2.0-experimental-befc1246-20250708",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-5d87cd22-20250704"
reconcilerVersion: "19.2.0-experimental-befc1246-20250708"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2855 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -19392,4 +19396,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-experimental-5d87cd22-20250704";
exports.version = "19.2.0-experimental-befc1246-20250708";
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@
"function" === typeof fn && componentFrameCache.set(fn, sampleLines);
return sampleLines;
}
function describeFiber(fiber) {
function describeFiber(fiber, childFiber) {
switch (fiber.tag) {
case 26:
case 27:
Expand All @@ -858,7 +858,9 @@
case 16:
return describeBuiltInComponentFrame("Lazy");
case 13:
return describeBuiltInComponentFrame("Suspense");
return fiber.child !== childFiber && null !== childFiber
? describeBuiltInComponentFrame("Suspense Fallback")
: describeBuiltInComponentFrame("Suspense");
case 19:
return describeBuiltInComponentFrame("SuspenseList");
case 0:
Expand All @@ -878,9 +880,10 @@
}
function getStackByFiberInDevAndProd(workInProgress) {
try {
var info = "";
var info = "",
previous = null;
do {
info += describeFiber(workInProgress);
info += describeFiber(workInProgress, previous);
var debugInfo = workInProgress._debugInfo;
if (debugInfo)
for (var i = debugInfo.length - 1; 0 <= i; i--) {
Expand Down Expand Up @@ -908,6 +911,7 @@
info = JSCompiler_temp_const + JSCompiler_inline_result;
}
}
previous = workInProgress;
workInProgress = workInProgress.return;
} while (workInProgress);
return info;
Expand Down Expand Up @@ -31157,11 +31161,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-experimental-5d87cd22-20250704" !== isomorphicReactPackageVersion)
if ("19.2.0-experimental-befc1246-20250708" !== 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-experimental-5d87cd22-20250704\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-experimental-befc1246-20250708\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -31198,10 +31202,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-experimental-5d87cd22-20250704",
version: "19.2.0-experimental-befc1246-20250708",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-5d87cd22-20250704"
reconcilerVersion: "19.2.0-experimental-befc1246-20250708"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -31677,7 +31681,7 @@
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-experimental-5d87cd22-20250704";
exports.version = "19.2.0-experimental-befc1246-20250708";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ function describeNativeComponentFrame(fn, construct) {
? describeBuiltInComponentFrame(previousPrepareStackTrace)
: "";
}
function describeFiber(fiber) {
function describeFiber(fiber, childFiber) {
switch (fiber.tag) {
case 26:
case 27:
Expand All @@ -651,7 +651,9 @@ function describeFiber(fiber) {
case 16:
return describeBuiltInComponentFrame("Lazy");
case 13:
return describeBuiltInComponentFrame("Suspense");
return fiber.child !== childFiber && null !== childFiber
? describeBuiltInComponentFrame("Suspense Fallback")
: describeBuiltInComponentFrame("Suspense");
case 19:
return describeBuiltInComponentFrame("SuspenseList");
case 0:
Expand All @@ -671,9 +673,11 @@ function describeFiber(fiber) {
}
function getStackByFiberInDevAndProd(workInProgress) {
try {
var info = "";
var info = "",
previous = null;
do
(info += describeFiber(workInProgress)),
(info += describeFiber(workInProgress, previous)),
(previous = workInProgress),
(workInProgress = workInProgress.return);
while (workInProgress);
return info;
Expand Down Expand Up @@ -20935,14 +20939,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2391 = React.version;
if (
"19.2.0-experimental-5d87cd22-20250704" !==
"19.2.0-experimental-befc1246-20250708" !==
isomorphicReactPackageVersion$jscomp$inline_2391
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2391,
"19.2.0-experimental-5d87cd22-20250704"
"19.2.0-experimental-befc1246-20250708"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -20964,10 +20968,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_3078 = {
bundleType: 0,
version: "19.2.0-experimental-5d87cd22-20250704",
version: "19.2.0-experimental-befc1246-20250708",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-5d87cd22-20250704"
reconcilerVersion: "19.2.0-experimental-befc1246-20250708"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_3079 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -21234,7 +21238,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-experimental-5d87cd22-20250704";
exports.version = "19.2.0-experimental-befc1246-20250708";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Loading
Loading