Skip to content

Commit 988e217

Browse files
authored
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.
1 parent 380f5d6 commit 988e217

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/shared/ReactFeatureFlags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const enableOwnerStacks = __EXPERIMENTAL__;
145145

146146
export const enableShallowPropDiffing = false;
147147

148-
export const enableSiblingPrerendering = false;
148+
export const enableSiblingPrerendering = true;
149149

150150
/**
151151
* Enables an expiration time for retry lanes to avoid starvation.

packages/shared/forks/ReactFeatureFlags.native-oss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const retryLaneExpirationMs = 5000;
8383
export const syncLaneExpirationMs = 250;
8484
export const transitionLaneExpirationMs = 5000;
8585
export const useModernStrictMode = true;
86-
export const enableSiblingPrerendering = false;
86+
export const enableSiblingPrerendering = true;
8787

8888
// Profiling Only
8989
export const enableProfilerTimer = __PROFILE__;

packages/shared/forks/ReactFeatureFlags.test-renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const enableInfiniteRenderLoopDetection = false;
8181

8282
export const renameElementSymbol = true;
8383
export const enableShallowPropDiffing = false;
84-
export const enableSiblingPrerendering = false;
84+
export const enableSiblingPrerendering = true;
8585

8686
// TODO: This must be in sync with the main ReactFeatureFlags file because
8787
// the Test Renderer's value must be the same as the one used by the

packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const syncLaneExpirationMs = 250;
7979
export const transitionLaneExpirationMs = 5000;
8080
export const useModernStrictMode = true;
8181
export const enableFabricCompleteRootInCommitPhase = false;
82-
export const enableSiblingPrerendering = false;
82+
export const enableSiblingPrerendering = true;
8383

8484
// Flow magic to verify the exports of this file match the original version.
8585
((((null: any): ExportsType): FeatureFlagsType): ExportsType);

packages/shared/forks/ReactFeatureFlags.test-renderer.www.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const renameElementSymbol = false;
9292
export const enableObjectFiber = false;
9393
export const enableOwnerStacks = false;
9494
export const enableShallowPropDiffing = false;
95-
export const enableSiblingPrerendering = false;
95+
export const enableSiblingPrerendering = true;
9696

9797
// Flow magic to verify the exports of this file match the original version.
9898
((((null: any): ExportsType): FeatureFlagsType): ExportsType);

0 commit comments

Comments
 (0)