Skip to content

Commit 6fa8cae

Browse files
committed
2021-05-04, Version 14.17.0 Fermium (LTS)
PR-URL: #38507 Notable changes: * assert: * change status of legacy asserts (James M Snell) (#38113) * doc: * apply style for legacy status (James M Snell) (#37784) * revoke deprecation of legacy url, change status to legacy (James M Snell) (#37784) * add legacy status to stability index (James M Snell) (#37784) * upgrade stability status of report API (Gireesh Punathil) (#35654) * deps: * V8: cherry-pick cf71540c684c (BoHong Li) (#38051) * update ICU to 68.1 (Michaël Zasso) (#36187) * upgrade to libuv 1.41.0 (Colin Ihrig) (#37360) * fs: * add promisified readFile benchmark (Nitzan Uziely) (#37608) * http: * add http.ClientRequest.getRawHeaderNames() (simov) (#37660) * report request start and end with diagnostics\_channel (Stephen Belanger) (#34895) * lib: * create diagnostics\_channel module (Stephen Belanger) (#34895) * implement AbortSignal.abort() (James M Snell) (#37693) * test: * update dom/abort tests (James M Snell) (#37693) * util: * add getSystemErrorMap() impl (eladkeyshawn) (#38101)
1 parent 93c917c commit 6fa8cae

23 files changed

+684
-56
lines changed

doc/api/assert.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ An alias of [`assert.ok()`][].
304304
<!-- YAML
305305
added: v0.1.21
306306
changes:
307-
- version: REPLACEME
307+
- version: v14.17.0
308308
pr-url: https://github.com/nodejs/node/pull/38113
309309
description: In Legacy assertion mode, changed status from Deprecated to
310310
Legacy.
@@ -758,7 +758,7 @@ assert.doesNotThrow(
758758
<!-- YAML
759759
added: v0.1.21
760760
changes:
761-
- version: REPLACEME
761+
- version: v14.17.0
762762
pr-url: https://github.com/nodejs/node/pull/38113
763763
description: In Legacy assertion mode, changed status from Deprecated to
764764
Legacy.
@@ -985,7 +985,7 @@ instance of an [`Error`][] then it will be thrown instead of the
985985
<!-- YAML
986986
added: v0.1.21
987987
changes:
988-
- version: REPLACEME
988+
- version: v14.17.0
989989
pr-url: https://github.com/nodejs/node/pull/38113
990990
description: In Legacy assertion mode, changed status from Deprecated to
991991
Legacy.
@@ -1125,7 +1125,7 @@ instead of the [`AssertionError`][].
11251125
<!-- YAML
11261126
added: v0.1.21
11271127
changes:
1128-
- version: REPLACEME
1128+
- version: v14.17.0
11291129
pr-url: https://github.com/nodejs/node/pull/38113
11301130
description: In Legacy assertion mode, changed status from Deprecated to
11311131
Legacy.

doc/api/buffer.md

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

31153115
### `buffer.atob(data)`
31163116
<!-- YAML
3117-
added: REPLACEME
3117+
added: v14.17.0
31183118
-->
31193119

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

31343134
### `buffer.btoa(data)`
31353135
<!-- YAML
3136-
added: REPLACEME
3136+
added: v14.17.0
31373137
-->
31383138

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

doc/api/child_process.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ lsExample();
250250
<!-- YAML
251251
added: v0.1.91
252252
changes:
253-
- version: REPLACEME
253+
- version: v14.17.0
254254
pr-url: https://github.com/nodejs/node/pull/36308
255255
description: AbortSignal support was added.
256256
- version: v8.8.0
@@ -351,7 +351,7 @@ controller.abort();
351351
<!-- YAML
352352
added: v0.5.0
353353
changes:
354-
- version: REPLACEME
354+
- version: v14.17.0
355355
pr-url: https://github.com/nodejs/node/pull/36603
356356
description: AbortSignal support was added.
357357
- version:
@@ -431,7 +431,7 @@ The `signal` option works exactly the same way it does in
431431
<!-- YAML
432432
added: v0.1.90
433433
changes:
434-
- version: REPLACEME
434+
- version: v14.17.0
435435
pr-url: https://github.com/nodejs/node/pull/36432
436436
description: AbortSignal support was added.
437437
- version:
@@ -1086,7 +1086,7 @@ See [Advanced serialization][] for more details.
10861086

10871087
### Event: `'spawn'`
10881088
<!-- YAML
1089-
added: REPLACEME
1089+
added: v14.17.0
10901090
-->
10911091

10921092
The `'spawn'` event is emitted once the child process has spawned successfully.

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Currently, overriding `Error.prepareStackTrace` is ignored when the
199199

200200
### `--experimental-abortcontroller`
201201
<!-- YAML
202-
added: REPLACEME
202+
added: v14.17.0
203203
-->
204204

205205
Enable experimental `AbortController` and `AbortSignal` support.

doc/api/crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2843,7 +2843,7 @@ console.log(`The dice rolled: ${n}`);
28432843

28442844
### `crypto.randomUUID([options])`
28452845
<!-- YAML
2846-
added: REPLACEME
2846+
added: v14.17.0
28472847
-->
28482848

28492849
* `options` {Object}

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2148,7 +2148,7 @@ future release.
21482148
### DEP0116: Legacy URL API
21492149
<!-- YAML
21502150
changes:
2151-
- version: REPLACEME
2151+
- version: v14.17.0
21522152
pr-url: https://github.com/nodejs/node/pull/37784
21532153
description: Deprecation revoked. Status changed to "Legacy".
21542154
- version: v11.0.0

doc/api/diagnostics_channel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Diagnostics Channel
22

3-
<!--introduced_in=REPLACEME-->
3+
<!--introduced_in=v14.17.0-->
44

55
> Stability: 1 - Experimental
66

doc/api/dns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ callbacks will be called with an error with code `ECANCELLED`.
119119

120120
### `resolver.setLocalAddress([ipv4][, ipv6])`
121121
<!-- YAML
122-
added: REPLACEME
122+
added: v14.17.0
123123
-->
124124

125125
* `ipv4` {string} A string representation of an IPv4 address.
@@ -437,7 +437,7 @@ will contain an array of canonical name records available for the `hostname`
437437

438438
## `dns.resolveCaa(hostname, callback)`
439439
<!-- YAML
440-
added: REPLACEME
440+
added: v14.17.0
441441
-->
442442

443443
* `hostname` {string}
@@ -718,7 +718,7 @@ The following methods from the `dnsPromises` API are available:
718718

719719
### `resolver.cancel()`
720720
<!-- YAML
721-
added: REPLACEME
721+
added: v14.17.0
722722
-->
723723

724724
Cancel all outstanding DNS queries made by this resolver. The corresponding
@@ -946,7 +946,7 @@ Here is an example of the result object:
946946

947947
### `dnsPromises.resolveCaa(hostname)`
948948
<!-- YAML
949-
added: REPLACEME
949+
added: v14.17.0
950950
-->
951951

952952
* `hostname` {string}

doc/api/esm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
added: v8.5.0
77
changes:
88
- version:
9-
- REPLACEME
9+
- v14.17.0
1010
pr-url: https://github.com/nodejs/node/pull/35781
1111
description: Stabilize modules implementation.
1212
- version:

doc/api/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ regular `'error'` listener is installed.
385385

386386
### `EventEmitter.setMaxListeners(n[, ...eventTargets])`
387387
<!-- YAML
388-
added: REPLACEME
388+
added: v14.17.0
389389
-->
390390

391391
* `n` {number} A non-negative number. The maximum number of listeners per
@@ -855,7 +855,7 @@ class MyClass extends EventEmitter {
855855
## `events.getEventListeners(emitterOrTarget, eventName)`
856856
<!-- YAML
857857
added:
858-
- REPLACEME
858+
- v14.17.0
859859
-->
860860
* `emitterOrTarget` {EventEmitter|EventTarget}
861861
* `eventName` {string|symbol}

0 commit comments

Comments
 (0)