Skip to content

Commit cb18511

Browse files
committed
2018-02-22, Version 9.6.0 (Current)
Notable changes: * async_hooks: - deprecate unsafe emit{Before,After} (Ali Ijaz Sheikh) #18513 - rename PromiseWrap.parentId to PromiseWrap.isChainedPromise (Ali Ijaz Sheikh) #18633 * deps: - update node-inspect to 1.11.3 (Jan Krems) #18354 - ICU 60.2 bump (Steven R. Loomis) #17687 - Introduce ScriptOrModule and HostDefinedOptions to V8 (Jan Krems) #16889 * http: - add options to http.createServer() for `IncomingMessage` and `ServerReponse` (Peter Marton) #15752 * http2: - add http fallback options to .createServer (Peter Marton) #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) #16402 * inspector: - --inspect-brk for es modules (Guy Bedford) #18194 * lib: - allow process kill by signal number (Sam Roberts) #16944 * module: - enable dynamic import (Myles Borins) #18387 - dynamic import is now supported (Jan Krems) #15713 * napi: - add methods to open/close callback scope (Michael Dawson) #18089 * src: - allow --perf-(basic-)?prof in NODE_OPTIONS (Leko) #17600 * vm: - add support for es modules (Gus Caplan) #17560 PR-URL: #18902
1 parent 6edf952 commit cb18511

9 files changed

+255
-13
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
@@ -1667,7 +1667,7 @@ Found'`.
16671667
<!-- YAML
16681668
added: v0.1.13
16691669
changes:
1670-
- version: REPLACEME
1670+
- version: v9.6.0
16711671
pr-url: https://github.com/nodejs/node/pull/15752
16721672
description: The `options` argument is supported now.
16731673
-->

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ changes:
16621662
pr-url: https://github.com/nodejs/node/pull/16676
16631663
description: Added the `maxHeaderListPairs` option with a default limit of
16641664
128 header pairs.
1665-
- version: REPLACEME
1665+
- version: v9.6.0
16661666
pr-url: https://github.com/nodejs/node/pull/15752
16671667
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
16681668
option.

doc/api/n-api.md

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

34343434
### *napi_open_callback_scope*
34353435
<!-- YAML
3436-
added: REPLACEME
3436+
added: v9.6.0
34373437
-->
34383438
```C
34393439
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
@@ -3458,7 +3458,7 @@ the required scope.
34583458

34593459
### *napi_close_callback_scope*
34603460
<!-- YAML
3461-
added: REPLACEME
3461+
added: v9.6.0
34623462
-->
34633463
```C
34643464
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 @@ console.log(x); // 1; y is not defined.
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.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 9
26-
#define NODE_MINOR_VERSION 5
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 6
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)