Merge branch 'devel' into release-1.5

This commit is contained in:
Ben Newman
2017-04-08 11:36:56 -04:00
3 changed files with 10 additions and 2 deletions

View File

@@ -9,6 +9,14 @@
information about how dynamic `import(...)` works in Meteor, and how to
use it in your applications.
## v1.4.4.1, 2017-04-07
* A change in Meteor 1.4.4 to remove "garbage" directories asynchronously
in `files.renameDirAlmostAtomically` had unintended consequences for
rebuilding some npm packages, so that change was reverted, and those
directories are now removed before `files.renameDirAlmostAtomically`
returns. [PR #8574](https://github.com/meteor/meteor/pull/8574)
## v1.4.4, 2017-04-07
* Node has been upgraded to version 4.8.1.

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "1.4.4",
"version": "1.4.4.1",
"recommended": false,
"official": true,
"description": "The Official Meteor Distribution"

View File

@@ -1038,7 +1038,7 @@ files.renameDirAlmostAtomically =
// ... and take out the trash.
if (cleanupGarbage) {
// We don't care about how long this takes, so we'll let it go async.
files.rm_recursive_async(garbageDir);
files.rm_recursive(garbageDir);
}
});