Releases: react/react-native
v0.65.1
Hello everyone 👋 0.65.1 is out and addresses a couple of compatibility issues (with M1, with latest Android Studio), bumps react-test-renderer to the correct version in the template and fixes a colorProps issue for Android.
Changed
- Set
react-test-rendererto17.0.2in the template (d272880 by @@rickhanlonii)
Fixed
- Resolve NODE_BINARY after finding the right path to node (d75683 by @santiagofm)
Android specific
- ColorProps with value null should be defaultColor instead of transparent (842bcb902e by @hank121314)
- Android Gradle Plugin 7 compatibility (06e31c748f by @dulmandakh)
You can participate in the conversation on the status of this release at this issue.
To help you upgrade to this version, you can use the upgrade helper ⚛️
You can find the whole changelog history over at react-native-releases.
v0.65.0
0.65 stable is here 🎉
Thanks to everyone who contributed (over 1100 commits from 61 contributors!) and helped to get this together, we worked really hard and we hope you are as excited as we are 🤗
Some of the most important highlights of this version:
- Hermes 0.8.1. Please see the highlighted changes from its 0.8.0 and 0.8.1 release notes.
react-native-codegenversion0.0.7is now needed as adevDependencyin thepackage.json.- JCenter has been sunsetted and read-only now. We have removed JCenter as a maven repository and updated dependencies to use MavenCentral and Jitpack.
- Upgraded OkHttp from v3 to v4.9.1. See Upgrading to OkHttp 4 for more details on changes.
- Upgraded to Flipper 0.93 to support Xcode 12.5. See Flipper changelog here.
- Android Gradle Plugin 7 support.
Among many others - please refer to the blog post for more details.
You can participate in the conversation on the status of this release at this issue.
You can upgrade to this version using the upgrade helper webtool ⚛️
You can find the whole changelog history over at react-native-releases.
v0.65.0-rc.4
Please only upgrade or create new apps with 0.65.0-rc.4 if you'd like to help us test this before the stable release - which would be super useful 🤗
To test it, run:
npx react-native init RN065RC4 --version 0.65.0-rc.4We're working on the changelog and you can read the draft here.
You can participate in the conversation on the RC status this issue for updates, where you can post your bug reports and cherry-pick suggestions.
You can find the whole changelog history over at react-native-releases.
v0.65.0-rc.3
Please only upgrade or create new apps with 0.65.0-rc.3 if you'd like to help us test this before the stable release - which would be super useful 🤗
To test it, run:
npx react-native init RN065RC3 --version 0.65.0-rc.3We're working on the changelog and you can read the draft here.
You can participate in the conversation on the RC status this issue for updates, where you can post your bug reports and cherry-pick suggestions.
You can find the whole changelog history over at react-native-releases.
v0.65.0-rc.2
Please only upgrade or create new apps with 0.65.0-rc.2 if you'd like to help us test this before the stable release - which would be super useful 🤗
To test it, run:
npx react-native init RN065RC2 --version 0.65.0-rc.2We're working on the changelog and you can read the draft here.
Known Issues
- iOS: Some reports of Folly dual symbols preventing ios from building successfully.
You can participate in the conversation on the RC status this issue for updates, where you can post your bug reports and cherry-pick suggestions.
You can find the whole changelog history over at react-native-releases.
v0.65.0-rc.1
Please only upgrade or create new apps with 0.65.0-rc.1 if you'd like to help us test this before the stable release - which would be super useful 🤗
To test it, run:
npx react-native init RN065 --version 0.65.0-rc.1We're working on the changelog and you can read the draft here.
Known Issues
- Android: Highly likely to crash on startup; investigation is on-going.
You can participate in the conversation on the RC status this issue for updates, where you can post your bug reports and cherry-pick suggestions.
You can find the whole changelog history over at react-native-releases.
v0.65.0-rc.0
Please only upgrade or create new apps with 0.65.0-rc.0 if you'd like to help us test this before the stable release - which would be super useful 🤗
To test it, run:
npx react-native init RN065 --version 0.65.0-rc.0We're working on the changelog and you can read the draft here.
Known Issues
- Android: Highly likely to crash on startup with missing
libfbjni.so(and possibly other.sofiles); investigation is on-going. - iOS: Issue on M1 with nvm; fix is ready and will be picked in the next RC.
You can participate in the conversation on the RC status this issue for updates, where you can post your bug reports and cherry-pick suggestions.
You can find the whole changelog history over at react-native-releases.
v0.64.2
Hello everyone - here's the new 0.64.2 patch release with some really good fixes that were asked by the community:
Changed
- Find-node.sh supports Homebrew on M1 (502b819049 by @dulmandakh)
- Refactor UIManagerHelper.getUIManager to return null when there's no UIManager registered (b0e8c1eac0 by @mdvacca)
Fixed
- Fix ScrollViewStickyHeader to push up header above it (d754bdefc6 by @kacieb)
Android specific
- Font family is not apply when secureTextEntry is true (cda77c77dd83cba07e6c2e56e938c3e4f7faf8fc by @hank121314)
- Dimension update events are now properly sent following orientation change (a6a4d3365f17332e367c34357a07a73f97d6ec83 by @ajpaulingalls)
You can participate in the conversation on the status of this release at this issue.
To help you upgrade to this version, you can use the upgrade helper ⚛️
You can find the whole changelog history over at react-native-releases.
v0.64.1
This patch release is specifically targetted towards fixing iOS build problems in Xcode 12.5. If it doesn't help, please refer to this issue.
Aside from bumping your version from 0.64.0 to 0.64.1, please check your podfile.lock and make sure that Flipper is on 0.75 or higher, and Flipper-Folly is 2.5.3 or higher; if not, add this line to your podfile (or modify it if you already had it):
use_flipper!('Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1')
After which, do all the classic necessary cleans (node_modules, caches, pod folders, etc)(react-native-clean-project is your ally) then do yarn install and a pod install --repo-update (if pod install fails on an error about a Flipper package, just remove the relevant lines from the podfile.lock and run the pod install again).
The only other commit picked & released along the Xcode 12.5 fixes is:
- Update validateBaseUrl to use latest regex (commit) which fixes CVE-2020-1920, GHSL-2020-293.
You can participate in the conversation on the status of this release at this issue.
To help you upgrade to this version, you can use the upgrade helper ⚛️
You can find the whole changelog history over at react-native-releases.
v0.62.3
This patch release is specifically targetted towards Xcode 12.5. The changes done are tailored to unblock developers still relying on v0.62 of RN.
Aside from bumping your version from 0.62.2 to 0.62.3, please make sure to add this line to your podfile (or modify it if you already had it):
use_flipper!('Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1')
After which, do all the classic necessary cleans (node_modules, caches, pod folders, etc)(react-native-clean-project is your ally) then do yarn install and a pod install --repo-update (if pod install fails on an error about a Flipper package, just remove the relevant lines from the podfile.lock and run the pod install again).
The only other commit picked & released along the Xcode 12.5 fixes is:
- Update validateBaseUrl to use latest regex (commit) which fixes CVE-2020-1920, GHSL-2020-293.
To help you upgrade to this version, you can use the upgrade helper ⚛️
You can find the whole changelog history over at react-native-releases.