Skip to content

Commit

Permalink
Revert node-progress back to 0.0.5 to deal with regression. Also bump…
Browse files Browse the repository at this point in the history
… http-proxy to 0.8.5, with the maxSockets regression fixed.
  • Loading branch information
n1mmy committed Nov 19, 2012
1 parent c1c1fd9 commit 5a66889
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions admin/generate-dev-bundle.sh
Expand Up @@ -3,7 +3,7 @@
set -e set -e
set -u set -u


BUNDLE_VERSION=0.2.7 BUNDLE_VERSION=0.2.8
UNAME=$(uname) UNAME=$(uname)
ARCH=$(uname -m) ARCH=$(uname -m)


Expand Down Expand Up @@ -90,17 +90,19 @@ npm install handlebars@1.0.7
npm install mongodb@1.1.11 npm install mongodb@1.1.11
npm install uglify-js@1.3.4 npm install uglify-js@1.3.4
npm install clean-css@0.8.2 npm install clean-css@0.8.2
npm install progress@0.1.0
npm install useragent@1.1.0 npm install useragent@1.1.0
npm install request@2.12.0 npm install request@2.12.0
npm install simplesmtp@0.1.25 npm install simplesmtp@0.1.25
npm install stream-buffers@0.2.3 npm install stream-buffers@0.2.3
npm install keypress@0.1.0 npm install keypress@0.1.0
npm install sockjs@0.3.4 npm install sockjs@0.3.4
npm install http-proxy@0.8.5

# progress 0.1.0 has a regression where it opens stdin and thus does not
# allow the node process to exit cleanly. See
# https://github.com/visionmedia/node-progress/issues/19
npm install progress@0.0.5


# 0.8.4 contains a regression w/ maxSockets support. it is fixed on
# master, and will hopefully be in 0.8.5.
npm install http-proxy@0.8.3
# pinned at older version. 0.1.16+ uses mimelib, not mimelib-noiconv # pinned at older version. 0.1.16+ uses mimelib, not mimelib-noiconv
# which make the dev bundle much bigger. We need a better solution. # which make the dev bundle much bigger. We need a better solution.
npm install mailcomposer@0.1.15 npm install mailcomposer@0.1.15
Expand Down
2 changes: 1 addition & 1 deletion meteor
@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash


BUNDLE_VERSION=0.2.7 BUNDLE_VERSION=0.2.8


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

0 comments on commit 5a66889

Please sign in to comment.