Skip to content

Commit

Permalink
Version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsarm committed Mar 27, 2018
1 parent 7f3c33a commit f3355f9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
reqclient CHANGELOG
===================

2.4.0
-----

* Added `forever` option to setup the `forever-agent`
(to keep connections alive).
* Added `gzip` option to optimize network usage and speed up requests.
* Added `followRedirect`, `followAllRedirects` and `maxRedirects`
options to follow HTTP 3xx responses as redirects
* Added `requestOptions` option, that allows to pass options
to `request` module that are not covered by reqclient's options,
like `cert`, `key`, `proxy`, `pool`, etc.
* Improved the doc, added `async` / `await` examples.
* Updated dependencies (it's not necessary to update
dependencies in projects with oldest versions).

2.3.0
-----

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reqclient",
"version": "2.3.0",
"version": "2.4.0",
"description": "reqclient uses 'request' to make requests, but adds 'Promise' supports, and many useful features like curl logging and OAuth2 integration.",
"author": "Mariano Ruiz <[email protected]> (http://www.mrdev.com.ar)",
"contributors": [
Expand All @@ -22,7 +22,7 @@
"request": ""
},
"devDependencies": {
"node-cache": "^3.2.1",
"winston": "^2.3.1"
"node-cache": "^4.1.1",
"winston": "^2.4.1"
}
}

0 comments on commit f3355f9

Please sign in to comment.