I am trying to move some projects to 1.9, but any project that has the latest version of aldeed:autoform stubbornly tries to downgrade jquery, and I don’t get why
While selecting package versions:
error: Conflict: Constraint jquery@1.11.6 is not satisfied by jquery 3.0.0.
Constraints on package "jquery":
* jquery@3.0.0 <- top level
* jquery@1.11.9 || 3.0.0 <- blaze 2.3.4 <- accounts-base 1.5.0 <- accounts-password 1.5.3
* jquery@1.11.9 || 3.0.0 <- blaze 2.3.4 <- aldeed:autoform 6.3.0
* jquery@1.11.6 <- aldeed:autoform 6.3.0
Meteor 1.8 introduced what is basically the !important of package versioning.
So in your .meteor/packages, you can add an ! to the end of a package to say, I want this version and please ignore version constraints from packages:
The .meteor/packages file supports a new syntax for overriding problematic version constraints from packages you do not control.
If a package version constraint in .meteor/packages ends with a ! character, any other (non- ! ) constraints on that package elsewhere in the application will be weakened to allow any version greater than or equal to the constraint, even if the major/minor versions do not match.
For example, using both CoffeeScript 2 and practicalmeteor:mocha used to be impossible (or at least very difficult) because of this api.versionsFrom("1.3") statement, which unfortunately constrained the coffeescript package to version 1.x. In Meteor 1.8, if you want to update coffeescript to 2.x, you can relax the practicalmeteor:mocha constraint by putting
coffeescript@2.2.1_1! # note the !
in your .meteor/packages file. The coffeescript version still needs to be at least 1.x, so that practicalmeteor:mocha can count on that minimum. However, practicalmeteor:mocha will no longer constrain the major version of coffeescript , so coffeescript@2.2.1_1 will work.