mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'release-1.4.1.2' into release-1.4.2
This commit is contained in:
11
History.md
11
History.md
@@ -1,14 +1,10 @@
|
||||
## v1.4.2
|
||||
|
||||
* Node has been updated to version 4.6.0.
|
||||
|
||||
* This release implements a number of rebuild performance optimizations.
|
||||
As you edit files in development, the server should restart and rebuild
|
||||
much more quickly, especially if you have many `node_modules` files.
|
||||
See https://github.com/meteor/meteor/pull/7668 for more details.
|
||||
|
||||
* The `npm` npm package has been updated to 3.10.8.
|
||||
|
||||
* The `node-pre-gyp` npm package has been updated to 0.6.30.
|
||||
|
||||
* The `fibers` npm package has been updated to 1.0.14.
|
||||
@@ -71,6 +67,13 @@
|
||||
* Running Meteor with root privileges now displays a warning.
|
||||
[#7821](https://github.com/meteor/meteor/pull/7821)
|
||||
|
||||
## v1.4.1.2
|
||||
|
||||
* Node has been upgraded to version 4.6.0, a recommended security release:
|
||||
https://nodejs.org/en/blog/release/v4.6.0/
|
||||
|
||||
* `npm` has been upgraded to version 3.10.8.
|
||||
|
||||
## v1.4.1.1
|
||||
|
||||
* Update the version of our Node MongoDB driver to 2.2.8 to fix a bug in
|
||||
|
||||
2
meteor
2
meteor
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
BUNDLE_VERSION=4.2.13
|
||||
BUNDLE_VERSION=4.3.1
|
||||
|
||||
# OS Check. Put here because here is where we download the precompiled
|
||||
# bundles that are arch specific.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
name: 'jshint',
|
||||
version: '1.1.6',
|
||||
version: '1.1.6_1',
|
||||
summary: 'Lint all your JavaScript files with JSHint.',
|
||||
documentation: 'README.md'
|
||||
});
|
||||
|
||||
@@ -21,7 +21,7 @@ Npm.strip({
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
api.use('npm-mongo@1.5.48', 'server');
|
||||
api.use('npm-mongo@1.5.48-1-rc.0', 'server');
|
||||
api.use('allow-deny');
|
||||
|
||||
api.use([
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
name: 'standard-minifier-js',
|
||||
version: '1.2.0',
|
||||
version: '1.2.0_1',
|
||||
summary: 'Standard javascript minifiers used with Meteor apps by default.',
|
||||
documentation: 'README.md'
|
||||
});
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "1.4.1.1",
|
||||
"version": "1.4.1.2",
|
||||
"recommended": false,
|
||||
"official": true,
|
||||
"description": "The Official Meteor Distribution",
|
||||
"patchFrom": ["1.4.1"]
|
||||
"patchFrom": ["1.4.1.1"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user