From 664339fdb342a5620af407fc480fd5dcb4dd2706 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 2 Oct 2013 10:34:49 -0700 Subject: [PATCH] Yet another Node version bump: to 0.10.20. Fixes tls read bug. --- History.md | 2 +- docs/client/concepts.html | 2 +- scripts/generate-dev-bundle.sh | 2 +- tools/bundler.js | 2 +- tools/meteor.js | 2 +- tools/server/boot.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/History.md b/History.md index 38d13f0f48..ec7118a0dc 100644 --- a/History.md +++ b/History.md @@ -108,7 +108,7 @@ `USE_JSESSIONID` environment variable to enable. * Upgraded dependencies: - * Node from 0.8.24 to 0.10.19 + * Node from 0.8.24 to 0.10.20 * MongoDB from 2.4.4 to 2.4.6 * http-proxy from 0.10.1 to a pre-release of 1.0.0 * stylus from 0.30.1 to 0.37.0 diff --git a/docs/client/concepts.html b/docs/client/concepts.html index 67e13a9852..375bf90e9c 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -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.19.) You can then run the application by invoking node, specifying the HTTP +0.10.20.) 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). diff --git a/scripts/generate-dev-bundle.sh b/scripts/generate-dev-bundle.sh index 86bea06977..fd22347b47 100755 --- a/scripts/generate-dev-bundle.sh +++ b/scripts/generate-dev-bundle.sh @@ -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.19 +git checkout v0.10.20 ./configure --prefix="$DIR" make -j4 diff --git a/tools/bundler.js b/tools/bundler.js index 22527a7cca..30b0459d5b 100644 --- a/tools/bundler.js +++ b/tools/bundler.js @@ -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.19. To run the application:\n" + +"has been tested with Node 0.10.20. To run the application:\n" + "\n" + " $ npm install fibers@1.0.1\n" + " $ export MONGO_URL='mongodb://user:password@host:port/databasename'\n" + diff --git a/tools/meteor.js b/tools/meteor.js index db2d770aa7..7b24fb4167 100644 --- a/tools/meteor.js +++ b/tools/meteor.js @@ -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.19'; + var MIN_NODE_VERSION = 'v0.10.20'; if (require('semver').lt(process.version, MIN_NODE_VERSION)) { process.stderr.write( 'Meteor requires Node ' + MIN_NODE_VERSION + ' or later.\n'); diff --git a/tools/server/boot.js b/tools/server/boot.js index 091aee0ff1..32859e084b 100644 --- a/tools/server/boot.js +++ b/tools/server/boot.js @@ -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.19'; +var MIN_NODE_VERSION = 'v0.10.20'; if (require('semver').lt(process.version, MIN_NODE_VERSION)) { process.stderr.write( 'Meteor requires Node ' + MIN_NODE_VERSION + ' or later.\n');