Skip to content

Commit

Permalink
2017-09-26, Node.js Version 8.6.0 (Current)
Browse files Browse the repository at this point in the history
* **crypto**
  * Support for multiple ECDH curves. [#15206](#15206)
* **dgram**
  * Added `setMulticastInterface()` API. [#7855](#7855)
  * Custom lookup functions are now supported. [#14560](#14560)
* **n-api**
  * The command-line flag is no longer required to use N-API. [#14902](#14902)
* **tls**
  * Docs-only deprecation of `parseCertString()`. [#14245](#14245)
* **New Contributors**
  * Welcome Sebastiaan Deckers (@sebdeckers) as a new Collaborator! [#15354](#15354)
  • Loading branch information
jasnell committed Sep 26, 2017
1 parent 8b90250 commit 05e4c1d
Show file tree
Hide file tree
Showing 4 changed files with 175 additions and 10 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.5.0">8.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.6.0">8.6.0</a></b><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/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.2.1">8.2.1</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/dgram.md
Expand Up @@ -388,7 +388,7 @@ packets may be sent to a local interface's broadcast address.

### socket.setMulticastInterface(multicastInterface)
<!-- YAML
added: REPLACEME
added: v8.6.0
-->

* `multicastInterface` {String}
Expand Down Expand Up @@ -570,7 +570,7 @@ s.bind(1234, () => {
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v8.6.0
pr-url: https://github.com/nodejs/node/pull/14560
description: The `lookup` option is supported.
- version: REPLACEME
Expand Down
10 changes: 5 additions & 5 deletions doc/api/n-api.md
Expand Up @@ -2932,7 +2932,7 @@ call like the arguments and the `this` pointer from a given callback info.
### *napi_get_new_target*
<!-- YAML
added: REPLACEME
added: v8.6.0
-->
```C
napi_status napi_get_new_target(napi_env env,
Expand Down Expand Up @@ -3238,7 +3238,7 @@ callback invocation, even when it was cancelled.
<!-- YAML
added: v8.0.0
changes:
- version: REPLACEME
- version: v8.6.0
pr-url: https://github.com/nodejs/node/pull/14697
description: Added `async_resource` and `async_resource_name` parameters.
-->
Expand Down Expand Up @@ -3342,7 +3342,7 @@ necessary to ensure an async operation is properly tracked by the runtime.

### *napi_async_init**
<!-- YAML
added: REPLACEME
added: v8.6.0
-->
```C
napi_status napi_async_init(napi_env env,
Expand All @@ -3363,7 +3363,7 @@ Returns `napi_ok` if the API succeeded.
### *napi_async_destroy**
<!-- YAML
added: REPLACEME
added: v8.6.0
-->
```C
napi_status napi_async_destroy(napi_env env,
Expand All @@ -3379,7 +3379,7 @@ Returns `napi_ok` if the API succeeded.
<!-- YAML
added: v8.0.0
changes:
- version: REPLACEME
- version: v8.6.0
description: Added `async_context` parameter.
-->
```C
Expand Down

0 comments on commit 05e4c1d

Please sign in to comment.