Skip to content

Commit 02e5ba7

Browse files
MylesBorinsMayaLekova
authored andcommitted
2018-02-22, Version 9.6.0 (Current)
Notable changes: * async_hooks: - deprecate unsafe emit{Before,After} (Ali Ijaz Sheikh) nodejs#18513 - rename PromiseWrap.parentId to PromiseWrap.isChainedPromise (Ali Ijaz Sheikh) nodejs#18633 * deps: - update node-inspect to 1.11.3 (Jan Krems) nodejs#18354 - ICU 60.2 bump (Steven R. Loomis) nodejs#17687 - Introduce ScriptOrModule and HostDefinedOptions to V8 (Jan Krems) nodejs#16889 * http: - add options to http.createServer() for `IncomingMessage` and `ServerReponse` (Peter Marton) nodejs#15752 * http2: - add http fallback options to .createServer (Peter Marton) nodejs#15752 * https: - Adds the remaining options from tls.createSecureContext() to the string generated by Agent#getName(). This allows https.request() to accept the options and generate unique sockets appropriately. (Jeff Principe) nodejs#16402 * inspector: - --inspect-brk for es modules (Guy Bedford) nodejs#18194 * lib: - allow process kill by signal number (Sam Roberts) nodejs#16944 * module: - enable dynamic import (Myles Borins) nodejs#18387 - dynamic import is now supported (Jan Krems) nodejs#15713 * napi: - add methods to open/close callback scope (Michael Dawson) nodejs#18089 * src: - allow --perf-(basic-)?prof in NODE_OPTIONS (Leko) nodejs#17600 * vm: - add support for es modules (Gus Caplan) nodejs#17560 PR-URL: nodejs#18902
1 parent 5ae2795 commit 02e5ba7

File tree

8 files changed

+252
-10
lines changed

8 files changed

+252
-10
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.5.0">9.5.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.6.0">9.6.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V9.md#9.5.0">9.5.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V9.md#9.4.0">9.4.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V9.md#9.3.0">9.3.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.2.1">9.2.1</a><br/>

doc/api/async_hooks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ class DBQuery extends AsyncResource {
673673

674674
#### `asyncResource.runInAsyncScope(fn[, thisArg, ...args])`
675675
<!-- YAML
676-
added: REPLACEME
676+
added: v9.6.0
677677
-->
678678

679679
* `fn` {Function} The function to call in the execution context of this async
@@ -688,7 +688,7 @@ then restore the original execution context.
688688

689689
#### `asyncResource.emitBefore()`
690690
<!-- YAML
691-
deprecated: REPLACEME
691+
deprecated: v9.6.0
692692
-->
693693
> Stability: 0 - Deprecated: Use [`asyncResource.runInAsyncScope()`][] instead.
694694
@@ -706,7 +706,7 @@ alternative.
706706

707707
#### `asyncResource.emitAfter()`
708708
<!-- YAML
709-
deprecated: REPLACEME
709+
deprecated: v9.6.0
710710
-->
711711
> Stability: 0 - Deprecated: Use [`asyncResource.runInAsyncScope()`][] instead.
712712

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ Found'`.
17161716
<!-- YAML
17171717
added: v0.1.13
17181718
changes:
1719-
- version: REPLACEME
1719+
- version: v9.6.0
17201720
pr-url: https://github.com/nodejs/node/pull/15752
17211721
description: The `options` argument is supported now.
17221722
-->

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@ changes:
16551655
pr-url: https://github.com/nodejs/node/pull/16676
16561656
description: Added the `maxHeaderListPairs` option with a default limit of
16571657
128 header pairs.
1658-
- version: REPLACEME
1658+
- version: v9.6.0
16591659
pr-url: https://github.com/nodejs/node/pull/15752
16601660
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
16611661
option.

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3431,7 +3431,7 @@ may be required when implementing custom async behavior that does not use
34313431

34323432
### *napi_open_callback_scope*
34333433
<!-- YAML
3434-
added: REPLACEME
3434+
added: v9.6.0
34353435
-->
34363436
```C
34373437
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
@@ -3456,7 +3456,7 @@ the required scope.
34563456

34573457
### *napi_close_callback_scope*
34583458
<!-- YAML
3459-
added: REPLACEME
3459+
added: v9.6.0
34603460
-->
34613461
```C
34623462
NAPI_EXTERN napi_status napi_close_callback_scope(napi_env env,

doc/api/perf_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ to mark specific significant moments in the Performance Timeline.
127127

128128
### performance.maxEntries
129129
<!-- YAML
130-
added: REPLACEME
130+
added: v9.6.0
131131
-->
132132

133133
Value: {number}

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ code**.
4545

4646
## Class: vm.Module
4747
<!-- YAML
48-
added: REPLACEME
48+
added: v9.6.0
4949
-->
5050

5151
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V9.md

+241
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)