Skip to content

Commit f74da0a

Browse files
committed
2021-04-20, Version 16.0.0 (Current)
Notable changes: * TBD PR-URL: #37678
1 parent 43f599b commit f74da0a

30 files changed

+235
-43
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
Select a Node.js version below to view the changelog history:
44

5+
* [Node.js 16](doc/changelogs/CHANGELOG_V16.md) **Current**
56
* [Node.js 15](doc/changelogs/CHANGELOG_V15.md) **Current**
67
* [Node.js 14](doc/changelogs/CHANGELOG_V14.md) **Long Term Support**
78
* [Node.js 13](doc/changelogs/CHANGELOG_V13.md) End-of-Life
@@ -25,13 +26,17 @@ release.
2526
<!--lint disable maximum-line-length-->
2627
<table>
2728
<tr>
29+
<th title="Current"><a href="doc/changelogs/CHANGELOG_V16.md">16</a><sup>Current</sup></th>
2830
<th title="Current"><a href="doc/changelogs/CHANGELOG_V15.md">15</a><sup>Current</sup></th>
2931
<th title="LTS Until 2023-04"><a href="doc/changelogs/CHANGELOG_V14.md">14</a><sup>LTS</sup></th>
3032
<th title="LTS Until 2022-04"><a href="doc/changelogs/CHANGELOG_V12.md">12</a><sup>LTS</sup></th>
3133
<th title="LTS Until 2021-04"><a href="doc/changelogs/CHANGELOG_V10.md">10</a><sup>LTS</sup></th>
3234
</tr>
3335
<tr>
3436
<td valign="top">
37+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a></b><br/>
38+
</td>
39+
<td valign="top">
3540
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.12.0">15.12.0</a></b><br/>
3641
<a href="doc/changelogs/CHANGELOG_V15.md#15.11.0">15.11.0</a><br/>
3742
<a href="doc/changelogs/CHANGELOG_V15.md#15.10.0">15.10.0</a><br/>

doc/abi_version_registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"NODE_MODULE_VERSION": [
3-
{ "modules": 93, "runtime": "node", "variant": "v8_9.0", "versions": "16.0.0-pre" },
3+
{ "modules": 93, "runtime": "node", "variant": "v8_9.0", "versions": "16.0.0" },
44
{ "modules": 92, "runtime": "node", "variant": "v8_8.9", "versions": "16.0.0-pre" },
55
{ "modules": 91, "runtime": "node", "variant": "v8_8.8", "versions": "16.0.0-pre" },
66
{ "modules": 90, "runtime": "node", "variant": "v8_8.7", "versions": "16.0.0-pre" },

doc/api/async_hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ added:
740740
- v14.8.0
741741
- v12.19.0
742742
changes:
743-
- version: REPLACEME
743+
- version: v16.0.0
744744
pr-url: https://github.com/nodejs/node/pull/36782
745745
description: Added optional thisArg.
746746
-->
@@ -761,7 +761,7 @@ added:
761761
- v14.8.0
762762
- v12.19.0
763763
changes:
764-
- version: REPLACEME
764+
- version: v16.0.0
765765
pr-url: https://github.com/nodejs/node/pull/36782
766766
description: Added optional thisArg.
767767
-->

doc/api/buffer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3279,7 +3279,7 @@ accessed using `require('buffer')`.
32793279

32803280
### `buffer.atob(data)`
32813281
<!-- YAML
3282-
added: REPLACEME
3282+
added: v16.0.0
32833283
-->
32843284

32853285
* `data` {any} The Base64-encoded input string.
@@ -3298,7 +3298,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
32983298

32993299
### `buffer.btoa(data)`
33003300
<!-- YAML
3301-
added: REPLACEME
3301+
added: v16.0.0
33023302
-->
33033303

33043304
* `data` {any} An ASCII (Latin1) string.

doc/api/child_process.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ controller.abort();
374374
<!-- YAML
375375
added: v0.5.0
376376
changes:
377-
- version: REPLACEME
377+
- version: v16.0.0
378378
pr-url: https://github.com/nodejs/node/pull/37256
379379
description: timeout was added.
380380
- version: v15.11.0
@@ -483,7 +483,7 @@ if (process.argv[2] === 'child') {
483483
<!-- YAML
484484
added: v0.1.90
485485
changes:
486-
- version: REPLACEME
486+
- version: v16.0.0
487487
pr-url: https://github.com/nodejs/node/pull/37256
488488
description: timeout was added.
489489
- version: v15.11.0

doc/api/cluster.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -688,15 +688,15 @@ This can only be called from the primary process.
688688
## `cluster.isMaster`
689689
<!-- YAML
690690
added: v0.8.1
691-
deprecated: REPLACEME
691+
deprecated: v16.0.0
692692
-->
693693

694694
Deprecated alias for [`cluster.isPrimary`][].
695695
details.
696696

697697
## `cluster.isPrimary`
698698
<!-- YAML
699-
added: REPLACEME
699+
added: v16.0.0
700700
-->
701701

702702
* {boolean}
@@ -789,7 +789,7 @@ This object is not intended to be changed or set manually.
789789
## `cluster.setupMaster([settings])`
790790
<!-- YAML
791791
added: v0.7.1
792-
deprecated: REPLACEME
792+
deprecated: v16.0.0
793793
changes:
794794
- version: v6.4.0
795795
pr-url: https://github.com/nodejs/node/pull/7838
@@ -800,7 +800,7 @@ Deprecated alias for [`.setupPrimary()`][].
800800

801801
## `cluster.setupPrimary([settings])`
802802
<!-- YAML
803-
added: REPLACEME
803+
added: v16.0.0
804804
-->
805805

806806
* `settings` {Object} See [`cluster.settings`][].

doc/api/deprecations.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,7 @@ expose values under these names.
20512051
### DEP0109: `http`, `https`, and `tls` support for invalid URLs
20522052
<!-- YAML
20532053
changes:
2054-
- version: REPLACEME
2054+
- version: v16.0.0
20552055
pr-url: https://github.com/nodejs/node/pull/36853
20562056
description: End-of-Life.
20572057
- version: v11.0.0
@@ -2350,7 +2350,7 @@ with no performance impact since Node.js 10.
23502350
### DEP0128: modules with an invalid `main` entry and an `index.js` file
23512351
<!-- YAML
23522352
changes:
2353-
- version: REPLACEME
2353+
- version: v16.0.0
23542354
pr-url: https://github.com/nodejs/node/pull/37204
23552355
description: Runtime deprecation.
23562356
- version: v12.0.0
@@ -2385,7 +2385,7 @@ instead.
23852385
### DEP0130: `Module.createRequireFromPath()`
23862386
<!-- YAML
23872387
changes:
2388-
- version: REPLACEME
2388+
- version: v16.0.0
23892389
pr-url: https://github.com/nodejs/node/pull/37201
23902390
description: End-of-life.
23912391
- version: v13.0.0
@@ -2671,7 +2671,7 @@ The [`crypto.Certificate()` constructor][] is deprecated. Use
26712671
### DEP0147: `fs.rmdir(path, { recursive: true })`
26722672
<!-- YAML
26732673
changes:
2674-
- version: REPLACEME
2674+
- version: v16.0.0
26752675
pr-url: https://github.com/nodejs/node/pull/37302
26762676
description: Runtime deprecation.
26772677
- version: v15.0.0
@@ -2716,7 +2716,7 @@ runtime warning results no matter where the `"exports"` usage occurs.
27162716
### DEP0149: `http.IncomingMessage#connection`
27172717
<!-- YAML
27182718
changes:
2719-
- version: REPLACEME
2719+
- version: v16.0.0
27202720
pr-url: https://github.com/nodejs/node/pull/33768
27212721
description: Documentation-only deprecation.
27222722
-->
@@ -2728,7 +2728,7 @@ Prefer [`message.socket`][] over [`message.connection`][].
27282728
### DEP0150: Changing the value of `process.config`
27292729
<!-- YAML
27302730
changes:
2731-
- version: REPLACEME
2731+
- version: v16.0.0
27322732
pr-url: https://github.com/nodejs/node/pull/36902
27332733
description: Runtime deprecation.
27342734
-->
@@ -2743,7 +2743,7 @@ change the value has been deprecated and will be disabled in the future.
27432743
### DEP0151: Main index lookup and extension searching
27442744
<!-- YAML
27452745
changes:
2746-
- version: REPLACEME
2746+
- version: v16.0.0
27472747
pr-url: https://github.com/nodejs/node/pull/37206
27482748
description: Runtime deprecation.
27492749
- version: v15.8.0
@@ -2763,7 +2763,7 @@ an explicit [`"exports"` or `"main"` entry][] with the exact file extension.
27632763
### DEP0152: Extension PerformanceEntry properties
27642764
<!-- YAML
27652765
changes:
2766-
- version: REPLACEME
2766+
- version: v16.0.0
27672767
pr-url: https://github.com/nodejs/node/pull/37136
27682768
description: Runtime deprecation.
27692769
-->

doc/api/esm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ added:
205205
- v14.13.1
206206
- v12.20.0
207207
changes:
208-
- version: REPLACEME
208+
- version: v16.0.0
209209
pr-url: https://github.com/nodejs/node/pull/37246
210210
description: Added `node:` import support to `require(...)`.
211211
-->

doc/api/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ setMaxListeners(5, target, emitter);
11371137
<!-- YAML
11381138
added: v14.5.0
11391139
changes:
1140-
- version: REPLACEME
1140+
- version: v16.0.0
11411141
pr-url: https://github.com/nodejs/node/pull/37237
11421142
description: changed EventTarget error handling.
11431143
- version: v15.4.0

doc/api/fs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ Renames `oldPath` to `newPath`.
10481048
<!-- YAML
10491049
added: v10.0.0
10501050
changes:
1051-
- version: REPLACEME
1051+
- version: v16.0.0
10521052
pr-url: https://github.com/nodejs/node/pull/37302
10531053
description: The `recursive` option is deprecated, using it triggers a
10541054
deprecation warning.
@@ -2336,7 +2336,7 @@ error `UV_ENOSYS`.
23362336
<!-- YAML
23372337
deprecated: v0.4.7
23382338
changes:
2339-
- version: REPLACEME
2339+
- version: v16.0.0
23402340
pr-url: https://github.com/nodejs/node/pull/37460
23412341
description: The error returned may be an `AggregateError` if more than one
23422342
error is returned.
@@ -2816,7 +2816,7 @@ If `options.withFileTypes` is set to `true`, the `files` array will contain
28162816
<!-- YAML
28172817
added: v0.1.29
28182818
changes:
2819-
- version: REPLACEME
2819+
- version: v16.0.0
28202820
pr-url: https://github.com/nodejs/node/pull/37460
28212821
description: The error returned may be an `AggregateError` if more than one
28222822
error is returned.
@@ -3146,7 +3146,7 @@ rename('oldFile.txt', 'newFile.txt', (err) => {
31463146
<!-- YAML
31473147
added: v0.0.2
31483148
changes:
3149-
- version: REPLACEME
3149+
- version: v16.0.0
31503150
pr-url: https://github.com/nodejs/node/pull/37302
31513151
description: The `recursive` option is deprecated, using it triggers a
31523152
deprecation warning.
@@ -3398,7 +3398,7 @@ example/
33983398
<!-- YAML
33993399
added: v0.8.6
34003400
changes:
3401-
- version: REPLACEME
3401+
- version: v16.0.0
34023402
pr-url: https://github.com/nodejs/node/pull/37460
34033403
description: The error returned may be an `AggregateError` if more than one
34043404
error is returned.
@@ -3855,7 +3855,7 @@ details.
38553855
<!-- YAML
38563856
added: v0.1.29
38573857
changes:
3858-
- version: REPLACEME
3858+
- version: v16.0.0
38593859
pr-url: https://github.com/nodejs/node/pull/37460
38603860
description: The error returned may be an `AggregateError` if more than one
38613861
error is returned.
@@ -4777,7 +4777,7 @@ See the POSIX rename(2) documentation for more details.
47774777
<!-- YAML
47784778
added: v0.1.21
47794779
changes:
4780-
- version: REPLACEME
4780+
- version: v16.0.0
47814781
pr-url: https://github.com/nodejs/node/pull/37302
47824782
description: The `recursive` option is deprecated, using it triggers a
47834783
deprecation warning.

0 commit comments

Comments
 (0)