Commit cb18511 1 parent 6edf952 commit cb18511 Copy full SHA for cb18511
File tree 9 files changed +255
-13
lines changed
9 files changed +255
-13
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ release.
29
29
</tr >
30
30
<tr >
31
31
<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 />
33
34
<a href =" doc/changelogs/CHANGELOG_V9.md#9.4.0 " >9.4.0</a ><br />
34
35
<a href =" doc/changelogs/CHANGELOG_V9.md#9.3.0 " >9.3.0</a ><br />
35
36
<a href =" doc/changelogs/CHANGELOG_V9.md#9.2.1 " >9.2.1</a ><br />
Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ class DBQuery extends AsyncResource {
673
673
674
674
#### ` asyncResource.runInAsyncScope(fn[, thisArg, ...args]) `
675
675
<!-- YAML
676
- added: REPLACEME
676
+ added: v9.6.0
677
677
-->
678
678
679
679
* ` fn ` {Function} The function to call in the execution context of this async
@@ -688,7 +688,7 @@ then restore the original execution context.
688
688
689
689
#### ` asyncResource.emitBefore() `
690
690
<!-- YAML
691
- deprecated: REPLACEME
691
+ deprecated: v9.6.0
692
692
-->
693
693
> Stability: 0 - Deprecated: Use [ ` asyncResource.runInAsyncScope() ` ] [ ] instead.
694
694
@@ -706,7 +706,7 @@ alternative.
706
706
707
707
#### ` asyncResource.emitAfter() `
708
708
<!-- YAML
709
- deprecated: REPLACEME
709
+ deprecated: v9.6.0
710
710
-->
711
711
> Stability: 0 - Deprecated: Use [ ` asyncResource.runInAsyncScope() ` ] [ ] instead.
712
712
Original file line number Diff line number Diff line change @@ -1667,7 +1667,7 @@ Found'`.
1667
1667
<!-- YAML
1668
1668
added: v0.1.13
1669
1669
changes:
1670
- - version: REPLACEME
1670
+ - version: v9.6.0
1671
1671
pr-url: https://github.com/nodejs/node/pull/15752
1672
1672
description: The `options` argument is supported now.
1673
1673
-->
Original file line number Diff line number Diff line change @@ -1662,7 +1662,7 @@ changes:
1662
1662
pr-url: https://github.com/nodejs/node/pull/16676
1663
1663
description: Added the `maxHeaderListPairs` option with a default limit of
1664
1664
128 header pairs.
1665
- - version: REPLACEME
1665
+ - version: v9.6.0
1666
1666
pr-url: https://github.com/nodejs/node/pull/15752
1667
1667
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
1668
1668
option.
Original file line number Diff line number Diff line change @@ -3433,7 +3433,7 @@ may be required when implementing custom async behavior that does not use
3433
3433
3434
3434
### *napi_open_callback_scope*
3435
3435
<!-- YAML
3436
- added: REPLACEME
3436
+ added: v9.6.0
3437
3437
-->
3438
3438
```C
3439
3439
NAPI_EXTERN napi_status napi_open_callback_scope(napi_env env,
@@ -3458,7 +3458,7 @@ the required scope.
3458
3458
3459
3459
### *napi_close_callback_scope*
3460
3460
<!-- YAML
3461
- added: REPLACEME
3461
+ added: v9.6.0
3462
3462
-->
3463
3463
```C
3464
3464
NAPI_EXTERN napi_status napi_close_callback_scope(napi_env env,
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ to mark specific significant moments in the Performance Timeline.
127
127
128
128
### performance.maxEntries
129
129
<!-- YAML
130
- added: REPLACEME
130
+ added: v9.6.0
131
131
-->
132
132
133
133
Value: {number}
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ console.log(x); // 1; y is not defined.
45
45
46
46
## Class: vm.Module
47
47
<!-- YAML
48
- added: REPLACEME
48
+ added: v9.6.0
49
49
-->
50
50
51
51
> Stability: 1 - Experimental
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 23
23
#define SRC_NODE_VERSION_H_
24
24
25
25
#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
28
28
29
29
#define NODE_VERSION_IS_LTS 0
30
30
#define NODE_VERSION_LTS_CODENAME ""
31
31
32
- #define NODE_VERSION_IS_RELEASE 0
32
+ #define NODE_VERSION_IS_RELEASE 1
33
33
34
34
#ifndef NODE_STRINGIFY
35
35
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
You can’t perform that action at this time.
0 commit comments