Skip to content

Commit 7575c8e

Browse files
joevilchesfacebook-github-bot
authored andcommitted
Move enableAccessibilityOrder feature flag to experimental
Summary: We have seen sufficient internal signal to be confident that we can move this to the experimental release channel. Soon I will publish some experimental documentation and let folks in OSS know about this. Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D80560366
1 parent 6da351a commit 7575c8e

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_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<<0bafb0a2fb79c4220d21f1736894af14>>
7+
* @generated SignedSource<<1f89971ab4d5b2ee27ace3a3c8da78cf>>
88
*/
99

1010
/**
@@ -23,6 +23,8 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android :
2323
// We could use JNI to get the defaults from C++,
2424
// but that is more expensive than just duplicating the defaults here.
2525

26+
override fun enableAccessibilityOrder(): Boolean = true
27+
2628
override fun preventShadowTreeCommitExhaustion(): Boolean = true
2729

2830
override fun useNativeEqualsInNativeReadableArrayAndroid(): Boolean = true

packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSExperimental.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<<a045579d42e45fa80831856734a063aa>>
7+
* @generated SignedSource<<c9b7b95d3cc3fed879476f191a60d3f2>>
88
*/
99

1010
/**
@@ -27,6 +27,10 @@ class ReactNativeFeatureFlagsOverridesOSSExperimental : public ReactNativeFeatur
2727
public:
2828
ReactNativeFeatureFlagsOverridesOSSExperimental() = default;
2929

30+
bool enableAccessibilityOrder() override {
31+
return true;
32+
}
33+
3034
bool preventShadowTreeCommitExhaustion() override {
3135
return true;
3236
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const definitions: FeatureFlagDefinitions = {
145145
expectedReleaseValue: true,
146146
purpose: 'experimentation',
147147
},
148-
ossReleaseStage: 'none',
148+
ossReleaseStage: 'experimental',
149149
},
150150
enableAccumulatedUpdatesInRawPropsAndroid: {
151151
defaultValue: false,

0 commit comments

Comments
 (0)