-
Notifications
You must be signed in to change notification settings - Fork 186
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
Add Angular 16 support #572
Comments
@neroniaky Do y'all have plans to support angular 16? |
what about Angular 16/17 support? |
@Ajax-ua did you find a solution? or another library to manage devise token auth? |
@fabricioflores No, seems like there is no alternative lib for that. We decided to implement our own solution |
So, it looks like in the library the underlying code is using things like CanActivate which was removed in version 16. The issue with the generic type argument is strange, because it does use a generic type argument in the code, but the generated .d.ts that is shipped does not include the generic. This is an easy fix as you simply need to override that to be ModuleWithProviders. But, it still breaks in Angular 16, I suspect due to the fact it is using a bunch of deprecated features. I'm hoping that someone forks this and makes a compatible version. |
ModuleWithProviders without a generic type is deprecated in Angular 16. So the package doesn't work after migration from Angular 15 to v16
The text was updated successfully, but these errors were encountered: