Skip to content

Commit d07bd6f

Browse files
huntiemeta-codesync[bot]
authored andcommitted
Promote fuseboxFrameRecordingEnabled to canary (#57953)
Summary: Pull Request resolved: #57953 Changelog: [Internal] Reviewed By: hoxyq Differential Revision: D111901168 fbshipit-source-id: 90f8b0432fbec5b144fa4e0fa9e7bd4ad12ce445
1 parent b74adf0 commit d07bd6f

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<3335ab1242e91e4b85f5514a39a65002>>
7+
* @generated SignedSource<<22ab94c6b0cc8f7ee39d546d9b93540a>>
88
*/
99

1010
/**
@@ -31,6 +31,8 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android : ReactN
3131

3232
override fun enableSwiftUIBasedFilters(): Boolean = true
3333

34+
override fun fuseboxFrameRecordingEnabled(): Boolean = true
35+
3436
override fun fuseboxWebSocketEventsEnabled(): Boolean = true
3537

3638
override fun useNativeViewConfigsInBridgelessMode(): Boolean = true

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<41f83a9921de88f659ddc22172344226>>
7+
* @generated SignedSource<<7103d9c2fa3e2f152ce60b5dff12c0e4>>
88
*/
99

1010
/**
@@ -29,8 +29,6 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android :
2929

3030
override fun enableSchedulerDelegateInvalidation(): Boolean = true
3131

32-
override fun fuseboxFrameRecordingEnabled(): Boolean = true
33-
3432
override fun preventShadowTreeCommitExhaustion(): Boolean = true
3533

3634
override fun useSharedAnimatedBackend(): Boolean = true

packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSCanary.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<3c9dc8c1fa921fa0431dc043fc252760>>
7+
* @generated SignedSource<<70297dc6230d386e556c82860cbf9985>>
88
*/
99

1010
/**
@@ -43,6 +43,10 @@ class ReactNativeFeatureFlagsOverridesOSSCanary : public ReactNativeFeatureFlags
4343
return true;
4444
}
4545

46+
bool fuseboxFrameRecordingEnabled() override {
47+
return true;
48+
}
49+
4650
bool fuseboxWebSocketEventsEnabled() override {
4751
return true;
4852
}

packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSExperimental.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<630f900c13eb68232717fc28528253e2>>
7+
* @generated SignedSource<<7341b28bb77aeeec670051149faeae04>>
88
*/
99

1010
/**
@@ -39,10 +39,6 @@ class ReactNativeFeatureFlagsOverridesOSSExperimental : public ReactNativeFeatur
3939
return true;
4040
}
4141

42-
bool fuseboxFrameRecordingEnabled() override {
43-
return true;
44-
}
45-
4642
bool preventShadowTreeCommitExhaustion() override {
4743
return true;
4844
}

packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ const definitions: FeatureFlagDefinitions = {
679679
expectedReleaseValue: true,
680680
purpose: 'experimentation',
681681
},
682-
ossReleaseStage: 'experimental',
682+
ossReleaseStage: 'canary',
683683
},
684684
fuseboxScreenshotCaptureEnabled: {
685685
defaultValue: true,

0 commit comments

Comments
 (0)