Skip to content

Commit a7ffa8d

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) * crypto: adding support for OPENSSL_CONF again (Sam Roberts) [#11006](#11006) * src: adding support for trace-event tracing (misterpoe) [#11106](#11106) PR-URL: #11553
1 parent bd4ccc8 commit a7ffa8d

File tree

5 files changed

+192
-12
lines changed

5 files changed

+192
-12
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ of the event loop.
141141

142142
### `--trace-events-enabled`
143143
<!-- YAML
144-
added: REPLACEME
144+
added: v7.7.0
145145
-->
146146

147147
Enables the collection of trace event tracing information.
148148

149149
### `--trace-event-categories`
150150
<!-- YAML
151-
added: REPLACEME
151+
added: v7.7.0
152152
-->
153153

154154
A comma separated list of categories that should be traced when trace event
@@ -389,7 +389,7 @@ options property is explicitly specified for a TLS or HTTPS client or server.
389389

390390
### `OPENSSL_CONF=file`
391391
<!-- YAML
392-
added: REPLACEME
392+
added: v7.7.0
393393
-->
394394

395395
Load an OpenSSL configuration file on startup. Among other uses, this can be
@@ -401,7 +401,7 @@ variable is ignored.
401401

402402
### `SSL_CERT_DIR=dir`
403403
<!-- YAML
404-
added: REPLACEME
404+
added: v7.7.0
405405
-->
406406

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

414414
### `SSL_CERT_FILE=file`
415415
<!-- YAML
416-
added: REPLACEME
416+
added: v7.7.0
417417
-->
418418

419419
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)