-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Widen peer dependency range to include React 17 #814
Comments
+1 |
Please check that issue, because NextJS is using React 17 now, so we can't use your library with NextJS any more! |
@skiabox that's not correct. You can use React 16 or React 17 with even the latest version of Next.js. See its peer dependencies. It's up to you which one you install. |
next-auth doesnt seem to install out of the box on a clean node15/npm7/react17 setup and I wonder if its related to this issue npm i next-auth |
@foaadnami the error is saying that there's a peer dependency conflict, because you've installed React 17 but next-auth currently requires React 16. You can fix it by using React 16 until next-auth expands its peer dependency range to include React 17, which is what this issue is about. I don't think there's anything to be added to the documentation; this is the error that you'll get if you try to install any two incompatible packages. |
@billyjanitsch I think what @skiabox means is that new installs of Next.Js via say npx create-next-app will default to react 17 which next-auth 3.1 will not install on top of |
🎉 This issue has been resolved in version 3.3.0-canary.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Summary of proposed feature
React 17 was released recently with minimal breaking changes.
next-auth
currently supports only^16.13.1
:next-auth/package.json
Lines 57 to 60 in 5126f4e
Could this be widened to
^16.13.1 || ^17.0.0
?Purpose of proposed feature
Allows apps using React 17 to also use
next-auth
without peer dependency warnings.Detail about proposed feature
n/a
Potential problems
There are subtle differences between React 16 and React 17, so it's worth reviewing to see if any of them might affect the library's functionality.
Describe any alternatives you've considered
You could alternatively release a new major version of
next-auth
that peer-depends only on React^17.0.0
, but since the changes are minimal, you may not want to deprecate support for React 16 going forward.Additional context
n/a
Please indicate if you are willing and able to help implement the proposed feature.
Yes.
The text was updated successfully, but these errors were encountered: