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 @@ -213,16 +213,16 @@
"pretty-ms": "7.0.0",
"random-seed": "0.3.0",
"react": "19.0.0",
"react-builtin": "npm:[email protected]de1eaa26-20250124",
"react-builtin": "npm:[email protected]9eabb373-20250124",
"react-dom": "19.0.0",
"react-dom-builtin": "npm:[email protected]de1eaa26-20250124",
"react-dom-experimental-builtin": "npm:[email protected]de1eaa26-20250124",
"react-experimental-builtin": "npm:[email protected]de1eaa26-20250124",
"react-is-builtin": "npm:[email protected]de1eaa26-20250124",
"react-server-dom-turbopack": "19.1.0-canary-de1eaa26-20250124",
"react-server-dom-turbopack-experimental": "npm:[email protected]de1eaa26-20250124",
"react-server-dom-webpack": "19.1.0-canary-de1eaa26-20250124",
"react-server-dom-webpack-experimental": "npm:[email protected]de1eaa26-20250124",
"react-dom-builtin": "npm:[email protected]9eabb373-20250124",
"react-dom-experimental-builtin": "npm:[email protected]9eabb373-20250124",
"react-experimental-builtin": "npm:[email protected]9eabb373-20250124",
"react-is-builtin": "npm:[email protected]9eabb373-20250124",
"react-server-dom-turbopack": "19.1.0-canary-9eabb373-20250124",
"react-server-dom-turbopack-experimental": "npm:[email protected]9eabb373-20250124",
"react-server-dom-webpack": "19.1.0-canary-9eabb373-20250124",
"react-server-dom-webpack-experimental": "npm:[email protected]9eabb373-20250124",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand All @@ -232,8 +232,8 @@
"resolve-from": "5.0.0",
"sass": "1.54.0",
"satori": "0.12.1",
"scheduler-builtin": "npm:[email protected]de1eaa26-20250124",
"scheduler-experimental-builtin": "npm:[email protected]de1eaa26-20250124",
"scheduler-builtin": "npm:[email protected]9eabb373-20250124",
"scheduler-experimental-builtin": "npm:[email protected]9eabb373-20250124",
"seedrandom": "3.0.5",
"semver": "7.3.7",
"shell-quote": "1.7.3",
Expand Down Expand Up @@ -274,10 +274,10 @@
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"jest-snapshot": "30.0.0-alpha.6",
"react": "19.1.0-canary-de1eaa26-20250124",
"react-dom": "19.1.0-canary-de1eaa26-20250124",
"react-is": "19.1.0-canary-de1eaa26-20250124",
"scheduler": "0.26.0-canary-de1eaa26-20250124"
"react": "19.1.0-canary-9eabb373-20250124",
"react-dom": "19.1.0-canary-9eabb373-20250124",
"react-is": "19.1.0-canary-9eabb373-20250124",
"scheduler": "0.26.0-canary-9eabb373-20250124"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6069,7 +6069,7 @@
),
node.isTransition ||
console.error(
"An async function was passed to useActionState, but it was dispatched outside of an action context. This is likely not what you intended. Either pass the dispatch function to an `action` prop, or dispatch manually inside `startTransition`"
"An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop."
))
: onActionSuccess(actionQueue, node, returnValue);
}
Expand Down Expand Up @@ -26822,11 +26822,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -26863,10 +26863,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.1.0-experimental-de1eaa26-20250124",
version: "19.1.0-experimental-9eabb373-20250124",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0-experimental-de1eaa26-20250124"
reconcilerVersion: "19.1.0-experimental-9eabb373-20250124"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -27010,7 +27010,7 @@
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
"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 @@ -16401,14 +16401,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1799 = React.version;
if (
"19.1.0-experimental-de1eaa26-20250124" !==
"19.1.0-experimental-9eabb373-20250124" !==
isomorphicReactPackageVersion$jscomp$inline_1799
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1799,
"19.1.0-experimental-de1eaa26-20250124"
"19.1.0-experimental-9eabb373-20250124"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -16430,10 +16430,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2330 = {
bundleType: 0,
version: "19.1.0-experimental-de1eaa26-20250124",
version: "19.1.0-experimental-9eabb373-20250124",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0-experimental-de1eaa26-20250124"
reconcilerVersion: "19.1.0-experimental-9eabb373-20250124"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2331 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -16539,4 +16539,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -6077,7 +6077,7 @@
),
node.isTransition ||
console.error(
"An async function was passed to useActionState, but it was dispatched outside of an action context. This is likely not what you intended. Either pass the dispatch function to an `action` prop, or dispatch manually inside `startTransition`"
"An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop."
))
: onActionSuccess(actionQueue, node, returnValue);
}
Expand Down Expand Up @@ -26875,11 +26875,11 @@
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
Expand Down Expand Up @@ -26916,10 +26916,10 @@
!(function () {
var internals = {
bundleType: 1,
version: "19.1.0-experimental-de1eaa26-20250124",
version: "19.1.0-experimental-9eabb373-20250124",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0-experimental-de1eaa26-20250124"
reconcilerVersion: "19.1.0-experimental-9eabb373-20250124"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
Expand Down Expand Up @@ -27393,7 +27393,7 @@
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
"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 @@ -17833,14 +17833,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_1947 = React.version;
if (
"19.1.0-experimental-de1eaa26-20250124" !==
"19.1.0-experimental-9eabb373-20250124" !==
isomorphicReactPackageVersion$jscomp$inline_1947
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_1947,
"19.1.0-experimental-de1eaa26-20250124"
"19.1.0-experimental-9eabb373-20250124"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
Expand All @@ -17862,10 +17862,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2471 = {
bundleType: 0,
version: "19.1.0-experimental-de1eaa26-20250124",
version: "19.1.0-experimental-9eabb373-20250124",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.1.0-experimental-de1eaa26-20250124"
reconcilerVersion: "19.1.0-experimental-9eabb373-20250124"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2472 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down Expand Up @@ -18132,7 +18132,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
"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 @@ -9546,5 +9546,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.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -6297,4 +6297,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.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -9546,5 +9546,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.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -6391,4 +6391,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.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -8451,11 +8451,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
}
var React = require("next/dist/compiled/react-experimental"),
Expand Down Expand Up @@ -10233,5 +10233,5 @@
startWork(request);
});
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -6828,12 +6828,12 @@ function getPostponedState(request) {
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== isomorphicReactPackageVersion)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion,
"19.1.0-experimental-de1eaa26-20250124"
"19.1.0-experimental-9eabb373-20250124"
)
);
}
Expand Down Expand Up @@ -7088,4 +7088,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
startWork(request);
});
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -6309,13 +6309,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
}
var isomorphicReactPackageVersion$jscomp$inline_800 = React.version;
if (
"19.1.0-experimental-de1eaa26-20250124" !==
"19.1.0-experimental-9eabb373-20250124" !==
isomorphicReactPackageVersion$jscomp$inline_800
)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion$jscomp$inline_800 +
"\n - react-dom: 19.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
exports.renderToReadableStream = function (children, options) {
return new Promise(function (resolve, reject) {
Expand Down Expand Up @@ -6406,4 +6406,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request);
});
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -8474,11 +8474,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
}
var React = require("next/dist/compiled/react-experimental"),
Expand Down Expand Up @@ -10263,5 +10263,5 @@ const setTimeoutOrImmediate =
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
})();
Original file line number Diff line number Diff line change
Expand Up @@ -6937,11 +6937,11 @@ function getPostponedState(request) {
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
}
ensureCorrectIsomorphicReactVersion();
Expand Down Expand Up @@ -7206,4 +7206,4 @@ const setTimeoutOrImmediate =
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
Original file line number Diff line number Diff line change
Expand Up @@ -8338,11 +8338,11 @@
}
function ensureCorrectIsomorphicReactVersion() {
var isomorphicReactPackageVersion = React.version;
if ("19.1.0-experimental-de1eaa26-20250124" !== isomorphicReactPackageVersion)
if ("19.1.0-experimental-9eabb373-20250124" !== 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.1.0-experimental-de1eaa26-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.1.0-experimental-9eabb373-20250124\nLearn more: https://react.dev/warnings/version-mismatch")
);
}
function createDrainHandler(destination, request) {
Expand Down Expand Up @@ -10113,5 +10113,5 @@
}
};
};
exports.version = "19.1.0-experimental-de1eaa26-20250124";
exports.version = "19.1.0-experimental-9eabb373-20250124";
})();
Loading
Loading