Bump node version from 0.10.20 to 0.10.21 for Meteor 0.6.6.2 release.

This commit is contained in:
Nick Martin
2013-10-20 22:02:25 -07:00
parent 958a547513
commit f4e21c0d37
7 changed files with 12 additions and 6 deletions

View File

@@ -1,10 +1,16 @@
## vNEXT
## v0.6.6.2
* Upgrade Node from 0.10.20 to 0.10.21 (security update).
## v0.6.6.1
* Fix file watching on OSX. Work around Node issue #6251 by not using
fs.watch. #1483
## v0.6.6
#### Security

View File

@@ -826,7 +826,7 @@ To get started, run
This command will generate a fully-contained Node.js application in the form of
a tarball. To run this application, you need to provide Node.js 0.10 and a
MongoDB server. (The current release of Meteor has been tested with Node
0.10.20.) You can then run the application by invoking node, specifying the HTTP
0.10.21.) You can then run the application by invoking node, specifying the HTTP
port for the application to listen on, and the MongoDB endpoint. If you don't
already have a MongoDB server, we can recommend our friends at
[MongoHQ](http://mongohq.com).

2
meteor
View File

@@ -1,6 +1,6 @@
#!/bin/bash
BUNDLE_VERSION=0.3.19
BUNDLE_VERSION=0.3.23
# OS Check. Put here because here is where we download the precompiled
# bundles that are arch specific.

View File

@@ -76,7 +76,7 @@ cd node
# When upgrading node versions, also update the values of MIN_NODE_VERSION at
# the top of tools/meteor.js and tools/server/boot.js, and the text in
# docs/client/concepts.html and the README in tools/bundler.js.
git checkout v0.10.20
git checkout v0.10.21
./configure --prefix="$DIR"
make -j4

View File

@@ -1443,7 +1443,7 @@ var writeSiteArchive = function (targets, outputPath, options) {
builder.write('README', { data: new Buffer(
"This is a Meteor application bundle. It has only one dependency:\n" +
"Node.js 0.10 (with the 'fibers' package). The current release of Meteor\n" +
"has been tested with Node 0.10.20. To run the application:\n" +
"has been tested with Node 0.10.21. To run the application:\n" +
"\n" +
" $ npm install fibers@1.0.1\n" +
" $ export MONGO_URL='mongodb://user:password@host:port/databasename'\n" +

View File

@@ -24,7 +24,7 @@ Fiber(function () {
var Future = require('fibers/future');
// This code is duplicated in app/server/server.js.
var MIN_NODE_VERSION = 'v0.10.20';
var MIN_NODE_VERSION = 'v0.10.21';
if (require('semver').lt(process.version, MIN_NODE_VERSION)) {
process.stderr.write(
'Meteor requires Node ' + MIN_NODE_VERSION + ' or later.\n');

View File

@@ -6,7 +6,7 @@ var _ = require('underscore');
var sourcemap_support = require('source-map-support');
// This code is duplicated in tools/server/server.js.
var MIN_NODE_VERSION = 'v0.10.20';
var MIN_NODE_VERSION = 'v0.10.21';
if (require('semver').lt(process.version, MIN_NODE_VERSION)) {
process.stderr.write(
'Meteor requires Node ' + MIN_NODE_VERSION + ' or later.\n');