File tree 7 files changed +213
-14
lines changed
7 files changed +213
-14
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ release.
27
27
</tr >
28
28
<tr >
29
29
<td valign="top">
30
- <b ><a href =" doc/changelogs/CHANGELOG_V8.md#8.2.1 " >8.2.1</a ></b ><br />
30
+ <b ><a href =" doc/changelogs/CHANGELOG_V8.md#8.3.0 " >8.3.0</a ></b ><br />
31
+ <a href =" doc/changelogs/CHANGELOG_V8.md#8.2.1 " >8.2.1</a ><br />
31
32
<a href =" doc/changelogs/CHANGELOG_V8.md#8.2.0 " >8.2.0</a ><br />
32
33
<a href =" doc/changelogs/CHANGELOG_V8.md#8.1.4 " >8.1.4</a ><br />
33
34
<a href =" doc/changelogs/CHANGELOG_V8.md#8.1.3 " >8.1.3</a ><br />
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ console.log('this will also print');
169
169
170
170
### console.clear()
171
171
<!-- YAML
172
- added: REPLACEME
172
+ added: v8.3.0
173
173
-->
174
174
175
175
When ` stdout ` is a TTY, calling ` console.clear() ` will attempt to clear the
@@ -183,7 +183,7 @@ binary.
183
183
184
184
### console.count([ label] )
185
185
<!-- YAML
186
- added: REPLACEME
186
+ added: v8.3.0
187
187
-->
188
188
189
189
* ` label ` {string} The display label for the counter. Defaults to ` 'default' ` .
@@ -216,7 +216,7 @@ undefined
216
216
217
217
### console.countReset([ label = 'default'] )
218
218
<!-- YAML
219
- added: REPLACEME
219
+ added: v8.3.0
220
220
-->
221
221
222
222
* ` label ` {string} The display label for the counter. Defaults to ` 'default' ` .
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ the [Implementation considerations section][] for more information.
56
56
57
57
## Class dns.Resolver
58
58
<!-- YAML
59
- added: REPLACEME
59
+ added: v8.3.0
60
60
-->
61
61
62
62
An independent resolver for DNS requests.
@@ -97,7 +97,7 @@ The following methods from the `dns` module are available:
97
97
98
98
### resolver.cancel()
99
99
<!-- YAML
100
- added: REPLACEME
100
+ added: v8.3.0
101
101
-->
102
102
103
103
Cancel all outstanding DNS queries made by this resolver. The corresponding
Original file line number Diff line number Diff line change @@ -1340,7 +1340,7 @@ of the ECMAScript Language Specification.
1340
1340
1341
1341
#### * napi_create_dataview*
1342
1342
<!-- YAML
1343
- added: REPLACEME
1343
+ added: v8.3.0
1344
1344
-->
1345
1345
1346
1346
``` C
@@ -1596,7 +1596,7 @@ is managed by the VM
1596
1596
1597
1597
#### * napi_get_dataview_info*
1598
1598
<!-- YAML
1599
- added: REPLACEME
1599
+ added: v8.3.0
1600
1600
-->
1601
1601
1602
1602
``` C
@@ -2093,7 +2093,7 @@ This API checks if the Object passsed in is a typed array.
2093
2093
2094
2094
### * napi_is_dataview*
2095
2095
<!-- YAML
2096
- added: REPLACEME
2096
+ added: v8.3.0
2097
2097
-->
2098
2098
2099
2099
``` C
Original file line number Diff line number Diff line change @@ -538,7 +538,7 @@ see [Custom promisified functions][].
538
538
539
539
### Class: util.TextDecoder
540
540
<!-- YAML
541
- added: REPLACEME
541
+ added: v8.3.0
542
542
-->
543
543
544
544
> Stability: 1 - Experimental
@@ -666,7 +666,7 @@ mark.
666
666
667
667
### Class: util.TextEncoder
668
668
<!-- YAML
669
- added: REPLACEME
669
+ added: v8.3.0
670
670
-->
671
671
672
672
> 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 8
26
- #define NODE_MINOR_VERSION 2
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 3
27
+ #define NODE_PATCH_VERSION 0
28
28
29
- #define NODE_VERSION_IS_RELEASE 0
29
+ #define NODE_VERSION_IS_RELEASE 1
30
30
31
31
#ifndef NODE_STRINGIFY
32
32
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
You can’t perform that action at this time.
0 commit comments