From b0c5930a65e2dfb09a0e0fbda055ee48e2c7c3a2 Mon Sep 17 00:00:00 2001 From: sebmarkbage Date: Sun, 19 Oct 2025 12:03:01 -0700 Subject: [PATCH] [Flight] Ignore bound-anonymous-fn resources as they're not considered I/O (#34911) When you create a snapshot from an AsyncLocalStorage in Node.js, that creates a new bound AsyncResource which everything runs inside of. https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/internal/async_local_storage/async_hooks.js#L61-L67 This resource is itself tracked by our async debug tracking as I/O. We can't really distinguish these in general from other AsyncResources which are I/O. However, by default they're given the name `"bound-anonymous-fn"` if you pass it an anonymous function or in the case of a snapshot, that's built-in: https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/async_hooks.js#L262-L263 We can at least assume that these are non-I/O. If you want to ensure that a bound resource is not considered I/O, you can ensure your function isn't assigned a name or give it this explicit name. The other issue here is that, the sequencing here is that we track the callsite of the `.snapshot()` or `.bind()` call as the trigger. So if that was outside of render for example, then it would be considered non-I/O. However, this might miss stuff if you resolve promises inside the `.run()` of the snapshot if the `.run()` call itself was spawned by I/O which should be tracked. Time will tell if those patterns appear. However, in cases like nested renders (e.g. Next.js's "use cache") then restoring it as if it was outside the parent render is what you do want. DiffTrain build for [58bdc0bb967098f14562cd76af0668f2056459a0](https://github.com/facebook/react/commit/58bdc0bb967098f14562cd76af0668f2056459a0) --- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 2 +- compiled/facebook-www/React-dev.modern.js | 2 +- compiled/facebook-www/React-prod.classic.js | 2 +- compiled/facebook-www/React-prod.modern.js | 2 +- compiled/facebook-www/React-profiling.classic.js | 2 +- compiled/facebook-www/React-profiling.modern.js | 2 +- compiled/facebook-www/ReactART-dev.classic.js | 6 +++--- compiled/facebook-www/ReactART-dev.modern.js | 6 +++--- compiled/facebook-www/ReactART-prod.classic.js | 6 +++--- compiled/facebook-www/ReactART-prod.modern.js | 6 +++--- compiled/facebook-www/ReactDOM-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-profiling.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-profiling.modern.js | 10 +++++----- compiled/facebook-www/ReactDOMServer-dev.classic.js | 2 +- compiled/facebook-www/ReactDOMServer-dev.modern.js | 2 +- compiled/facebook-www/ReactDOMServer-prod.classic.js | 2 +- compiled/facebook-www/ReactDOMServer-prod.modern.js | 2 +- compiled/facebook-www/ReactDOMTesting-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-prod.modern.js | 10 +++++----- compiled/facebook-www/ReactReconciler-dev.classic.js | 2 +- compiled/facebook-www/ReactReconciler-dev.modern.js | 2 +- compiled/facebook-www/ReactReconciler-prod.classic.js | 2 +- compiled/facebook-www/ReactReconciler-prod.modern.js | 2 +- compiled/facebook-www/ReactTestRenderer-dev.classic.js | 6 +++--- compiled/facebook-www/ReactTestRenderer-dev.modern.js | 6 +++--- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 34 files changed, 86 insertions(+), 86 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 476bf1f6b6..97d29323f6 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4 +58bdc0bb967098f14562cd76af0668f2056459a0 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 476bf1f6b6..97d29323f6 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4 +58bdc0bb967098f14562cd76af0668f2056459a0 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 45aae50283..3325153e20 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1499,7 +1499,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-dev.modern.js b/compiled/facebook-www/React-dev.modern.js index 8eb3648408..0ebcb995e7 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1499,7 +1499,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-prod.classic.js b/compiled/facebook-www/React-prod.classic.js index 92b7230b42..29e6d5ef99 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -606,4 +606,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 1ed99c7964..2606c6b2d7 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -606,4 +606,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 1d1ecde173..3f627120e6 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -610,7 +610,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-profiling.modern.js b/compiled/facebook-www/React-profiling.modern.js index 6e795ef17d..ce5dba7d59 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -610,7 +610,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.classic.js b/compiled/facebook-www/ReactART-dev.classic.js index 63e3dafed8..035605cab9 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -20371,10 +20371,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -20409,7 +20409,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.modern.js b/compiled/facebook-www/ReactART-dev.modern.js index 5073cfac18..96fa8f2197 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -20142,10 +20142,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -20180,7 +20180,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-prod.classic.js b/compiled/facebook-www/ReactART-prod.classic.js index 21f4f7f31f..a9f5cd4568 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11442,10 +11442,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1647 = { bundleType: 0, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1648 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11471,4 +11471,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 57df131936..fdc4e3f668 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11154,10 +11154,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1620 = { bundleType: 0, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1621 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11183,4 +11183,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 89dafe0613..0f0d8b30c4 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -32933,11 +32933,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-classic-ec7d9a72-20251019" !== isomorphicReactPackageVersion) + if ("19.3.0-www-classic-58bdc0bb-20251019" !== 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.3.0-www-classic-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-classic-58bdc0bb-20251019\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32980,10 +32980,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33596,7 +33596,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-dev.modern.js b/compiled/facebook-www/ReactDOM-dev.modern.js index 2d919f73ae..0739bcbb0f 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -32718,11 +32718,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-modern-ec7d9a72-20251019" !== isomorphicReactPackageVersion) + if ("19.3.0-www-modern-58bdc0bb-20251019" !== 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.3.0-www-modern-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-modern-58bdc0bb-20251019\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32765,10 +32765,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33381,7 +33381,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-prod.classic.js b/compiled/facebook-www/ReactDOM-prod.classic.js index 739bcb36da..053dd254e1 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -19975,14 +19975,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2129 = React.version; if ( - "19.3.0-www-classic-ec7d9a72-20251019" !== + "19.3.0-www-classic-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2129 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2129, - "19.3.0-www-classic-ec7d9a72-20251019" + "19.3.0-www-classic-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20000,10 +20000,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2761 = { bundleType: 0, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2762 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20432,4 +20432,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 4b34b7ae29..9f8b7fbc20 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -19704,14 +19704,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2119 = React.version; if ( - "19.3.0-www-modern-ec7d9a72-20251019" !== + "19.3.0-www-modern-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2119 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2119, - "19.3.0-www-modern-ec7d9a72-20251019" + "19.3.0-www-modern-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19729,10 +19729,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2743 = { bundleType: 0, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2744 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20161,4 +20161,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index ace1094e0d..778dc9cf2a 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -22230,14 +22230,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2439 = React.version; if ( - "19.3.0-www-classic-ec7d9a72-20251019" !== + "19.3.0-www-classic-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2439 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2439, - "19.3.0-www-classic-ec7d9a72-20251019" + "19.3.0-www-classic-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -22255,10 +22255,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2441 = { bundleType: 0, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; enableSchedulingProfiler && ((internals$jscomp$inline_2441.getLaneLabelMap = getLaneLabelMap), @@ -22691,7 +22691,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-profiling.modern.js b/compiled/facebook-www/ReactDOM-profiling.modern.js index 54e67ed365..14ed951fb0 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -22024,14 +22024,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2429 = React.version; if ( - "19.3.0-www-modern-ec7d9a72-20251019" !== + "19.3.0-www-modern-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2429 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2429, - "19.3.0-www-modern-ec7d9a72-20251019" + "19.3.0-www-modern-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -22049,10 +22049,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2431 = { bundleType: 0, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; enableSchedulingProfiler && ((internals$jscomp$inline_2431.getLaneLabelMap = getLaneLabelMap), @@ -22485,7 +22485,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOMServer-dev.classic.js b/compiled/facebook-www/ReactDOMServer-dev.classic.js index 3e9c15d608..da5c6287f5 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -10305,5 +10305,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.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index db7f9b9db2..6e98be2851 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -10234,5 +10234,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.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index 643700bde5..3a9f5b3761 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6996,4 +6996,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.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index d3b31b4982..779d21e138 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6929,4 +6929,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.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 5f44a6e0bd..06e4a4608a 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -33254,11 +33254,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-classic-ec7d9a72-20251019" !== isomorphicReactPackageVersion) + if ("19.3.0-www-classic-58bdc0bb-20251019" !== 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.3.0-www-classic-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-classic-58bdc0bb-20251019\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -33301,10 +33301,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -34083,5 +34083,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 0d98b7a275..f9d9a004a4 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -33039,11 +33039,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-modern-ec7d9a72-20251019" !== isomorphicReactPackageVersion) + if ("19.3.0-www-modern-58bdc0bb-20251019" !== 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.3.0-www-modern-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-modern-58bdc0bb-20251019\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -33086,10 +33086,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33868,5 +33868,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index cf49bab048..e207b13df9 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -20291,14 +20291,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2158 = React.version; if ( - "19.3.0-www-classic-ec7d9a72-20251019" !== + "19.3.0-www-classic-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2158 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2158, - "19.3.0-www-classic-ec7d9a72-20251019" + "19.3.0-www-classic-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20316,10 +20316,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2795 = { bundleType: 0, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2796 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20899,4 +20899,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; +exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 1ba408ce8a..df1cefd02c 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -20020,14 +20020,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2148 = React.version; if ( - "19.3.0-www-modern-ec7d9a72-20251019" !== + "19.3.0-www-modern-58bdc0bb-20251019" !== isomorphicReactPackageVersion$jscomp$inline_2148 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2148, - "19.3.0-www-modern-ec7d9a72-20251019" + "19.3.0-www-modern-58bdc0bb-20251019" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20045,10 +20045,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2777 = { bundleType: 0, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2778 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20628,4 +20628,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; +exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 6660ae48c8..5f0c470e12 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -23031,7 +23031,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 6571bb4ff1..ee4a001843 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -22811,7 +22811,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 8e7f6aa49b..236bfdd6dd 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -14253,7 +14253,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index d52854cda1..5b0f4314c9 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13970,7 +13970,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 3694b8df3b..4c40523b12 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15710,10 +15710,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-ec7d9a72-20251019", + version: "19.3.0-www-classic-58bdc0bb-20251019", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-classic-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15849,5 +15849,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.3.0-www-classic-ec7d9a72-20251019"; + exports.version = "19.3.0-www-classic-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 02c1675e97..3b20cf89e6 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15710,10 +15710,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-ec7d9a72-20251019", + version: "19.3.0-www-modern-58bdc0bb-20251019", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019" + reconcilerVersion: "19.3.0-www-modern-58bdc0bb-20251019" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15849,5 +15849,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.3.0-www-modern-ec7d9a72-20251019"; + exports.version = "19.3.0-www-modern-58bdc0bb-20251019"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index cc9ac0cbd6..80ea4b7ce6 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.3.0-www-classic-ec7d9a72-20251019 \ No newline at end of file +19.3.0-www-classic-58bdc0bb-20251019 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 8ea8e93fda..02d1800c54 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.3.0-www-modern-ec7d9a72-20251019 \ No newline at end of file +19.3.0-www-modern-58bdc0bb-20251019 \ No newline at end of file