Skip to content

Commit ea9bc44

Browse files
committed
Revert "Cleanup enableSyncDefaultUpdate flag (#26236)" (#26528)
This reverts commit b2ae9dd. While the feature flag is fully rolled out, these tests are also testing behavior set with an unstable flag on root, which for now we want to preserve. Not sure if there's a better way then adding a dynamic feature flag to the www build? DiffTrain build for commit da94e8b.
1 parent 08375e6 commit ea9bc44

File tree

13 files changed

+25
-19
lines changed

13 files changed

+25
-19
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23482,6 +23482,8 @@ function createHostRootFiber(
2348223482
}
2348323483

2348423484
if (
23485+
// We only use this flag for our repo tests to check both behaviors.
23486+
// TODO: Flip this flag and rename it something like "forceConcurrentByDefaultForTesting"
2348523487
// Only for internal experiments.
2348623488
concurrentUpdatesByDefaultOverride
2348723489
) {
@@ -23882,7 +23884,7 @@ function createFiberRoot(
2388223884
return root;
2388323885
}
2388423886

23885-
var ReactVersion = "18.3.0-next-0700dd50b-20230404";
23887+
var ReactVersion = "18.3.0-next-da94e8b24-20230404";
2388623888

2388723889
// Might add PROFILE later.
2388823890

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8683,7 +8683,7 @@ var devToolsConfig$jscomp$inline_1028 = {
86838683
throw Error("TestRenderer does not support findFiberByHostInstance()");
86848684
},
86858685
bundleType: 0,
8686-
version: "18.3.0-next-0700dd50b-20230404",
8686+
version: "18.3.0-next-da94e8b24-20230404",
86878687
rendererPackageName: "react-test-renderer"
86888688
};
86898689
var internals$jscomp$inline_1220 = {
@@ -8714,7 +8714,7 @@ var internals$jscomp$inline_1220 = {
87148714
scheduleRoot: null,
87158715
setRefreshHandler: null,
87168716
getCurrentFiber: null,
8717-
reconcilerVersion: "18.3.0-next-0700dd50b-20230404"
8717+
reconcilerVersion: "18.3.0-next-da94e8b24-20230404"
87188718
};
87198719
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
87208720
var hook$jscomp$inline_1221 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9108,7 +9108,7 @@ var devToolsConfig$jscomp$inline_1070 = {
91089108
throw Error("TestRenderer does not support findFiberByHostInstance()");
91099109
},
91109110
bundleType: 0,
9111-
version: "18.3.0-next-0700dd50b-20230404",
9111+
version: "18.3.0-next-da94e8b24-20230404",
91129112
rendererPackageName: "react-test-renderer"
91139113
};
91149114
var internals$jscomp$inline_1261 = {
@@ -9139,7 +9139,7 @@ var internals$jscomp$inline_1261 = {
91399139
scheduleRoot: null,
91409140
setRefreshHandler: null,
91419141
getCurrentFiber: null,
9142-
reconcilerVersion: "18.3.0-next-0700dd50b-20230404"
9142+
reconcilerVersion: "18.3.0-next-da94e8b24-20230404"
91439143
};
91449144
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
91459145
var hook$jscomp$inline_1262 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if (
2727
}
2828
"use strict";
2929

30-
var ReactVersion = "18.3.0-next-0700dd50b-20230404";
30+
var ReactVersion = "18.3.0-next-da94e8b24-20230404";
3131

3232
// ATTENTION
3333
// When adding new symbols to this file,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,4 +639,4 @@ exports.useSyncExternalStore = function (
639639
);
640640
};
641641
exports.useTransition = useTransition;
642-
exports.version = "18.3.0-next-0700dd50b-20230404";
642+
exports.version = "18.3.0-next-da94e8b24-20230404";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ exports.useSyncExternalStore = function (
642642
);
643643
};
644644
exports.useTransition = useTransition;
645-
exports.version = "18.3.0-next-0700dd50b-20230404";
645+
exports.version = "18.3.0-next-da94e8b24-20230404";
646646

647647
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
648648
if (
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0700dd50bda98f5ee86f2e3adfe5e9906ed1e8e3
1+
da94e8b24a3f31a3e805f9bf6bba73055aad9d41

compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26716,6 +26716,8 @@ function createHostRootFiber(
2671626716
}
2671726717

2671826718
if (
26719+
// We only use this flag for our repo tests to check both behaviors.
26720+
// TODO: Flip this flag and rename it something like "forceConcurrentByDefaultForTesting"
2671926721
// Only for internal experiments.
2672026722
concurrentUpdatesByDefaultOverride
2672126723
) {
@@ -27175,7 +27177,7 @@ function createFiberRoot(
2717527177
return root;
2717627178
}
2717727179

27178-
var ReactVersion = "18.3.0-next-0700dd50b-20230404";
27180+
var ReactVersion = "18.3.0-next-da94e8b24-20230404";
2717927181

2718027182
function createPortal$1(
2718127183
children,

compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9554,7 +9554,7 @@ var roots = new Map(),
95549554
devToolsConfig$jscomp$inline_1052 = {
95559555
findFiberByHostInstance: getInstanceFromNode,
95569556
bundleType: 0,
9557-
version: "18.3.0-next-0700dd50b-20230404",
9557+
version: "18.3.0-next-da94e8b24-20230404",
95589558
rendererPackageName: "react-native-renderer",
95599559
rendererConfig: {
95609560
getInspectorDataForViewTag: function () {
@@ -9596,7 +9596,7 @@ var internals$jscomp$inline_1297 = {
95969596
scheduleRoot: null,
95979597
setRefreshHandler: null,
95989598
getCurrentFiber: null,
9599-
reconcilerVersion: "18.3.0-next-0700dd50b-20230404"
9599+
reconcilerVersion: "18.3.0-next-da94e8b24-20230404"
96009600
};
96019601
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
96029602
var hook$jscomp$inline_1298 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10262,7 +10262,7 @@ var roots = new Map(),
1026210262
devToolsConfig$jscomp$inline_1130 = {
1026310263
findFiberByHostInstance: getInstanceFromNode,
1026410264
bundleType: 0,
10265-
version: "18.3.0-next-0700dd50b-20230404",
10265+
version: "18.3.0-next-da94e8b24-20230404",
1026610266
rendererPackageName: "react-native-renderer",
1026710267
rendererConfig: {
1026810268
getInspectorDataForViewTag: function () {
@@ -10317,7 +10317,7 @@ var roots = new Map(),
1031710317
scheduleRoot: null,
1031810318
setRefreshHandler: null,
1031910319
getCurrentFiber: null,
10320-
reconcilerVersion: "18.3.0-next-0700dd50b-20230404"
10320+
reconcilerVersion: "18.3.0-next-da94e8b24-20230404"
1032110321
});
1032210322
exports.createPortal = function (children, containerTag) {
1032310323
return createPortal$1(

0 commit comments

Comments
 (0)