Skip to content

Commit 30cecee

Browse files
targosthedull
authored andcommitted
2022-01-18, Version 17.4.0 (Current)
Notable changes: child_process: * (SEMVER-MINOR) add support for URL to `cp.fork` (Antoine du Hamel) nodejs#41225 crypto: * (SEMVER-MINOR) alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) nodejs#41266 doc: * add Mesteery to collaborators (Mestery) nodejs#41543 events: * (SEMVER-MINOR) graduate capturerejections to supported (James M Snell) nodejs#41267 * (SEMVER-MINOR) add EventEmitterAsyncResource to core (James M Snell) nodejs#41246 loader: * (SEMVER-MINOR) return package format from defaultResolve if known (Gabriel Bota) nodejs#40980 perf_hooks: * (SEMVER-MINOR) multiple fixes for Histogram (James M Snell) nodejs#41153 stream: * (SEMVER-MINOR) add filter method to readable (Benjamin Gruenbaum, Robert Nagy) nodejs#41354 * (SEMVER-MINOR) add isReadable helper (Robert Nagy) nodejs#41199 * (SEMVER-MINOR) add map method to Readable (Benjamin Gruenbaum, Robert Nagy) nodejs#40815 PR-URL: nodejs#41557
1 parent 61aa639 commit 30cecee

File tree

7 files changed

+205
-19
lines changed

7 files changed

+205
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.3.1">17.3.1</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.4.0">17.4.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.1">17.3.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.0">17.3.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V17.md#17.2.0">17.2.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V17.md#17.1.0">17.1.0</a><br/>

doc/api/child_process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ controller.abort();
392392
added: v0.5.0
393393
changes:
394394
- version:
395-
- REPLACEME
395+
- v17.4.0
396396
pr-url: https://github.com/nodejs/node/pull/41225
397397
description: The `modulePath` parameter can be a WHATWG `URL` object using
398398
`file:` protocol.

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4064,7 +4064,7 @@ console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...]
40644064
### `crypto.getRandomValues(typedArray)`
40654065

40664066
<!-- YAML
4067-
added: REPLACEME
4067+
added: v17.4.0
40684068
-->
40694069

40704070
* `typedArray` {Buffer|TypedArray|DataView|ArrayBuffer}
@@ -5254,7 +5254,7 @@ If the `callback` function is provided this function uses libuv's threadpool.
52545254
### `crypto.subtle`
52555255

52565256
<!-- YAML
5257-
added: REPLACEME
5257+
added: v17.4.0
52585258
-->
52595259

52605260
* Type: {SubtleCrypto}

doc/api/events.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ added:
740740
- v13.4.0
741741
- v12.16.0
742742
changes:
743-
- version: REPLACEME
743+
- version: v17.4.0
744744
pr-url: https://github.com/nodejs/node/pull/41267
745745
description: No longer experimental.
746746
-->
@@ -1029,7 +1029,7 @@ added:
10291029
- v13.4.0
10301030
- v12.16.0
10311031
changes:
1032-
- version: REPLACEME
1032+
- version: v17.4.0
10331033
pr-url: https://github.com/nodejs/node/pull/41267
10341034
description: No longer experimental.
10351035
-->
@@ -1045,7 +1045,7 @@ added:
10451045
- v13.4.0
10461046
- v12.16.0
10471047
changes:
1048-
- version: REPLACEME
1048+
- version: v17.4.0
10491049
pr-url: https://github.com/nodejs/node/pull/41267
10501050
description: No longer experimental.
10511051
-->
@@ -1173,7 +1173,7 @@ setMaxListeners(5, target, emitter);
11731173
## Class: `events.EventEmitterAsyncResource extends EventEmitter`
11741174

11751175
<!-- YAML
1176-
added: REPLACEME
1176+
added: v17.4.0
11771177
-->
11781178

11791179
Integrates `EventEmitter` with {AsyncResource} for `EventEmitter`s that

doc/api/perf_hooks.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ added: v11.10.0
874874
### `histogram.count`
875875

876876
<!-- YAML
877-
added: REPLACEME
877+
added: v17.4.0
878878
-->
879879

880880
* {number}
@@ -884,7 +884,7 @@ The number of samples recorded by the histogram.
884884
### `histogram.countBigInt`
885885

886886
<!-- YAML
887-
added: REPLACEME
887+
added: v17.4.0
888888
-->
889889

890890
* {bigint}
@@ -905,7 +905,7 @@ loop delay threshold.
905905
### `histogram.exceedsBigInt`
906906

907907
<!-- YAML
908-
added: REPLACEME
908+
added: v17.4.0
909909
-->
910910

911911
* {bigint}
@@ -926,7 +926,7 @@ The maximum recorded event loop delay.
926926
### `histogram.maxBigInt`
927927

928928
<!-- YAML
929-
added: REPLACEME
929+
added: v17.4.0
930930
-->
931931

932932
* {bigint}
@@ -956,7 +956,7 @@ The minimum recorded event loop delay.
956956
### `histogram.minBigInt`
957957

958958
<!-- YAML
959-
added: REPLACEME
959+
added: v17.4.0
960960
-->
961961

962962
* {bigint}
@@ -977,7 +977,7 @@ Returns the value at the given percentile.
977977
### `histogram.percentileBigInt(percentile)`
978978

979979
<!-- YAML
980-
added: REPLACEME
980+
added: v17.4.0
981981
-->
982982

983983
* `percentile` {number} A percentile value in the range (0, 100).
@@ -998,7 +998,7 @@ Returns a `Map` object detailing the accumulated percentile distribution.
998998
### `histogram.percentilesBigInt`
999999

10001000
<!-- YAML
1001-
added: REPLACEME
1001+
added: v17.4.0
10021002
-->
10031003

10041004
* {Map}
@@ -1066,7 +1066,7 @@ added:
10661066
### `histogram.add(other)`
10671067

10681068
<!-- YAML
1069-
added: REPLACEME
1069+
added: v17.4.0
10701070
-->
10711071

10721072
* `other` {RecordableHistogram}

doc/api/stream.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ showBoth();
17401740
### `readable.map(fn[, options])`
17411741

17421742
<!-- YAML
1743-
added: REPLACEME
1743+
added: v17.4.0
17441744
-->
17451745

17461746
> Stability: 1 - Experimental
@@ -1784,7 +1784,7 @@ for await (const result of dnsResults) {
17841784
### `readable.filter(fn[, options])`
17851785

17861786
<!-- YAML
1787-
added: REPLACEME
1787+
added: v17.4.0
17881788
-->
17891789

17901790
> Stability: 1 - Experimental
@@ -2393,7 +2393,7 @@ Returns whether the stream has encountered an error.
23932393
### `stream.isReadable(stream)`
23942394

23952395
<!-- YAML
2396-
added: REPLACEME
2396+
added: v17.4.0
23972397
-->
23982398

23992399
> Stability: 1 - Experimental

0 commit comments

Comments
 (0)