Skip to content

Commit

Permalink
2017-10-11, Node.js Version 8.7.0 (Current)
Browse files Browse the repository at this point in the history
Notable Changes:

* deps:
  * update npm to 5.4.2
    #15600
  * upgrade libuv to 1.15.0
    #15745
  * update V8 to 6.1.534.42
    #15393
* dgram:
  * support for setting dgram socket buffer size
    #13623
* fs:
  * add support O_DSYNC file open constant
    #15451
* util:
  * deprecate obj.inspect for custom inspection
    #15631
* tools, build:
  * there is a fancy new macOS installer
    #15179
* Added new collaborator
  * bmeurer - Benedikt Meurer - https://github.com/bmeurer
  * kfarnung - Kyle Farnung - https://github.com/kfarnung

PR-URL: #15762
  • Loading branch information
MylesBorins committed Oct 11, 2017
1 parent 6f42b68 commit dc4f1b9
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.6.0">8.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.7.0">8.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.6.0">8.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.5.0">8.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.4.0">8.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.3.0">8.3.0</a><br/>
Expand Down
10 changes: 5 additions & 5 deletions doc/api/dgram.md
Expand Up @@ -228,14 +228,14 @@ drop membership on all valid interfaces.

### socket.getRecvBufferSize(size)
<!-- YAML
added: REPLACEME
added: v8.7.0
-->

* Returns {number} the `SO_RCVBUF` socket receive buffer size in bytes.

### socket.getSendBufferSize(size)
<!-- YAML
added: REPLACEME
added: v8.7.0
-->

* Returns {number} the `SO_SNDBUF` socket send buffer size in bytes.
Expand Down Expand Up @@ -491,7 +491,7 @@ between 0 and 255. The default on most systems is `1` but can vary.

### socket.setRecvBufferSize(size)
<!-- YAML
added: REPLACEME
added: v8.7.0
-->

* `size` {number} Integer
Expand All @@ -501,7 +501,7 @@ in bytes.

### socket.setSendBufferSize(size)
<!-- YAML
added: REPLACEME
added: v8.7.0
-->

* `size` {number} Integer
Expand Down Expand Up @@ -572,7 +572,7 @@ changes:
- version: v8.6.0
pr-url: https://github.com/nodejs/node/pull/14560
description: The `lookup` option is supported.
- version: REPLACEME
- version: v8.7.0
pr-url: https://github.com/nodejs/node/pull/13623
description: The `recvBufferSize` and `sendBufferSize` options are
supported now.
Expand Down

0 comments on commit dc4f1b9

Please sign in to comment.