New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 1.7.0.4 #10134
Release 1.7.0.4 #10134
Conversation
Also updated the dynamic-import test app to Meteor 1.7.0.3.
Cherry-picking this change from the release-1.7.1 branch, where it has been well-validated by our beta testers. Fixes #9940.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great @benjamn - thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! (One comment below, but I'm just talking to myself out loud.)
@@ -1 +1 @@ | |||
METEOR@1.6.1 | |||
METEOR@1.7.0.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I recall, this (as in the dynamic-import
test app's Meteor version) is intentionally held back until the version is officially released, correct?
That is to say, this is intentionally not 1.7.0.4 yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's right. I will update it again once the final release commit is merged into devel
.
A recent commit added a flag to request 4GB space for node, which causes an immediate segmentation fault on 32-bit Linux.
…les. According to the plan described in #10134, whereas we had to pin these versions to exactly 7.0.0-beta.55 for Meteor 1.7.0.4, we must now require at least 7.0.0-beta.56 for Meteor 1.7.1, since other @babel/... packages used by babel-compiler and meteor-babel are currently at beta.56.
Quick patch release to address
@babel/runtime
issues such as #10126, introduced by the removal of the@babel/runtime/helpers/builtin
directory in babel/babel#8266 (which, to be clear, is a valuable change in the long term, even though it's somewhat annoying in the short term).Plan:
babel-runtime@1.2.3
package complain if you install@babel/runtime@7.0.0-beta.56
or higher in your application'snode_modules
directory.@babel/runtime@7.0.0-beta.55
and nothing later.babel-runtime
(to 1.3.0) on therelease-1.7.1
branch, and undo the changes above.