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:
authorItalo A. Casas <me@italoacasas.com>2017-02-28 06:49:09 +0300
committerItalo A. Casas <me@italoacasas.com>2017-03-01 05:58:21 +0300
commitabc13e56b6ceb3926e106fe620af708d14993969 (patch)
tree1cfa61f746543059f158093e9ea35d4a134eaf11 /doc/api/http.md
parent6123ed5b25bfedc3054dbaf9f3039e2585b799f8 (diff)
2017-02-28, Version 7.7.0 (Current)
Notables changes: * child_process: spawnSync() exit code now is null when the child is killed via signal (cjihrig) [#11288](https://github.com/nodejs/node/pull/11288) * http: new functions to access the headers for an outgoing HTTP message (Brian White) [#11562](https://github.com/nodejs/node/pull/11562) * lib: deprecate node --debug at runtime (Josh Gavant) [#11275](https://github.com/nodejs/node/pull/11275) * tls: new tls.TLSSocket() supports sec ctx options (Sam Roberts) [#11005](https://github.com/nodejs/node/pull/11005) * url: adding URL.prototype.toJSON support (Michaƫl Zasso) [#11236](https://github.com/nodejs/node/pull/11236) * doc: items in the API documentation may now have changelogs (Anna Henningsen) [#11489](https://github.com/nodejs/node/pull/11489) * crypto: adding support for OPENSSL_CONF again (Sam Roberts) [#11006](https://github.com/nodejs/node/pull/11006) * src: adding support for trace-event tracing (misterpoe) [#11106](https://github.com/nodejs/node/pull/11106) PR-URL: https://github.com/nodejs/node/pull/11553
Diffstat (limited to 'doc/api/http.md')
-rw-r--r--doc/api/http.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index 9698479c6f6..1b766c3eea9 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -950,7 +950,7 @@ var contentType = response.getHeader('content-type');
### response.getHeaderNames()
<!-- YAML
-added: REPLACEME
+added: v7.7.0
-->
* Returns: {Array}
@@ -970,7 +970,7 @@ var headerNames = response.getHeaderNames();
### response.getHeaders()
<!-- YAML
-added: REPLACEME
+added: v7.7.0
-->
* Returns: {Object}
@@ -993,7 +993,7 @@ var headers = response.getHeaders();
### response.hasHeader(name)
<!-- YAML
-added: REPLACEME
+added: v7.7.0
-->
* `name` {String}