-
Notifications
You must be signed in to change notification settings - Fork 276
Description
Compatibility
React 19
The v13 release will most likely happen for React 19 release for React Native. See #1593 for more info.
RN versions support
Drop support for older versions of React Native versions - perhaps in line with supported RN version (0.70 atm). We should have clear information about supported RN versions and corresponding RNTL versions.
The reasoning behind is that support for older versions for RN requires additional checks and testing that would reduce our capacity to do more useful stuff and that the users on older version of RN should generally update their RN version first and only after that RNTL version.
this also includes dropping React 17 support
Drop support for React 18 and lower, and focus just on React 19.
This will require introduction of versioned documentation.
Using JSX transform
Based on #1492, we could use modern JSX transform by default. We should however assess that it would work with all supported RN versions.
Remove deprecated stuff
getByAccessibilityState,getByAccessibilityValue- already marked as deprecated- remove aliases
getByA11yHintandgetByAccessibilityHintand keep only one name:getByHintText
API improvements
- Restrict allowed
rolevalue for*byRolequeries to RN-supported roles Update ByRole queries to only accept roles #1527. - Unify accessible name handling in
*ByRolewith the newtoHaveAccessibleNamematcher. Basically, if element has explicit label (aria-label,accessibilityLabel,aria-labelledby,accessibilityLabelledBy) themnameshould match only that, and name derived from text content should be used only in the absence of explicit label.