-
Notifications
You must be signed in to change notification settings - Fork 85
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
Angular v8 support #90
Comments
There will definitely be an upgrade, however major version changes of Angular don't usually produce too many issues with using the library. Please do let us know if you see anything breaking in v8 |
We recently upgraded to Angular 8 and angular-redux v10 works fine with Angular 8, and we didn't have to change anything. The only annoyance is that yarn (npm would do it too I guess) throws a warning that angular-redux expects Angular 7 not 8. It would be nice if package.json was updated to support both. |
That was my theory, but thank you for confirming. Feel free to utilize v10 with Angular 8. I will do a version bump at some point to remove the dependency warning, but that will require a major release and I want to see if I can get some more work in before I do so. |
I'm getting an error after upgrading to Angular 8 (from 7): Not sure if I need to update another package (maybe the redux node_module itself?). If it can help, my package.json has these dependencies: "dependencies": { |
Ok, found the issue. Apparently, [email protected] doesn't work. Installed 4.0.1, works fine. Hope this helps anyone who has the same issue. |
Hah, it's what about I argued with my team few weeks ago. Why do we need to wait any additional changes? Why we can't just make yet another release even if it require minor or major version bump? Why it can't include only single simple fix? Chrome now have version 75 and there are no one worry about that. |
Could it just be a patch release to change the package.json? I really don't want to wait just so I can get rid of some install warnings that I can't tell which ones are real warnings anymore. You've had 2 months since Angular 8 has been released to fix this? |
Im getting the same error as @JackSchaible |
This package was failing because of a transitive dependency on redux. See angular-redux/platform#90 (comment).
Update It builds once I change redux from "Ok, found the issue. Apparently, [email protected] doesn't work. Installed 4.0.1, works fine. Hope this helps anyone who has the same issue." This didn't fix the problem. My versions are as follows (redux set from 4.0.4 back to 4.0.1, same error).
and I'm on Angular 8.1.3. The error with either redux version is ERROR in node_modules/@angular-redux/store/components/ng-redux.d.ts:10:31 - error TS2420: Class 'NgRedux' incorrectly implements interface 'ObservableStore'. 10 export declare abstract class NgRedux implements ObservableStore { node_modules/redux/index.d.ts:247:3 |
This package was failing because of a transitive dependency on redux. See angular-redux/platform#90 (comment).
Any chance to update the dependency for angular? I'm using this version with angular 8 and it works as expected, I would like to avoid seeing the npm warnings... |
I still expecting problems with redux-observable-decorator ( because of that I was need to create a fork of redux-observable decorator (https://github.com/asvishnyakov/redux-observable-decorator-es6-compat) and use it together with redux-observable-es6-compat to have ability to use differential loading |
@dalu I've just moved to using ngxs instead of relying on this directly. |
@dalu see my comment above... |
any progress on this? |
This is a...
What toolchain are you using for transpilation/bundling?
ngc
Environment
NodeJS Version: 10.16
Typescript Version: 3.4
Angular Version: 8
@angular-redux/store version: 10
@angular/cli version: (if applicable)
OS: Windows
Additional Notes:
Should we wait support of angular v8 from angular-redux or it's safe to use it as is with angular v8? Have you any plans to upgrade?
The text was updated successfully, but these errors were encountered: