-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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
Fixed rxjs version #11741
Comments
Hello, good question! In the past, we did not have all of our deps fixed, but this began to create issues around the latest releases of things having breaking changes or bugs that caused apps created with the ionic-cli to break right out of the box (obviously an issue for developer experience). Because of this, we decided to pin all of our dependencies to specific versions that we had done all of our testing with so that we could be sure that an out of the box ionic app worked as expected. So, while this meant that we would not always be on the latest and greatest by default, we were able to ensure a working experience. Now that things have stabilized in the Angular world, we have been updating dependencies faster and will continue to make sure we keep our deps as close to the latest as possible to get all the latest bug fixes in these libs. |
@jgw96 Hello and thanks for taking the time to explain me this! I understand your points and was expecting something along those lines - but, to be honest, you didn't really answer my question which was:
Also,
You still don't. It seems to me that, in this case, locking is more like a "conceptual" practice rather than answering to a practical need. A practice that is hindering development for Ionic users. |
@jgw96 Sorry to insist on this, but today this bit me once again. A bug in You should really consider unlocking versions for this case. Or, at the very least, depend on a more recent one? Also, I honestly don't understand why you closed the issue, since you didn't address the problem and you haven't fully answered the questions that it brought. |
@jgw96 Is there any update here? Can't you at lock down to |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
To a certain extent, I can understand the reasons behind locking
@angular/*
dependencies' versions (though, I wonder why not declaring ranged dependencied, instead). But could someone explain why isrxjs
fixed? It's been targeting5.1.1
, a months old release, since Angular 2.4.8 came out. This is especially intriguing since Angular itself does not lock itsrxjs
dependency version (it fact, it doesn't for any of its dependecies).The reason I'm asking this is because today, I stumbled upon an issue while using
rxjs
related tofromPromise
input type - which was solved, merged and released in latest5.4.0
. I upgraded my localrxjs
version and, while everything worked just fine,npm
expectedly complains about a missing peer dependency.Is there something in
ionic
that would justify forcing this particular version?The text was updated successfully, but these errors were encountered: