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
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
"eslint-plugin-jsdoc": "48.0.4",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "0.0.0-experimental-1dc3bdea-20250812",
"eslint-plugin-react-hooks": "0.0.0-experimental-f1222f76-20250812",
"eslint-v8": "npm:eslint@^8.57.0",
"event-stream": "4.0.1",
"execa": "2.0.3",
Expand Down Expand Up @@ -233,16 +233,16 @@
"pretty-ms": "7.0.0",
"random-seed": "0.3.0",
"react": "19.0.0",
"react-builtin": "npm:[email protected]1dc3bdea-20250812",
"react-builtin": "npm:[email protected]f1222f76-20250812",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:[email protected]1dc3bdea-20250812",
"react-dom-experimental-builtin": "npm:[email protected]1dc3bdea-20250812",
"react-experimental-builtin": "npm:[email protected]1dc3bdea-20250812",
"react-is-builtin": "npm:[email protected]1dc3bdea-20250812",
"react-server-dom-turbopack": "19.2.0-canary-1dc3bdea-20250812",
"react-server-dom-turbopack-experimental": "npm:[email protected]1dc3bdea-20250812",
"react-server-dom-webpack": "19.2.0-canary-1dc3bdea-20250812",
"react-server-dom-webpack-experimental": "npm:[email protected]1dc3bdea-20250812",
"react-dom-builtin": "npm:[email protected]f1222f76-20250812",
"react-dom-experimental-builtin": "npm:[email protected]f1222f76-20250812",
"react-experimental-builtin": "npm:[email protected]f1222f76-20250812",
"react-is-builtin": "npm:[email protected]f1222f76-20250812",
"react-server-dom-turbopack": "19.2.0-canary-f1222f76-20250812",
"react-server-dom-turbopack-experimental": "npm:[email protected]f1222f76-20250812",
"react-server-dom-webpack": "19.2.0-canary-f1222f76-20250812",
"react-server-dom-webpack-experimental": "npm:[email protected]f1222f76-20250812",
"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:[email protected]1dc3bdea-20250812",
"scheduler-experimental-builtin": "npm:[email protected]1dc3bdea-20250812",
"scheduler-builtin": "npm:[email protected]f1222f76-20250812",
"scheduler-experimental-builtin": "npm:[email protected]f1222f76-20250812",
"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.7",
"@types/retry": "0.12.0",
"jest-snapshot": "30.0.0-alpha.6",
"react": "19.2.0-canary-1dc3bdea-20250812",
"react-dom": "19.2.0-canary-1dc3bdea-20250812",
"react-is": "19.2.0-canary-1dc3bdea-20250812",
"scheduler": "0.27.0-canary-1dc3bdea-20250812"
"react": "19.2.0-canary-f1222f76-20250812",
"react-dom": "19.2.0-canary-f1222f76-20250812",
"react-is": "19.2.0-canary-f1222f76-20250812",
"scheduler": "0.27.0-canary-f1222f76-20250812"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15595,7 +15595,6 @@
function attachSuspenseRetryListeners(finishedWork, wakeables) {
var retryCache = getRetryCache(finishedWork);
wakeables.forEach(function (wakeable) {
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
if (!retryCache.has(wakeable)) {
retryCache.add(wakeable);
if (isDevToolsPresent)
Expand All @@ -15605,6 +15604,7 @@
throw Error(
"Expected finished root and lanes to be set. This is a bug in React."
);
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
wakeable.then(retry, retry);
}
});
Expand Down Expand Up @@ -31422,11 +31422,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
if ("19.2.0-experimental-f1222f76-20250812" !== 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-1dc3bdea-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-experimental-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -31463,10 +31463,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-experimental-1dc3bdea-20250812",
version: "19.2.0-experimental-f1222f76-20250812",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -31613,7 +31613,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
"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 @@ -10530,9 +10530,11 @@ function getRetryCache(finishedWork) {
function attachSuspenseRetryListeners(finishedWork, wakeables) {
var retryCache = getRetryCache(finishedWork);
wakeables.forEach(function (wakeable) {
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
retryCache.has(wakeable) ||
(retryCache.add(wakeable), wakeable.then(retry, retry));
if (!retryCache.has(wakeable)) {
retryCache.add(wakeable);
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
wakeable.then(retry, retry);
}
});
}
function recursivelyTraverseMutationEffects(root$jscomp$0, parentFiber, lanes) {
Expand Down Expand Up @@ -19239,14 +19241,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2165 = React.version;
if (
"19.2.0-experimental-1dc3bdea-20250812" !==
"19.2.0-experimental-f1222f76-20250812" !==
isomorphicReactPackageVersion$jscomp$inline_2165
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2165,
"19.2.0-experimental-1dc3bdea-20250812"
"19.2.0-experimental-f1222f76-20250812"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -19268,10 +19270,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2860 = {
bundleType: 0,
version: "19.2.0-experimental-1dc3bdea-20250812",
version: "19.2.0-experimental-f1222f76-20250812",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2861 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -19378,4 +19380,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
Original file line number Diff line number Diff line change
Expand Up @@ -15603,7 +15603,6 @@
function attachSuspenseRetryListeners(finishedWork, wakeables) {
var retryCache = getRetryCache(finishedWork);
wakeables.forEach(function (wakeable) {
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
if (!retryCache.has(wakeable)) {
retryCache.add(wakeable);
if (isDevToolsPresent)
Expand All @@ -15613,6 +15612,7 @@
throw Error(
"Expected finished root and lanes to be set. This is a bug in React."
);
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
wakeable.then(retry, retry);
}
});
Expand Down Expand Up @@ -31474,11 +31474,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
if ("19.2.0-experimental-f1222f76-20250812" !== 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-1dc3bdea-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-experimental-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -31515,10 +31515,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-experimental-1dc3bdea-20250812",
version: "19.2.0-experimental-f1222f76-20250812",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -31995,7 +31995,7 @@
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
"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 @@ -11311,13 +11311,13 @@ function getRetryCache(finishedWork) {
function attachSuspenseRetryListeners(finishedWork, wakeables) {
var retryCache = getRetryCache(finishedWork);
wakeables.forEach(function (wakeable) {
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
if (!retryCache.has(wakeable)) {
retryCache.add(wakeable);
if (isDevToolsPresent)
if (null !== inProgressLanes && null !== inProgressRoot)
restorePendingUpdaters(inProgressRoot, inProgressLanes);
else throw Error(formatProdErrorMessage(413));
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
wakeable.then(retry, retry);
}
});
Expand Down Expand Up @@ -20975,14 +20975,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2398 = React.version;
if (
"19.2.0-experimental-1dc3bdea-20250812" !==
"19.2.0-experimental-f1222f76-20250812" !==
isomorphicReactPackageVersion$jscomp$inline_2398
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2398,
"19.2.0-experimental-1dc3bdea-20250812"
"19.2.0-experimental-f1222f76-20250812"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -21004,10 +21004,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_3095 = {
bundleType: 0,
version: "19.2.0-experimental-1dc3bdea-20250812",
version: "19.2.0-experimental-f1222f76-20250812",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_3096 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -21275,7 +21275,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
"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 @@ -7217,7 +7217,7 @@
thrownValue === SuspenseException
? getSuspendedThenable()
: thrownValue),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
childIndex =
Expand Down Expand Up @@ -7273,7 +7273,7 @@
thrownValue$3 === SuspenseException
? getSuspendedThenable()
: thrownValue$3),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
segment = node;
Expand Down Expand Up @@ -10523,5 +10523,5 @@
'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-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -5664,7 +5664,7 @@ function renderNode(request, task, node, childIndex) {
thrownValue === SuspenseException
? getSuspendedThenable()
: thrownValue),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
childIndex =
Expand Down Expand Up @@ -5714,7 +5714,7 @@ function renderNode(request, task, node, childIndex) {
thrownValue$69 === SuspenseException
? getSuspendedThenable()
: thrownValue$69),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
segment = node;
Expand Down Expand Up @@ -7142,4 +7142,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-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
Original file line number Diff line number Diff line change
Expand Up @@ -7217,7 +7217,7 @@
thrownValue === SuspenseException
? getSuspendedThenable()
: thrownValue),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
childIndex =
Expand Down Expand Up @@ -7273,7 +7273,7 @@
thrownValue$3 === SuspenseException
? getSuspendedThenable()
: thrownValue$3),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
segment = node;
Expand Down Expand Up @@ -10523,5 +10523,5 @@
'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 "renderToPipeableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -5735,7 +5735,7 @@ function renderNode(request, task, node, childIndex) {
thrownValue === SuspenseException
? getSuspendedThenable()
: thrownValue),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
childIndex =
Expand Down Expand Up @@ -5785,7 +5785,7 @@ function renderNode(request, task, node, childIndex) {
thrownValue$69 === SuspenseException
? getSuspendedThenable()
: thrownValue$69),
"object" === typeof node && null !== node)
12 !== request.status && "object" === typeof node && null !== node)
) {
if ("function" === typeof node.then) {
segment = node;
Expand Down Expand Up @@ -7245,4 +7245,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 "renderToPipeableStream" which supports Suspense on the server'
);
};
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
exports.version = "19.2.0-experimental-f1222f76-20250812";
Loading
Loading