Skip to content

Commit 953baa5

Browse files
committed
[Flight] Allow a Server Reference to be registered twice (#28343)
It's possible for the same function instance to appear more than once in the same graph or even the same file. Currently this errors on trying to reconfigure the property but it really doesn't matter which one wins. First or last. Regardless there will be an entry point generated that can get them. DiffTrain build for commit 9444c51.
1 parent 93c031d commit 953baa5

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25697,7 +25697,7 @@ if (__DEV__) {
2569725697
return root;
2569825698
}
2569925699

25700-
var ReactVersion = "18.3.0-canary-59831c98c-20240218";
25700+
var ReactVersion = "18.3.0-canary-9444c51c7-20240219";
2570125701

2570225702
// Might add PROFILE later.
2570325703

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-prod.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9179,7 +9179,7 @@ var devToolsConfig$jscomp$inline_1018 = {
91799179
throw Error("TestRenderer does not support findFiberByHostInstance()");
91809180
},
91819181
bundleType: 0,
9182-
version: "18.3.0-canary-59831c98c-20240218",
9182+
version: "18.3.0-canary-9444c51c7-20240219",
91839183
rendererPackageName: "react-test-renderer"
91849184
};
91859185
var internals$jscomp$inline_1199 = {
@@ -9210,7 +9210,7 @@ var internals$jscomp$inline_1199 = {
92109210
scheduleRoot: null,
92119211
setRefreshHandler: null,
92129212
getCurrentFiber: null,
9213-
reconcilerVersion: "18.3.0-canary-59831c98c-20240218"
9213+
reconcilerVersion: "18.3.0-canary-9444c51c7-20240219"
92149214
};
92159215
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
92169216
var hook$jscomp$inline_1200 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react-test-renderer/cjs/ReactTestRenderer-profiling.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9607,7 +9607,7 @@ var devToolsConfig$jscomp$inline_1060 = {
96079607
throw Error("TestRenderer does not support findFiberByHostInstance()");
96089608
},
96099609
bundleType: 0,
9610-
version: "18.3.0-canary-59831c98c-20240218",
9610+
version: "18.3.0-canary-9444c51c7-20240219",
96119611
rendererPackageName: "react-test-renderer"
96129612
};
96139613
var internals$jscomp$inline_1240 = {
@@ -9638,7 +9638,7 @@ var internals$jscomp$inline_1240 = {
96389638
scheduleRoot: null,
96399639
setRefreshHandler: null,
96409640
getCurrentFiber: null,
9641-
reconcilerVersion: "18.3.0-canary-59831c98c-20240218"
9641+
reconcilerVersion: "18.3.0-canary-9444c51c7-20240219"
96429642
};
96439643
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
96449644
var hook$jscomp$inline_1241 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/cjs/React-dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (__DEV__) {
2424
) {
2525
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
2626
}
27-
var ReactVersion = "18.3.0-canary-59831c98c-20240218";
27+
var ReactVersion = "18.3.0-canary-9444c51c7-20240219";
2828

2929
// ATTENTION
3030
// When adding new symbols to this file,

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/cjs/React-prod.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -590,4 +590,4 @@ exports.useSyncExternalStore = function (
590590
exports.useTransition = function () {
591591
return ReactCurrentDispatcher.current.useTransition();
592592
};
593-
exports.version = "18.3.0-canary-59831c98c-20240218";
593+
exports.version = "18.3.0-canary-9444c51c7-20240219";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/cjs/React-profiling.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ exports.useSyncExternalStore = function (
586586
exports.useTransition = function () {
587587
return ReactCurrentDispatcher.current.useTransition();
588588
};
589-
exports.version = "18.3.0-canary-59831c98c-20240218";
589+
exports.version = "18.3.0-canary-9444c51c7-20240219";
590590
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
591591
"function" ===
592592
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
59831c98cffe0edf706238b067928e7cf54d1065
1+
9444c51c7e44936c24e1f44db905cfd45c51cff3

0 commit comments

Comments
 (0)