Skip to content

Commit 45fe4ab

Browse files
committed
2021-07-27, Version 16.6.0 (Current)
Notable changes: build: * (SEMVER-MINOR) reset embedder string to "-node.0" (Michaël Zasso) #39470 deps: * (SEMVER-MINOR) restore minimum ICU version to 68 (Michaël Zasso) #39470 * (SEMVER-MINOR) make V8 9.2 abi-compatible with 9.0 (Michaël Zasso) #39470 * (SEMVER-MINOR) update V8 to 9.2.230.21 (Michaël Zasso) #39470 inspector: * mark as stable (Gireesh Punathil) #37748 perf_hooks: * (SEMVER-MINOR) web performance timeline compliance (legendecas) #39297 punycode: * add pending deprecation (Antoine du Hamel) #38444 repl: * (SEMVER-MINOR) enable --experimental-repl-await /w opt-out (hemanth.hm) #34733 PR-URL: TODO
1 parent 08007d5 commit 45fe4ab

File tree

7 files changed

+157
-19
lines changed

7 files changed

+157
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.5.0">16.5.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.6.0">16.6.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V16.md#16.5.0">16.5.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.2">16.4.2</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.1">16.4.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V16.md#16.4.0">16.4.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ Use the specified file as a security policy.
279279

280280
### `--no-experimental-repl-await`
281281
<!-- YAML
282-
added: REPLACEME
282+
added: v16.6.0
283283
-->
284284
Use this flag to disable top-level await in REPL.
285285

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ The [`require.extensions`][] property is deprecated.
831831
### DEP0040: `punycode` module
832832
<!-- YAML
833833
changes:
834-
- version: REPLACEME
834+
- version: v16.6.0
835835
pr-url: https://github.com/nodejs/node/pull/38444
836836
description: Added support for `--pending-deprecation`.
837837
- version: v7.0.0

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3250,7 +3250,7 @@ This feature is not available in [`Worker`][] threads.
32503250
32513251
## `process.setSourceMapsEnabled(val)`
32523252
<!-- YAML
3253-
added: REPLACEME
3253+
added: v16.6.0
32543254
-->
32553255
32563256
> Stability: 1 - Experimental

doc/api/webstreams.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1120,19 +1120,19 @@ added: v16.5.0
11201120
11211121
### Class: `TextEncoderStream`
11221122
<!-- YAML
1123-
added: REPLACEME
1123+
added: v16.6.0
11241124
-->
11251125
11261126
#### `new TextEncoderStream()`
11271127
<!-- YAML
1128-
added: REPLACEME
1128+
added: v16.6.0
11291129
-->
11301130
11311131
Creates a new `TextEncoderStream` instance.
11321132
11331133
#### `textEncoderStream.encoding`
11341134
<!-- YAML
1135-
added: REPLACEME
1135+
added: v16.6.0
11361136
-->
11371137
11381138
* Type: {string}
@@ -1141,26 +1141,26 @@ The encoding supported by the `TextEncoderStream` instance.
11411141
11421142
#### `textEncoderStream.readable`
11431143
<!-- YAML
1144-
added: REPLACEME
1144+
added: v16.6.0
11451145
-->
11461146
11471147
* Type: {ReadableStream}
11481148
11491149
#### `textEncoderStream.writable`
11501150
<!-- YAML
1151-
added: REPLACEME
1151+
added: v16.6.0
11521152
-->
11531153
11541154
* Type: {WritableStream}
11551155
11561156
### Class: `TextDecoderStream`
11571157
<!-- YAML
1158-
added: REPLACEME
1158+
added: v16.6.0
11591159
-->
11601160
11611161
#### `new TextDecoderStream([encoding[, options]])`
11621162
<!-- YAML
1163-
added: REPLACEME
1163+
added: v16.6.0
11641164
-->
11651165
11661166
* `encoding` {string} Identifies the `encoding` that this `TextDecoder` instance
@@ -1176,7 +1176,7 @@ Creates a new `TextDecoderStream` instance.
11761176
11771177
#### `textDecoderStream.encoding`
11781178
<!-- YAML
1179-
added: REPLACEME
1179+
added: v16.6.0
11801180
-->
11811181
11821182
* Type: {string}
@@ -1185,7 +1185,7 @@ The encoding supported by the `TextDecoderStream` instance.
11851185
11861186
#### `textDecoderStream.fatal`
11871187
<!-- YAML
1188-
added: REPLACEME
1188+
added: v16.6.0
11891189
-->
11901190
11911191
* Type: {boolean}
@@ -1195,7 +1195,7 @@ thrown.
11951195
11961196
#### `textDecoderStream.ignoreBOM`
11971197
<!-- YAML
1198-
added: REPLACEME
1198+
added: v16.6.0
11991199
-->
12001200
12011201
* Type: {boolean}
@@ -1205,14 +1205,14 @@ mark.
12051205
12061206
#### `textDecoderStream.readable`
12071207
<!-- YAML
1208-
added: REPLACEME
1208+
added: v16.6.0
12091209
-->
12101210
12111211
* Type: {ReadableStream}
12121212
12131213
#### `textDecoderStream.writable`
12141214
<!-- YAML
1215-
added: REPLACEME
1215+
added: v16.6.0
12161216
-->
12171217
12181218
* Type: {WritableStream}

doc/changelogs/CHANGELOG_V16.md

+137
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 16
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)