Meteor Changelog is lagging

Made a meteor update and got 1.4.2.3 and babel stuff stopped working. Was not long ago since I updated but google found no new problems related to

If you notice problems related to these missing modules, consider running:
meteor npm install --save babel-runtime

Running that command did not resolve anything, it still complain it’s missing “babel-runtime/helpers/typeof”

So since this was an immediate effect of the update, I went to check the changelog to see exactly how new it was.

Last entry was 1.4.2.1
http://docs.meteor.com/changelog.html

I also think the date for the release should be in the changelog

Changelog in the meteor/meteor master branch is the canonical source: https://github.com/meteor/meteor/blob/master/History.md

Would be good to see the Docs code directory submodule link be updated after each release, as it’s currently pointing to https://github.com/meteor/meteor/tree/2d8f187cc92d152a010a7862dc5fa2a677a6b5ea

Interesting, I wonder if we can automate the process of updating that page.

I was thinking about that. What event represents a new build of Meteor being released? Merge to master?

There’s a very specific answer, it’s when the following URL changes to the new version: https://packages.meteor.com/bootstrap-link

Basically the first thing that happens is a new tag appears here: https://github.com/meteor/meteor/releases

Then, someone tests it out, and runs a special Meteor command meteor admin recommend-release which sets a flag in a database that that version is now “recommended”.

Essentially, we want to make sure we can test installing the build before it gets shipped to everyone.

So perhaps we can add something to automatically open a PR to the docs upgrading the submodule? We could maybe just do it when new tags are detected on meteor/meteor, or we could hook into the recommending process.

2 Likes

Thanks for taking the time to document this here. The master branch of meteor/meteor will always have the latest release included, and may show what’s coming in the next release as added value. Maybe just hyperlink to this source file from the docs to keep the complexity down.

1 Like

Yeah, that’s the easiest solution I think. Send a PR?