Skip to content

Commit e5873d7

Browse files
committedDec 17, 2021
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 b59c513 commit e5873d7

File tree

9 files changed

+167
-14
lines changed

9 files changed

+167
-14
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
@@ -2174,7 +2174,7 @@ Returns whether the stream has been read from or cancelled.
21742174
### `stream.isErrored(stream)`
21752175

21762176
<!-- YAML
2177-
added: REPLACEME
2177+
added: v17.3.0
21782178
-->
21792179

21802180
> 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.

‎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 17
26-
#define NODE_MINOR_VERSION 2
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 3
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)
Please sign in to comment.