-
-
Notifications
You must be signed in to change notification settings - Fork 63
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
rxjs version bump to 6? #139
Comments
I would also need your module for angular 6 :) |
I think you can still safely update to v6 ignoring the npm warning. It's basically just a cosmetic thing in the package.json. But yeah it's a good idea to update the version range =) |
Oh also all angular dependencies should be bumped to v6 range along with typescript version. And that means that it should be published as a major release (as a breaking change). |
Yes, you are right, it was just a warning that I was able to ignore. Yeah this will definitely require a major version release as that also keeps in line with your versioning scheme of having a new major release corresponding with each Angular major release... |
Get rid of npm warning is simple: "peerDependencies": {
"@angular/common": ">=5.0.0",
"@angular/core": ">=5.0.0",
"rxjs": ">=5.0.0",
"tslib": ">=1.0.0"
},
But you should read this first RxJS v5.x to v6 Update Guide Change from: //rx5.x
import { takeUntil } from 'rxjs/operators';
import { Subject } from 'rxjs/Subject'; TO: //rx6.x
import { takeUntil } from 'rxjs';
import { Subject } from 'rxjs'; |
@snowyu thanks for sharing a link regarding rxjs. Small note: pipeable operators should be still imported from Second, once I upgraded to Angular 6, tests that test dynamic attributes with
All other pieces of unit tests are passing so it's kind of a blocker... It feels like something have changed in the angular internals and now modules used in tests are breaking when used with Does anybody have any ideas what might be the cause? |
Here are: The Angular 6 Upgrade Guide. |
@snowyu thanks for the link, however I don't think there is something related to this error... I think it is only happening in unit test but will have to verify by running in ng6 test app to be sure. |
Doing some work here, feel free to help |
🎉 This issue has been resolved in version 3.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Not able to update app to angular 6 as
ng-dynamic-component
depends on^5.0.0
whereas angular 6 now depends on rxjs^6.0.0
...The text was updated successfully, but these errors were encountered: