--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "meteor-core" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/meteor-core/s-xGYQ3gBkc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to meteor-core...@googlegroups.com.
Btw. Will it be possible to remove failed /wrong packages on the package server? (kind of the reason for a lot off issues, at the moment its a bit messed up where cfs packages are prefixed with different users from the team, a bit puzzled / inconsistent)
And is there a way to see what packages raix has published? (apologize if already a feature)
--
I'm getting an error:--> meteor update --release 0.9.1-rc2
0.9.1-rc2: unknown release.
however there does seem to be a tag with that name, so assume there is something in the meteor release system preventing this:
https://github.com/meteor/meteor/tree/release/METEOR%400.9.1-rc2
btw I am trying this in an app dir which is already 0.9.0
ptest> meteor update --release 0.9.1-rc2
0.9.1-rc2: unknown release.
ptest> meteor --version
Meteor 0.9.0-rc12
ptest> meteor update
This project is already at Meteor 0.9.0-rc12, the latest release.
ptest>
You received this message because you are subscribed to the Google Groups "meteor-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-talk...@googlegroups.com.
I'm trying to publish a package targetted at the new RC and am having some trouble. I'm seeing:```meteor publish --createRefreshing package metadata. This may take a moment.Reading package...Figuring out the best package versions to use. This may take a moment.Could not resolve the specified constraints for this package:Error: conflict: ej...@1.0.0 vs 1.0.1-rc0```My package.js looks like:```
api.versionsFrom('METEOR@0.9.1-rc2');
api.use(['deps','iron:rou...@0.9.2-rc0','percolate:mome...@0.0.1'],'client');
--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.
For more options, visit https://groups.google.com/d/optout.
We've got another release candidate out. To update, run `meteor update --release 0.9.1-rc3`. If you're using iron-router:meteor remove iron:routermeteor update --release 0.9.1-rc3meteor add iron-router@0.9.2-rc2
meteor remove iron:routermeteor update --release 0.9.1-rc3
meteor add iron:rou...@0.9.2-rc2
--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.
For more options, visit https://groups.google.com/d/optout.
Template.test1.events({
'click .cancel-button': function(){
Blaze.remove( Blaze.currentView.parentView );
})
});
Blaze.remove( Blaze.currentView )Figuring out the best package versions to use. This may take a moment.
Could not resolve the specified constraints for this project:
Error: conflict: mini...@1.0.2 vs 1.0.
So I guess thats ok - but could it be just a bit more verbose about what packages that conflict (what packages/app that got conflicting dependencies) - so far its a needle in a haystack :)
Could not satisfy all the specified constraints:Error: conflict: de...@1.0.2-rc1 vs 1.0.2
Hey, sorry, I haven't had a chance to play with the rc's yet, but I did just take a quick peak at the source :> It seems like you're deprecating calling Blaze.Render without a parent element. This has implications for apps/packages that use Blaze but don't render to the DOM. Maybe famous-views is the only example for now :)
--
meteor add iron:rou...@0.9.2-rc2
Refreshing package metadata. This may take a moment.
Figuring out the best package versions to use. This may take a moment.
Could not satisfy all the specified constraints:
Error: conflict: ej...@1.0.1-rc0 vs 1.0.1
--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.
For more options, visit https://groups.google.com/d/optout.
How do we define a range for the supported package versions?
We are trying very hard to keep the `roles` package backwards compatible without maintaining two codebases. The issue is that the roles package supports both blaze@1 and blaze@2 but it seems we have to specify one or the other in `package.js` which means we can support all Meteor prior to 0.9.0, and either Meteor 0.9.0 or 0.9.1, but not both (which would just be silly).
Alternately, we could leave off the specific version info for blaze if there is a way to tell Meteor to use the same Meteor Version as the app. For example,
if (api.versionsFrom) { api.versionsFrom("METEOR@<Whatever the app is using>"); api.use(['blaze'], 'client', {weak: true}); }
It looks like there's a bug with the new package management system btw.. running meteor list gives a list of packages with available updates but meteor update does nothing.More here: https://github.com/meteor/meteor/issues/2526Valerio
`api.versionsFrom` as it is now is an anti-pattern and we also can't specify a range for specific packages.
What should package authors do about this?
For the `roles` package I can release a new version but that means that the current version, 1.2.12, will be the last version that supports Meteor 0.9.0 and 0.9.0.1. Version 1.2.13 and onwards will support pre-0.9.0 and 0.9.1+ but not those two.
Wow...
...now what happens with packages that use `roles` as a dependency? If they specify `roles@1` which should be safe ("Now that we're using SEMVER, this is safe, right?") people who use 0.9.0 get their apps broken with the `roles` package as the "culprit".
Here is an example repo for people to try these things out with:
https://github.com/alanning/meteor-test-versionsFrom
--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.
For more options, visit https://groups.google.com/d/optout.
That is what I originally thought but the reality is that `api.versionsFrom` is not specifying a minimal version but is instead specifying a Meteor version to pull core packages from.
Consider this example: `api.versionsFrom('METEOR@0.9.0')`
Hi Morten -- that's correct, users and organizations are in the same namespace. We'll be working out something soon (probably next week) for users that should be converted into organizations.
--
You received this message because you are subscribed to the Google Groups "meteor-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meteor-core...@googlegroups.com.
To post to this group, send email to meteo...@googlegroups.com.
Visit this group at http://groups.google.com/group/meteor-core.For more options, visit https://groups.google.com/d/optout.