Skip to content
Merged
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-eaee5308-20250728",
"react-builtin": "npm:react@19.2.0-canary-9be531cd-20250729",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:react-dom@19.2.0-canary-eaee5308-20250728",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-eaee5308-20250728",
"react-experimental-builtin": "npm:react@0.0.0-experimental-eaee5308-20250728",
"react-is-builtin": "npm:react-is@19.2.0-canary-eaee5308-20250728",
"react-server-dom-turbopack": "19.2.0-canary-eaee5308-20250728",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-eaee5308-20250728",
"react-server-dom-webpack": "19.2.0-canary-eaee5308-20250728",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-eaee5308-20250728",
"react-dom-builtin": "npm:react-dom@19.2.0-canary-9be531cd-20250729",
"react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-9be531cd-20250729",
"react-experimental-builtin": "npm:react@0.0.0-experimental-9be531cd-20250729",
"react-is-builtin": "npm:react-is@19.2.0-canary-9be531cd-20250729",
"react-server-dom-turbopack": "19.2.0-canary-9be531cd-20250729",
"react-server-dom-turbopack-experimental": "npm:react-server-dom-turbopack@0.0.0-experimental-9be531cd-20250729",
"react-server-dom-webpack": "19.2.0-canary-9be531cd-20250729",
"react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-9be531cd-20250729",
"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.15.2",
"scheduler-builtin": "npm:scheduler@0.27.0-canary-eaee5308-20250728",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-eaee5308-20250728",
"scheduler-builtin": "npm:scheduler@0.27.0-canary-9be531cd-20250729",
"scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-9be531cd-20250729",
"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.6",
"@types/retry": "0.12.0",
"jest-snapshot": "30.0.0-alpha.6",
"react": "19.2.0-canary-eaee5308-20250728",
"react-dom": "19.2.0-canary-eaee5308-20250728",
"react-is": "19.2.0-canary-eaee5308-20250728",
"scheduler": "0.27.0-canary-eaee5308-20250728"
"react": "19.2.0-canary-9be531cd-20250729",
"react-dom": "19.2.0-canary-9be531cd-20250729",
"react-is": "19.2.0-canary-9be531cd-20250729",
"scheduler": "0.27.0-canary-9be531cd-20250729"
},
"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 @@ -6053,6 +6053,19 @@
throw SuspenseException;
}
}
function resolveLazy(lazyType) {
try {
return callLazyInitInDEV(lazyType);
} catch (x) {
if (null !== x && "object" === typeof x && "function" === typeof x.then)
throw (
((suspendedThenable = x),
(needsToResetSuspendedThenableDEV = !0),
SuspenseException)
);
throw x;
}
}
function getSuspendedThenable() {
if (null === suspendedThenable)
throw Error(
Expand Down Expand Up @@ -6259,7 +6272,7 @@
("object" === typeof elementType &&
null !== elementType &&
elementType.$$typeof === REACT_LAZY_TYPE &&
callLazyInitInDEV(elementType) === current.type))
resolveLazy(elementType) === current.type))
)
return (
(current = useFiber(current, element.props)),
Expand Down Expand Up @@ -6360,7 +6373,7 @@
);
case REACT_LAZY_TYPE:
var _prevDebugInfo = pushDebugInfo(newChild._debugInfo);
newChild = callLazyInitInDEV(newChild);
newChild = resolveLazy(newChild);
returnFiber = createChild(returnFiber, newChild, lanes);
currentDebugInfo = _prevDebugInfo;
return returnFiber;
Expand Down Expand Up @@ -6440,7 +6453,7 @@
case REACT_LAZY_TYPE:
return (
(key = pushDebugInfo(newChild._debugInfo)),
(newChild = callLazyInitInDEV(newChild)),
(newChild = resolveLazy(newChild)),
(returnFiber = updateSlot(
returnFiber,
oldFiber,
Expand Down Expand Up @@ -6538,7 +6551,7 @@
);
case REACT_LAZY_TYPE:
var _prevDebugInfo7 = pushDebugInfo(newChild._debugInfo);
newChild = callLazyInitInDEV(newChild);
newChild = resolveLazy(newChild);
returnFiber = updateFromMap(
existingChildren,
returnFiber,
Expand Down Expand Up @@ -6620,7 +6633,7 @@
});
break;
case REACT_LAZY_TYPE:
(child = callLazyInitInDEV(child)),
(child = resolveLazy(child)),
warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys);
}
return knownKeys;
Expand Down Expand Up @@ -6930,7 +6943,7 @@
("object" === typeof key &&
null !== key &&
key.$$typeof === REACT_LAZY_TYPE &&
callLazyInitInDEV(key) === currentFirstChild.type)
resolveLazy(key) === currentFirstChild.type)
) {
deleteRemainingChildren(
returnFiber,
Expand Down Expand Up @@ -7022,7 +7035,7 @@
case REACT_LAZY_TYPE:
return (
(prevDebugInfo = pushDebugInfo(newChild._debugInfo)),
(newChild = callLazyInitInDEV(newChild)),
(newChild = resolveLazy(newChild)),
(returnFiber = reconcileChildFibersImpl(
returnFiber,
currentFirstChild,
Expand Down Expand Up @@ -11745,8 +11758,8 @@
switch (workInProgress.tag) {
case 16:
a: {
var props = workInProgress.pendingProps;
var Component = callLazyInitInDEV(workInProgress.elementType);
var props = workInProgress.pendingProps,
Component = resolveLazy(workInProgress.elementType);
workInProgress.type = Component;
if ("function" === typeof Component)
if (shouldConstruct(Component)) {
Expand Down Expand Up @@ -28793,25 +28806,7 @@
pendingUNSAFE_ComponentWillUpdateWarnings = [];
pendingLegacyContextWarning = new Map();
};
var SuspenseException = Error(
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
),
SuspenseyCommitException = Error(
"Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."
),
SuspenseActionException = Error(
"Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."
),
noopSuspenseyCommitThenable = {
then: function () {
console.error(
'Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.'
);
}
},
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
var callComponent = {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
Expand Down Expand Up @@ -28928,6 +28923,24 @@
},
callLazyInitInDEV =
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
SuspenseException = Error(
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
),
SuspenseyCommitException = Error(
"Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."
),
SuspenseActionException = Error(
"Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."
),
noopSuspenseyCommitThenable = {
then: function () {
console.error(
'Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.'
);
}
},
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
Expand Down Expand Up @@ -31115,11 +31128,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-experimental-eaee5308-20250728" !== isomorphicReactPackageVersion)
if ("19.2.0-experimental-9be531cd-20250729" !== 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-eaee5308-20250728\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-experimental-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -31156,10 +31169,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-experimental-eaee5308-20250728",
version: "19.2.0-experimental-9be531cd-20250729",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-eaee5308-20250728"
reconcilerVersion: "19.2.0-experimental-9be531cd-20250729"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -31305,7 +31318,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-experimental-eaee5308-20250728";
exports.version = "19.2.0-experimental-9be531cd-20250729";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Expand Down
Loading
Loading