Skip to content

Commit

Permalink
[Flight] Enable Binary and ReadableStreams in Stable (#29035)
Browse files Browse the repository at this point in the history
These are ready to ship in stable.
  • Loading branch information
sebmarkbage committed May 10, 2024
1 parent 6c409ac commit 6ef0dd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/shared/ReactFeatureFlags.js
Expand Up @@ -79,8 +79,8 @@ export const enableLegacyFBSupport = false;
export const enableCache = true;
export const enableLegacyCache = __EXPERIMENTAL__;

export const enableBinaryFlight = __EXPERIMENTAL__;
export const enableFlightReadableStream = __EXPERIMENTAL__;
export const enableBinaryFlight = true;
export const enableFlightReadableStream = true;
export const enableAsyncIterableChildren = __EXPERIMENTAL__;

export const enableTaint = __EXPERIMENTAL__;
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/forks/ReactFeatureFlags.native-oss.js
Expand Up @@ -52,8 +52,8 @@ export const disableLegacyContext = __NEXT_RN_MAJOR__;
export const enableTaint = __NEXT_RN_MAJOR__;
export const enableUnifiedSyncLane = __NEXT_RN_MAJOR__;
export const enableFizzExternalRuntime = __NEXT_RN_MAJOR__; // DOM-only
export const enableBinaryFlight = __NEXT_RN_MAJOR__; // DOM-only
export const enableFlightReadableStream = __NEXT_RN_MAJOR__; // DOM-only
export const enableBinaryFlight = true;
export const enableFlightReadableStream = true;
export const enableServerComponentLogs = __NEXT_RN_MAJOR__;

// DEV-only but enabled in the next RN Major.
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/forks/ReactFeatureFlags.www.js
Expand Up @@ -72,8 +72,8 @@ export const renameElementSymbol = false;
export const enableCache = true;
export const enableLegacyCache = true;

export const enableBinaryFlight = false;
export const enableFlightReadableStream = false;
export const enableBinaryFlight = true;
export const enableFlightReadableStream = true;
export const enableAsyncIterableChildren = false;

export const enableTaint = false;
Expand Down

0 comments on commit 6ef0dd4

Please sign in to comment.