Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a0ff031

Browse filesBrowse files
committed
2018-02-21, 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 2bec889 commit a0ff031
Copy full SHA for a0ff031

9 files changed

+254-12Lines changed: 254 additions & 12 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎CHANGELOG.md‎

Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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/>
Collapse file

‎doc/api/async_hooks.md‎

Copy file name to clipboardExpand all lines: doc/api/async_hooks.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/api/http.md‎

Copy file name to clipboardExpand all lines: doc/api/http.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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
-->
Collapse file

‎doc/api/http2.md‎

Copy file name to clipboardExpand all lines: doc/api/http2.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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.
Collapse file

‎doc/api/n-api.md‎

Copy file name to clipboardExpand all lines: doc/api/n-api.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
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,
Collapse file

‎doc/api/perf_hooks.md‎

Copy file name to clipboardExpand all lines: doc/api/perf_hooks.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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}
Collapse file

‎doc/api/vm.md‎

Copy file name to clipboardExpand all lines: doc/api/vm.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎doc/changelogs/CHANGELOG_V9.md‎

Copy file name to clipboardExpand all lines: doc/changelogs/CHANGELOG_V9.md
+241Lines changed: 241 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Large diffs are not rendered by default.
Collapse file

‎src/node_version.h‎

Copy file name to clipboardExpand all lines: src/node_version.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
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 ""

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.