Skip to content

Commit b32ca4f

Browse files
committed
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](#11288) * http: new functions to access the headers for an outgoing HTTP message (Brian White) [#11562](#11562) * lib: deprecate node --debug at runtime (Josh Gavant) [#11275](#11275) * tls: new tls.TLSSocket() supports sec ctx options (Sam Roberts) [#11005](#11005) * url: adding URL.prototype.toJSON support (Michaël Zasso) [#11236](#11236) * doc: items in the API documentation may now have changelogs (Anna Henningsen) [#11489](#11489) PR-URL: #11553
1 parent 3e8d43d commit b32ca4f

File tree

5 files changed

+184
-10
lines changed

5 files changed

+184
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.6.0">7.6.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.7.0">7.7.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V7.md#7.6.0">7.6.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V7.md#7.5.0">7.5.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V7.md#7.4.0">7.4.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V7.md#7.3.0">7.3.0</a><br/>

doc/api/cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ options property is explicitly specified for a TLS or HTTPS client or server.
375375

376376
### `OPENSSL_CONF=file`
377377
<!-- YAML
378-
added: REPLACEME
378+
added: v7.7.0
379379
-->
380380

381381
Load an OpenSSL configuration file on startup. Among other uses, this can be
@@ -387,7 +387,7 @@ variable is ignored.
387387

388388
### `SSL_CERT_DIR=dir`
389389
<!-- YAML
390-
added: REPLACEME
390+
added: v7.7.0
391391
-->
392392

393393
If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's directory
@@ -399,7 +399,7 @@ OpenSSL, it may cause them to trust the same CAs as node.
399399

400400
### `SSL_CERT_FILE=file`
401401
<!-- YAML
402-
added: REPLACEME
402+
added: v7.7.0
403403
-->
404404

405405
If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's file

doc/api/http.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ var contentType = response.getHeader('content-type');
950950

951951
### response.getHeaderNames()
952952
<!-- YAML
953-
added: REPLACEME
953+
added: v7.7.0
954954
-->
955955

956956
* Returns: {Array}
@@ -970,7 +970,7 @@ var headerNames = response.getHeaderNames();
970970

971971
### response.getHeaders()
972972
<!-- YAML
973-
added: REPLACEME
973+
added: v7.7.0
974974
-->
975975

976976
* Returns: {Object}
@@ -993,7 +993,7 @@ var headers = response.getHeaders();
993993

994994
### response.hasHeader(name)
995995
<!-- YAML
996-
added: REPLACEME
996+
added: v7.7.0
997997
-->
998998

999999
* `name` {String}

0 commit comments

Comments
 (0)