From 92b1bf1369e1487719ceea41d697e893bf16316a Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 30 Oct 2014 12:05:31 -0700 Subject: [PATCH] Upgrade request to 2.47.0 from 2.33.0 Looks like it now auto-detects $HTTP_PROXY so we could drop that code from http-helpers (but not from the faye stuff). --- History.md | 3 ++- examples/localmarket/packages/request/package.js | 2 +- packages/http/package.js | 2 +- scripts/generate-dev-bundle.sh | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/History.md b/History.md index ea33cc69d1..89da24ce06 100644 --- a/History.md +++ b/History.md @@ -7,7 +7,8 @@ - node: 0.10.33 (from 0.10.29) - source-map-support: 0.2.8 (from 0.2.5) - semver: 4.1.0 (from 2.2.1) - + - request: 2.47.0 (from 2.33.0) + ## v1.0 ### New Features diff --git a/examples/localmarket/packages/request/package.js b/examples/localmarket/packages/request/package.js index 524aa39f69..e27e8ef8fa 100644 --- a/examples/localmarket/packages/request/package.js +++ b/examples/localmarket/packages/request/package.js @@ -3,7 +3,7 @@ Package.describe({ version: '0.0.0' }); -Npm.depends({request: "2.33.0"}); +Npm.depends({request: "2.47.0"}); Package.on_use(function (api) { api.add_files('request-server.js', 'server'); diff --git a/packages/http/package.js b/packages/http/package.js index b6b93b8ae1..88693ba629 100644 --- a/packages/http/package.js +++ b/packages/http/package.js @@ -3,7 +3,7 @@ Package.describe({ version: '1.0.8' }); -Npm.depends({request: "2.33.0"}); +Npm.depends({request: "2.47.0"}); Package.on_use(function (api) { api.use('underscore'); diff --git a/scripts/generate-dev-bundle.sh b/scripts/generate-dev-bundle.sh index 056348afc8..48ae5bcfcf 100755 --- a/scripts/generate-dev-bundle.sh +++ b/scripts/generate-dev-bundle.sh @@ -164,7 +164,7 @@ mv ../$FIBERS_ARCH . # Now, install the rest of the npm modules, which are only used by the 'meteor' # tool (and not by the bundled app boot.js script). cd "${DIR}/lib" -npm install request@2.33.0 +npm install request@2.47.0 npm install fstream@1.0.2