Turn on enableRenderableContext in experimental (#28645)

Let's get this into experimental to get more usage and allow other
renderers to test against the changes easier.
This commit is contained in:
Jack Pope 2024-03-26 14:17:43 -04:00 committed by GitHub
parent 0a44435674
commit 738993da0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -116,8 +116,6 @@ export const passChildrenWhenCloningPersistedNodes = false;
export const enableUseDeferredValueInitialArg = __EXPERIMENTAL__;
export const enableRenderableContext = false;
export const enableServerComponentLogs = __EXPERIMENTAL__;
/**
@ -202,6 +200,9 @@ export const disableLegacyMode = __NEXT_MAJOR__;
// result in false property i.e. break existing usage.
export const enableNewBooleanProps = __NEXT_MAJOR__;
// Make <Context> equivalent to <Context.Provider> instead of <Context.Consumer>
export const enableRenderableContext = __NEXT_MAJOR__;
// -----------------------------------------------------------------------------
// Chopping Block
//

View File

@ -44,7 +44,6 @@ export const enableComponentStackLocations = true;
export const enableLegacyFBSupport = false;
export const enableFilterEmptyStringAttributesDOM = true;
export const enableGetInspectorDataForInstanceInProduction = false;
export const enableRenderableContext = false;
export const enableRetryLaneExpiration = false;
export const retryLaneExpirationMs = 5000;
@ -97,6 +96,7 @@ export const disableLegacyMode = __NEXT_MAJOR__;
export const disableLegacyContext = __NEXT_MAJOR__;
export const enableNewBooleanProps = __NEXT_MAJOR__;
export const disableModulePatternComponents = __NEXT_MAJOR__;
export const enableRenderableContext = __NEXT_MAJOR__;
// Flow magic to verify the exports of this file match the original version.
((((null: any): ExportsType): FeatureFlagsType): ExportsType);