Add support for Meteor 1.2 #16877
1 check passed
Thanks guys
I'm guessing that you guys will also push out an Atmosphere update too based on your ship list?
We're waiting to hear from MDG on an issue with the Atmosphere publish bot, then @splendido will be able to trigger a push (thanks!).
meteor admin maintainers twbs:bootstrap --add publishbot
and autopublish should be good to go again.
cc: @dandv
Before we do that, looks like we might need to revisit this again because { isAsset: true } is now deprecated. More details here.
Wondering if for maximum compatibility we should do something like:
if (api.addAssets) {
// Use api.addAssets
} else {
// Use api.addFiles with { isAsset: true }
}If we don't wanna set versionsFrom to 1.2 then that approach looks like it's the better one.
Would this be just to let people use twbs:[email protected] with newer meteor releases?
In version 4 it seems fonts won't be included anymore. See the output of meteor show --show-all twbs:bootstrap and #17318
I have no idea about the timeline for v4 and whether other 3.x.x versions will be released before it though...
They have.a ship list for 3.3.6 so I guess at least that will nees for both current meteor and 1.2+
This is a refactor to prepare for the upcoming Meteor 1.2 release as well as any preview versions up to that point.
The
{ isAsset: true }is backwards compatible, it's just that once 1.2 comes around, it will be required for those kinds of files.See this issue for more details.