Skip to content

Commit b7bb184

Browse files
danielleadamsLinkgoron
authored andcommitted
2021-12-17, Version 17.3.0 (Current)
OpenSSL-3.0.1: OpenSSL-3.0.1 contains a fix for CVE-2021-4044: Invalid handling of X509_verify_cert() internal errors in libssl (Moderate). This is a vulnerability in OpenSSL that may be exploited through Node.js. More information can be read here: https://www.openssl.org/news/secadv/20211214.txt. Contributed by Richard Lau nodejs#41177 Other Notable Changes: * lib: * make AbortSignal cloneable/transferable (James M Snell) nodejs#41050 * deps: * upgrade npm to 8.3.0 (npm team) nodejs#41127 * doc: * add @bnb as a collaborator (Tierney Cyren) nodejs#41100 * process: * add `getActiveResourcesInfo()` (Darshan Sen) nodejs#40813 * timers: * add experimental scheduler api (James M Snell) nodejs#40909 PR-URL: nodejs#41167
1 parent 2c3122b commit b7bb184

File tree

8 files changed

+164
-11
lines changed

8 files changed

+164
-11
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.2.0">17.2.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.3.0">17.3.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V17.md#17.2.0">17.2.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V17.md#17.1.0">17.1.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.1">17.0.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.0">17.0.0</a><br/>

doc/api/fs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3581,7 +3581,7 @@ with options `{ recursive: true, force: true }`.
35813581
<!-- YAML
35823582
added: v14.14.0
35833583
changes:
3584-
- version: REPLACEME
3584+
- version: v17.3.0
35853585
pr-url: https://github.com/nodejs/node/pull/41132
35863586
description: The `path` parameter can be a WHATWG `URL` object using `file:`
35873587
protocol.
@@ -5334,7 +5334,7 @@ with options `{ recursive: true, force: true }`.
53345334
<!-- YAML
53355335
added: v14.14.0
53365336
changes:
5337-
- version: REPLACEME
5337+
- version: v17.3.0
53385338
pr-url: https://github.com/nodejs/node/pull/41132
53395339
description: The `path` parameter can be a WHATWG `URL` object using `file:`
53405340
protocol.

doc/api/globals.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Returns a new already aborted `AbortSignal`.
107107
#### Static method: `AbortSignal.timeout(delay)`
108108

109109
<!-- YAML
110-
added: REPLACEME
110+
added: v17.3.0
111111
-->
112112

113113
* `delay` {number} The number of milliseconds to wait before triggering
@@ -194,7 +194,7 @@ console.log(ac.signal.reason); // Error('boom!');
194194
#### `abortSignal.throwIfAborted()`
195195

196196
<!-- YAML
197-
added: REPLACEME
197+
added: v17.3.0
198198
-->
199199

200200
If `abortSignal.aborted` is `true`, throws `abortSignal.reason`.

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,7 @@ previous setting of `process.exitCode`.
18201820
## `process.getActiveResourcesInfo()`
18211821
18221822
<!-- YAML
1823-
added: REPLACEME
1823+
added: v17.3.0
18241824
-->
18251825
18261826
> Stability: 1 - Experimental

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2228,7 +2228,7 @@ Returns whether the stream has been read from or cancelled.
22282228
### `stream.isErrored(stream)`
22292229

22302230
<!-- YAML
2231-
added: REPLACEME
2231+
added: v17.3.0
22322232
-->
22332233

22342234
> Stability: 1 - Experimental

doc/api/timers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ const interval = 100;
475475
### `timersPromises.scheduler.wait(delay[, options])`
476476

477477
<!-- YAML
478-
added: REPLACEME
478+
added: v17.3.0
479479
-->
480480

481481
> Stability: 1 - Experimental
@@ -503,7 +503,7 @@ await scheduler.wait(1000); // Wait one second before continuing
503503
### `timersPromises.scheduler.yield()`
504504

505505
<!-- YAML
506-
added: REPLACEME
506+
added: v17.3.0
507507
-->
508508

509509
> Stability: 1 - Experimental

doc/api/util.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ stream.write('With ES6');
485485
<!-- YAML
486486
added: v0.3.0
487487
changes:
488-
- version: REPLACEME
488+
- version: v17.3.0
489489
pr-url: https://github.com/nodejs/node/pull/41003
490490
description: The `numericSeparator` option is supported now.
491491
- version:
@@ -877,7 +877,7 @@ ignored, if not supported.
877877
<!-- YAML
878878
added: v0.1.97
879879
changes:
880-
- version: REPLACEME
880+
- version: v17.3.0
881881
pr-url: https://github.com/nodejs/node/pull/41019
882882
description: The inspect argument is added for more interoperability.
883883
-->

doc/changelogs/CHANGELOG_V17.md

+152
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)