Skip to content

Commit b7374d9

Browse files
jasnelladdaleax
authored andcommitted
2017-09-26, Node.js Version 8.6.0 (Current)
* **crypto** * Support for multiple ECDH curves. [#15206](nodejs/node#15206) * **dgram** * Added `setMulticastInterface()` API. [#7855](nodejs/node#7855) * Custom lookup functions are now supported. [#14560](nodejs/node#14560) * **n-api** * The command-line flag is no longer required to use N-API. [#14902](nodejs/node#14902) * **tls** * Docs-only deprecation of `parseCertString()`. [#14245](nodejs/node#14245) * **New Contributors** * Welcome Sebastiaan Deckers (@sebdeckers) as a new Collaborator! [#15354](nodejs/node#15354)
1 parent 875c4cc commit b7374d9

File tree

4 files changed

+175
-10
lines changed

4 files changed

+175
-10
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ release.
2727
</tr>
2828
<tr>
2929
<td valign="top">
30-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.5.0">8.5.0</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.6.0">8.6.0</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.5.0">8.5.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.4.0">8.4.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.3.0">8.3.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.2.1">8.2.1</a><br/>

doc/api/dgram.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ packets may be sent to a local interface's broadcast address.
388388

389389
### socket.setMulticastInterface(multicastInterface)
390390
<!-- YAML
391-
added: REPLACEME
391+
added: v8.6.0
392392
-->
393393

394394
* `multicastInterface` {String}
@@ -570,7 +570,7 @@ s.bind(1234, () => {
570570
<!-- YAML
571571
added: v0.11.13
572572
changes:
573-
- version: REPLACEME
573+
- version: v8.6.0
574574
pr-url: https://github.com/nodejs/node/pull/14560
575575
description: The `lookup` option is supported.
576576
- version: REPLACEME

doc/api/n-api.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2932,7 +2932,7 @@ call like the arguments and the `this` pointer from a given callback info.
29322932

29332933
### *napi_get_new_target*
29342934
<!-- YAML
2935-
added: REPLACEME
2935+
added: v8.6.0
29362936
-->
29372937
```C
29382938
napi_status napi_get_new_target(napi_env env,
@@ -3238,7 +3238,7 @@ callback invocation, even when it was cancelled.
32383238
<!-- YAML
32393239
added: v8.0.0
32403240
changes:
3241-
- version: REPLACEME
3241+
- version: v8.6.0
32423242
pr-url: https://github.com/nodejs/node/pull/14697
32433243
description: Added `async_resource` and `async_resource_name` parameters.
32443244
-->
@@ -3342,7 +3342,7 @@ necessary to ensure an async operation is properly tracked by the runtime.
33423342

33433343
### *napi_async_init**
33443344
<!-- YAML
3345-
added: REPLACEME
3345+
added: v8.6.0
33463346
-->
33473347
```C
33483348
napi_status napi_async_init(napi_env env,
@@ -3363,7 +3363,7 @@ Returns `napi_ok` if the API succeeded.
33633363

33643364
### *napi_async_destroy**
33653365
<!-- YAML
3366-
added: REPLACEME
3366+
added: v8.6.0
33673367
-->
33683368
```C
33693369
napi_status napi_async_destroy(napi_env env,
@@ -3379,7 +3379,7 @@ Returns `napi_ok` if the API succeeded.
33793379
<!-- YAML
33803380
added: v8.0.0
33813381
changes:
3382-
- version: REPLACEME
3382+
- version: v8.6.0
33833383
description: Added `async_context` parameter.
33843384
-->
33853385
```C

0 commit comments

Comments
 (0)