Yet another Node version bump: to 0.10.20. Fixes tls read bug.

This commit is contained in:
David Glasser
2013-10-02 10:34:49 -07:00
parent d0a6105272
commit 664339fdb3
6 changed files with 6 additions and 6 deletions

View File

@@ -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

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.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).

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.19
git checkout v0.10.20
./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.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" +

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.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');

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.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');