Skip to content

Commit 98b2885

Browse files
committed
Revert "Upgrade Node to 0.10.30. Fix npm bug again."
This reverts commit 56ff54b.
1 parent aa8e237 commit 98b2885

7 files changed

Lines changed: 7 additions & 9 deletions

File tree

History.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
failure on the server. (This matches the behavior described in our docs)
1111

1212
* Upgraded dependencies:
13-
- Node: 0.10.30 (from 0.10.29)
1413
- less: 1.7.4 (from 1.7.1)
1514

1615
## v0.8.3

docs/client/concepts.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ <h3 class="nosection">Running on your own infrastructure</h3>
739739
This command will generate a fully-contained Node.js application in the form of
740740
a tarball. To run this application, you need to provide Node.js 0.10 and a
741741
MongoDB server. (The current release of Meteor has been tested with Node
742-
0.10.30; older versions contain a serious bug that can cause production servers
742+
0.10.29; older versions contain a serious bug that can cause production servers
743743
to stall.) You can then run the application by invoking node, specifying the
744744
HTTP port for the application to listen on, and the MongoDB endpoint. If
745745
you don't already have a MongoDB server, we can recommend our friends at

meteor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
BUNDLE_VERSION=0.3.47 # warning! 0.3.46 used on cordova-hcp branch
3+
BUNDLE_VERSION=0.3.44 # warning! 0.3.46 used on cordova-hcp branch
44

55
# OS Check. Put here because here is where we download the precompiled
66
# bundles that are arch specific.

scripts/generate-dev-bundle.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,12 @@ umask 022
7171
mkdir build
7272
cd build
7373

74-
# For now, use our fork with https://github.com/npm/npm/pull/5821/files
75-
git clone https://github.com/meteor/node.git
74+
git clone https://github.com/joyent/node.git
7675
cd node
7776
# When upgrading node versions, also update the values of MIN_NODE_VERSION at
7877
# the top of tools/main.js and tools/server/boot.js, and the text in
7978
# docs/client/concepts.html and the README in tools/bundler.js.
80-
git checkout v0.10.30-with-npm-5821
79+
git checkout v0.10.29
8180

8281
./configure --prefix="$DIR"
8382
make -j4

tools/bundler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ var writeSiteArchive = function (targets, outputPath, options) {
15461546

15471547
builder.write('README', { data: new Buffer(
15481548
"This is a Meteor application bundle. It has only one external dependency:\n" +
1549-
"Node.js 0.10.30 or newer. To run the application:\n" +
1549+
"Node.js 0.10.29 or newer. To run the application:\n" +
15501550
"\n" +
15511551
" $ (cd programs/server && npm install)\n" +
15521552
" $ export MONGO_URL='mongodb://user:password@host:port/databasename'\n" +

tools/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ Fiber(function () {
411411

412412
// Check required Node version.
413413
// This code is duplicated in tools/server/boot.js.
414-
var MIN_NODE_VERSION = 'v0.10.30';
414+
var MIN_NODE_VERSION = 'v0.10.29';
415415
if (require('semver').lt(process.version, MIN_NODE_VERSION)) {
416416
process.stderr.write(
417417
'Meteor requires Node ' + MIN_NODE_VERSION + ' or later.\n');

tools/server/boot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var _ = require('underscore');
66
var sourcemap_support = require('source-map-support');
77

88
// This code is duplicated in tools/main.js.
9-
var MIN_NODE_VERSION = 'v0.10.30';
9+
var MIN_NODE_VERSION = 'v0.10.29';
1010

1111
if (require('semver').lt(process.version, MIN_NODE_VERSION)) {
1212
process.stderr.write(

0 commit comments

Comments
 (0)