Turn on enableSiblingPrerendering in canary (#31541)
In preparation for the next RC, I set this feature flag to true everywhere. I did not delete the feature flag yet, in case there are yet more bugs to be discovered. I also didn't remove the dynamic feature flag from the Meta builds; I'll let the Meta folks handle that.
Andrew Clark committed
Nov 14, 2024 at 11:48 UTC
988e2176702fca9b25113d9a8a3e7e3f484e16f2
5 files changed
+5
-5
packages/shared/ReactFeatureFlags.js
+1
-1
@@ -145,7 +145,7 @@ export const enableOwnerStacks = __EXPERIMENTAL__;
145
146
export const enableShallowPropDiffing = false;
147
148
-export const enableSiblingPrerendering = false;
148
+export const enableSiblingPrerendering = true;
149
150
/**
151
* Enables an expiration time for retry lanes to avoid starvation.
packages/shared/forks/ReactFeatureFlags.native-oss.js
+1
-1
@@ -83,7 +83,7 @@ export const retryLaneExpirationMs = 5000;
83
export const syncLaneExpirationMs = 250;
84
export const transitionLaneExpirationMs = 5000;
85
export const useModernStrictMode = true;
86
-export const enableSiblingPrerendering = false;
86
+export const enableSiblingPrerendering = true;
87
88
// Profiling Only
89
export const enableProfilerTimer = __PROFILE__;
packages/shared/forks/ReactFeatureFlags.test-renderer.js
+1
-1
@@ -81,7 +81,7 @@ export const enableInfiniteRenderLoopDetection = false;
81
82
export const renameElementSymbol = true;
83
export const enableShallowPropDiffing = false;
84
-export const enableSiblingPrerendering = false;
84
+export const enableSiblingPrerendering = true;
85
86
// TODO: This must be in sync with the main ReactFeatureFlags file because
87
// the Test Renderer's value must be the same as the one used by the
packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js
+1
-1
@@ -79,7 +79,7 @@ export const syncLaneExpirationMs = 250;
79
export const transitionLaneExpirationMs = 5000;
80
export const useModernStrictMode = true;
81
export const enableFabricCompleteRootInCommitPhase = false;
82
-export const enableSiblingPrerendering = false;
82
+export const enableSiblingPrerendering = true;
83
84
// Flow magic to verify the exports of this file match the original version.
85
((((null: any): ExportsType): FeatureFlagsType): ExportsType);
packages/shared/forks/ReactFeatureFlags.test-renderer.www.js
+1
-1
@@ -92,7 +92,7 @@ export const renameElementSymbol = false;
92
export const enableObjectFiber = false;
93
export const enableOwnerStacks = false;
94
export const enableShallowPropDiffing = false;
95
-export const enableSiblingPrerendering = false;
95
+export const enableSiblingPrerendering = true;
96
97
// Flow magic to verify the exports of this file match the original version.
98
((((null: any): ExportsType): FeatureFlagsType): ExportsType);