Announcing Meteor 1.3.2.2

Agree. Your effort to release often @benjamn is awesome thanks again for all of your hard work :smile:

1 Like

So - this happened after my update.

mymeteorapp: updated to Meteor 1.3.2.2.
=> Errors while upgrading packages:
While checking for momentjs:moment@2.13.0:
error: No compatible binary build found for this package. Contact the package author and ask them to publish it for your platform.

But moment() works as it did before. Should I be worried?

1 Like

You can install moment via NPM, I have it working in my app.
Remove the meteor package and just save it to node_modules.

@benjamn thanks for the informative post on the update! this seems to have fixed an issue I had

Not sure if you knew about it, but it was very frustrating to diagnose.

What do you type in the terminal to do that? I tried this morning but couldn’t get it working.

Ended up just reverting to 1.3.1 (first time I’ve had to do that since 0.5.7).

First remove the package:
meteor remove momentjs:moment

Now install via npm with:
meteor npm install moment

Use it in your app with:
import moment from 'moment'

Thanks @cstrat.

Any easy way to get the moment symbol global?

1 Like

I remember someone explaining a way to make something global, so pretty sure you can do it! However I haven’t done it myself.

Whenever I reference moment - I just import it at the top of the file.
Maybe someone else can jump in and answer this one, sorry I don’t want to tell you the wrong thing :blush:

All good. Thanks for your input. I’ll do some Googling. :grin:

1 Like

Thank for the commands, cstrat.
But how do I change the locale without access to moment object?

You could always import it then make it global yourself. Something like:

  1. /imports/startup/client/globals.js:
import moment from 'moment';
window.moment = moment;
  1. /client/main.js:
import '/imports/startup/client/globals.js';
console.log(moment());
3 Likes

Yep, I get how that would work. I’ll definitely run with this if the momentjs:moment package doesn’t get updated in the next day or two.

(Thanks for this – I’m not particularly au fait with my imports yet, but those little codes snippet clear a few things up!)

[EDIT: momentjs:moment did get an update that works with 1.3.2.2]

Should aliasify work with this release or with Meteor build tool?

Probably a silly question, but after I did a meteor update and then meteor --version it’s still showing version 1.3.1. Shouldn’t it say 1.3.2.2? I was on 1.2.1 before the update. I tried running the update a second time, but it said that I was already running the latest. This is on Windows 10-X64.

Try:

meteor update --release 1.3.2.2

I had to manually set the version flag for it to work.

Ta - that’s working. :slight_smile:

Well, actually, it LOOKED like it was working, however issuing meteor --version still reports 1.3.1

Not a silly question at all! We unrecommended 1.3.2.2 yesterday because we realized it contained a breaking change/improvement to DDP that wasn’t intended to be released until 1.3.3. Specifically, at least one package that relied on private methods of the DDP client Connection was broken in 1.3.2.1 and 1.3.2.2.

Though you can still manually meteor update --release 1.3.2.2 with no problem, and you may even notice some nice performance improvements due to DDP update batching, we’ve unrecommended it until we can publish a 1.3.2.3 (soon) without those changes.

Sorry for the confusion!

2 Likes

Thanks benjamn, however what about the fact that even when I manually specify the version (1.3.2.2), meteor --version still reports 1.3.1 - is that a bug?

Last time I tried to upgrade (to 1.3.1 from 1.3) the Meteor puked errors about npm peer dependencies, so shoud i bother even attempting to upgrade to this?