Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-06-05 23:26:03 +0300
committerRod Vagg <rod@vagg.org>2017-06-08 12:32:08 +0300
commitf6fc46e03674ab1896792b7363ecac0665b5e0c5 (patch)
tree3773bc643b56b2ccba0730aef88a3564bae5567e /doc/api/http.md
parent968596ec77e5d39c08b643acacb7b2b372a36e39 (diff)
2017-05-07, Version 8.1.0 (Current)v8.1.0
* **Async Hooks** * When one `Promise` leads to the creation of a new `Promise`, the parent `Promise` will be identified as the trigger [[`135f4e6643`](https://github.com/nodejs/node/commit/135f4e6643)] [#13367](https://github.com/nodejs/node/pull/13367). * **Dependencies** * libuv has been updated to 1.12.0 [[`968596ec77`](https://github.com/nodejs/node/commit/968596ec77)] [#13306](https://github.com/nodejs/node/pull/13306). * npm has been updated to 5.0.3 [[`ffa7debd7a`](https://github.com/nodejs/node/commit/ffa7debd7a)] [#13487](https://github.com/nodejs/node/pull/13487). * **File system** * The `fs.exists()` function now works correctly with `util.promisify()` [[`6e0eccd7a1`](https://github.com/nodejs/node/commit/6e0eccd7a1)] [#13316](https://github.com/nodejs/node/pull/13316). * fs.Stats times are now also available as numbers [[`c756efb25a`](https://github.com/nodejs/node/commit/c756efb25a)] [#13173](https://github.com/nodejs/node/pull/13173). * **Inspector** * It is now possible to bind to a random port using `--inspect=0` [[`cc6ec2fb27`](https://github.com/nodejs/node/commit/cc6ec2fb27)] [#5025](https://github.com/nodejs/node/pull/5025). * **Zlib** * A regression in the Zlib module that made it impossible to properly subclasses `zlib.Deflate` and other Zlib classes has been fixed. [[`6aeb555cc4`](https://github.com/nodejs/node/commit/6aeb555cc4)] [#13374](https://github.com/nodejs/node/pull/13374).
Diffstat (limited to 'doc/api/http.md')
-rw-r--r--doc/api/http.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index 8e235b61734..b19ffb6d8e1 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -159,7 +159,7 @@ socket/stream from this function, or by passing the socket/stream to `callback`.
### agent.keepSocketAlive(socket)
<!-- YAML
-added: REPLACEME
+added: v8.1.0
-->
* `socket` {net.Socket}
@@ -178,7 +178,7 @@ it for use with the next request.
### agent.reuseSocket(socket, request)
<!-- YAML
-added: REPLACEME
+added: v8.1.0
-->
* `socket` {net.Socket}