Skip to content

Commit 488947b

Browse files
authoredFeb 14, 2019
Merge branch 'master' into fixToughCookieDep
2 parents 1457338 + 131abd7 commit 488947b

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed
 

‎.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ matrix:
1313
env: V_REQUEST=latest
1414
- node_js: "6"
1515
env: V_REQUEST=latest
16+
- node_js: "8"
17+
env: V_REQUEST=latest
18+
- node_js: "10"
19+
env: V_REQUEST=latest
1620

1721
before_install:
1822
- npm install tough-cookie

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ Consider Request-Promise being:
277277
- Plus some methods on a request call object:
278278
- `rp(...).then(...)` or e.g. `rp.post(...).then(...)` which turn `rp(...)` and `rp.post(...)` into promises
279279
- `rp(...).catch(...)` or e.g. `rp.del(...).catch(...)` which is the same method as provided by Bluebird promises
280+
- Errors that the `request` library would pass to the callback are wrapped by `request-promise` and then passed to the catch handler. See [code example](https://github.com/request/request-promise#thenonfulfilled-onrejected) below.
280281
- `rp(...).finally(...)` or e.g. `rp.put(...).finally(...)` which is the same method as provided by Bluebird promises
281282
- `rp(...).cancel()` or e.g. `rp.get(...).cancel()` which cancels the request
282283
- `rp(...).promise()` or e.g. `rp.head(...).promise()` which returns the underlying promise so you can access the full [Bluebird API](https://github.com/petkaantonov/bluebird/blob/master/API.md)

‎lib/rp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ try {
1818
/* istanbul ignore next */
1919
var EOL = require('os').EOL;
2020
/* istanbul ignore next */
21-
console.error(EOL + '###' + EOL + '### The "request" library is not installed automatically anymore.' + EOL + '### But required by "request-promise".' + EOL + '###' + EOL + '### npm install request --save' + EOL + '###' + EOL);
21+
console.error(EOL + '###' + EOL + '### The "request" library is not installed automatically anymore.' + EOL + '### But is a dependency of "request-promise".' + EOL + '### Please install it with:' + EOL + '### npm install request --save' + EOL + '###' + EOL);
2222
/* istanbul ignore next */
2323
throw err;
2424
}

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
"dependencies": {
3636
"request-promise-core": "1.1.1",
3737
"bluebird": "^3.5.0",
38-
"stealthy-require": "^1.1.0",
39-
"tough-cookie": "^2.5.0"
38+
"stealthy-require": "^1.1.1",
39+
"tough-cookie": "~2.3.3"
4040
},
4141
"peerDependencies": {
4242
"request": "^2.34"

0 commit comments

Comments
 (0)
Please sign in to comment.