Skip to content

Commit abc13e5

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) [nodejs#11288](nodejs#11288) * http: new functions to access the headers for an outgoing HTTP message (Brian White) [nodejs#11562](nodejs#11562) * lib: deprecate node --debug at runtime (Josh Gavant) [nodejs#11275](nodejs#11275) * tls: new tls.TLSSocket() supports sec ctx options (Sam Roberts) [nodejs#11005](nodejs#11005) * url: adding URL.prototype.toJSON support (Michaël Zasso) [nodejs#11236](nodejs#11236) * doc: items in the API documentation may now have changelogs (Anna Henningsen) [nodejs#11489](nodejs#11489) * crypto: adding support for OPENSSL_CONF again (Sam Roberts) [nodejs#11006](nodejs#11006) * src: adding support for trace-event tracing (misterpoe) [nodejs#11106](nodejs#11106) PR-URL: nodejs#11553
1 parent 6123ed5 commit abc13e5

File tree

4 files changed

+189
-9
lines changed

4 files changed

+189
-9
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
@@ -151,14 +151,14 @@ of the event loop.
151151

152152
### `--trace-events-enabled`
153153
<!-- YAML
154-
added: REPLACEME
154+
added: v7.7.0
155155
-->
156156

157157
Enables the collection of trace event tracing information.
158158

159159
### `--trace-event-categories`
160160
<!-- YAML
161-
added: REPLACEME
161+
added: v7.7.0
162162
-->
163163

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

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

405405
Load an OpenSSL configuration file on startup. Among other uses, this can be
@@ -411,7 +411,7 @@ variable is ignored.
411411

412412
### `SSL_CERT_DIR=dir`
413413
<!-- YAML
414-
added: REPLACEME
414+
added: v7.7.0
415415
-->
416416

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

424424
### `SSL_CERT_FILE=file`
425425
<!-- YAML
426-
added: REPLACEME
426+
added: v7.7.0
427427
-->
428428

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