Skip to content

Commit

Permalink
Upgrade request to 2.47.0 from 2.33.0
Browse files Browse the repository at this point in the history
Looks like it now auto-detects $HTTP_PROXY so we could drop that code
from http-helpers (but not from the faye stuff).
  • Loading branch information
glasser committed Oct 30, 2014
1 parent d4feca7 commit 92b1bf1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/localmarket/packages/request/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion packages/http/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-dev-bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]

Expand Down

0 comments on commit 92b1bf1

Please sign in to comment.