-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does RN 0.43 use React 16.0.0-alpha #13469
Comments
I believe this was answered in #13291 |
yes -_-
|
This is intentional because React Native is released on a monthly cycle and uses the code from Facebook's trunk, which was using React 16 alpha 6 at the time of creating the release branch.
No, RN 0.43 works only with React 16.0.0-alpha.6. Use that precise version.
This is a nonsensical warning from npm/yarn. There's an issue open on the Yarn repo to improve these warnings (16.0.0-alpha.6 does potentially satisfy >=15.4.0 according to the semver document, it's just that the node-semver library that chooses not to). |
This doesn't make any sense... Why release stable versions dependent on alpha versions? Either release React 16.0.0 or stick to 15.x I would say. |
I agree with @bensampaio . |
The problem is that many libs depending on React are not going to update the React dependency to This will raise some errors when testing. See storybookjs/storybook#893. Please try to convince other open-source developers to update the React dependency by adding more docs. |
I did not find docs about this question.
The latest stable version of React is
15.5.0
. I did not find any docs about React16.0.0-alpha
. What are the major changes?I have many libs depending on React
15.x
. May I use React15.5.0
instead of16.0.0-alpha
with RN0.43.x
?The text was updated successfully, but these errors were encountered: