Skip to content

Commit

Permalink
2017-02-28, Version 7.7.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
italoacasas committed Mar 1, 2017
1 parent 1c7f221 commit 15e7028
Show file tree
Hide file tree
Showing 5 changed files with 190 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.6.0">7.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.7.0">7.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.6.0">7.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.5.0">7.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.4.0">7.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.3.0">7.3.0</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ options property is explicitly specified for a TLS or HTTPS client or server.

### `OPENSSL_CONF=file`
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

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

### `SSL_CERT_DIR=dir`
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

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

### `SSL_CERT_FILE=file`
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's file
Expand Down
6 changes: 3 additions & 3 deletions doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ var contentType = response.getHeader('content-type');

### response.getHeaderNames()
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

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

### response.getHeaders()
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

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

### response.hasHeader(name)
<!-- YAML
added: REPLACEME
added: v7.7.0
-->

* `name` {String}
Expand Down
Loading

0 comments on commit 15e7028

Please sign in to comment.