Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor 0.9.x Update

Tags:

meteor

How do I find out what is holding my app up from updating? I keep getting the 'This project is at the latest release which is compatible with your current package constraints.' message.

Here is the output from the update command:

Refreshing package metadata. This may take a moment.
Figuring out the best package versions to use. This may take a moment.
Figuring out the best package versions to use. This may take a moment.
Figuring out the best package versions to use. This may take a moment.
This project is at the latest release which is compatible with your
current package constraints.

My packages.js looks like so:

# Meteor packages used by this project, one per line.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

accounts-base
accounts-password
alanning:roles@=1.2.9
arunoda:[email protected]
ch-activity
ch-activityreport
ch-arrestreport
ch-assetreport
ch-citation
ch-fieldinterviewreport
ch-incidentreport
ch-inspectionreport
ch-location
ch-media
ch-narrative
ch-organization
ch-person
ch-property
ch-signature
ch-vehicle
cmather:[email protected]
coffeescript
copleykj:[email protected]
d3
dash-patrol
email
less
mizzao:[email protected]
mrt:accounts-ui-bootstrap-3@=0.3.3
mrt:[email protected]
mrt:[email protected]
notices
sacha:[email protected]
standard-app-packages
tsega:bootstrap3-datetimepicker@=0.2.0

I have migrated all the ch-* and dash-* packages to the new format. Those are local, in app, packages. Those cannot be in public repositories.

like image 497
DigiLord Avatar asked Aug 28 '14 20:08

DigiLord


People also ask

How do I update my meteor package?

If you want to update to a newer version of a package after installing it, use meteor update . You can run meteor update without any arguments to update all packages and Meteor itself to their latest versions, or pass a specific package to update just that one, for example meteor update ostrio:flow-router-extra .

How do I know what version of Meteor I have?

How to check the Meteor version of my project? First, you must know which Meteor version you are running in your project. The easiest way is to run meteor --version inside your project folder. If you run this command outside of your project folder, it will show the Meteor version that is installed on your machine.

What is Meteor API?

What is Meteor? Meteor is a full-stack JavaScript platform for developing modern web and mobile applications. Meteor includes a key set of technologies for building connected-client reactive applications, a build tool, and a curated set of packages from the Node. js and general JavaScript community.


3 Answers

Try replacing

cmather:[email protected]

with

iron:[email protected]

in your packages file.

like image 109
alste Avatar answered Oct 21 '22 08:10

alste


I'm think it may be because not all your packages are compatible with Meteor 0.9.0 If you want to check what packages are currently compatible enter this code:

meteor search (Package Name)

By default meteor will only return compatible packages, so you can find which packages aren't working by searching each one. If you can't find the package, then its probably not compatible and you aren't going to be able to run the latest version of Meteor unless you remove it.

Don't worry though! While Meteor 0.9.0 is quite buggy, they are working hard to update all the packages and patch the bugs. Just give it a few weeks to sort itself out if that doesn't work :)

Best Of Luck! Hope This Helped!

like image 29
Ian Wise Avatar answered Oct 21 '22 08:10

Ian Wise


Meteor search is included in the latest release. Docs: http://docs.meteor.com/#meteorsearch

Try running this command and you should be able to access meteor search

meteor update

Also, the update should tell you if there's a package update available, although I had to run update (packagename) on each starred package for it to update

meteor update aldeed:collection2
like image 37
David Avatar answered Oct 21 '22 09:10

David