Skip to content

Commit f176b27

Browse files
committed
2021-11-30, Version 17.2.0 (Current)
Notable changes: build: * (SEMVER-MINOR) reset embedder string to "-node.0" (Michaël Zasso) #40488 deps: * (SEMVER-MINOR) disable trap handler for Windows cross-compiler (Michaël Zasso) #40488 * (SEMVER-MINOR) update V8 to 9.6.180.14 (Michaël Zasso) #40488 lib: * (SEMVER-MINOR) add reason to AbortSignal (James M Snell) #40807 src: * (SEMVER-MINOR) add x509.fingerprint512 to crypto module (3nprob) #39809 stream: * deprecate thenable support (Antoine du Hamel) #40860 * fix finished regression when working with legacy Stream (Matteo Collina) #40858 tools: * (SEMVER-MINOR) disable trap handler for Windows cross-compiler (Michaël Zasso) #40488 * (SEMVER-MINOR) update V8 gypfiles for 9.6 (Michaël Zasso) #40488 PR-URL: TODO
1 parent 3bfc9f5 commit f176b27

9 files changed

+141
-13
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.1.0">17.1.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.2.0">17.2.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V17.md#17.1.0">17.1.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.1">17.0.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.0">17.0.0</a><br/>
3940
</td>

doc/api/async_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ the section on [promise execution tracking][].
761761
### `async_hooks.asyncWrapProviders`
762762
763763
<!-- YAML
764-
added: REPLACEME
764+
added: v17.2.0
765765
-->
766766
767767
* Returns: A map of provider types to the corresponding numeric id.

doc/api/crypto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2567,7 +2567,7 @@ The SHA-256 fingerprint of this certificate.
25672567
### `x509.fingerprint512`
25682568

25692569
<!-- YAML
2570-
added: REPLACEME
2570+
added: v17.2.0
25712571
-->
25722572

25732573
* Type: {string}

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3021,7 +3021,7 @@ it was an aborted or graceful destroy.
30213021

30223022
<!-- YAML
30233023
changes:
3024-
- version: REPLACEME
3024+
- version: v17.2.0
30253025
pr-url: https://github.com/nodejs/node/pull/40860
30263026
description: Documentation-only deprecation.
30273027
-->

doc/api/globals.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ added:
5353
- v15.0.0
5454
- v14.17.0
5555
changes:
56-
- version: REPLACEME
56+
- version: v17.2.0
5757
pr-url: https://github.com/nodejs/node/pull/40807
5858
description: Added the new optional reason argument.
5959
-->
@@ -94,7 +94,7 @@ added:
9494
- v15.12.0
9595
- v14.17.0
9696
changes:
97-
- version: REPLACEME
97+
- version: v17.2.0
9898
pr-url: https://github.com/nodejs/node/pull/40807
9999
description: Added the new optional reason argument.
100100
-->
@@ -167,7 +167,7 @@ when the `abortController.abort()` function has been called.
167167
#### `abortSignal.reason`
168168

169169
<!-- YAML
170-
added: REPLACEME
170+
added: v17.2.0
171171
-->
172172

173173
* Type: {any}

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ This API throws a JavaScript `RangeError` with the text provided.
11821182
#### `node_api_throw_syntax_error`
11831183

11841184
<!-- YAML
1185-
added: REPLACEME
1185+
added: v17.2.0
11861186
-->
11871187

11881188
````c
@@ -1298,7 +1298,7 @@ This API returns a JavaScript `RangeError` with the text provided.
12981298
#### `node_api_create_syntax_error`
12991299
13001300
<!-- YAML
1301-
added: REPLACEME
1301+
added: v17.2.0
13021302
-->
13031303
13041304
```c

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ certificate.
11331133

11341134
<!-- YAML
11351135
changes:
1136-
- version: REPLACEME
1136+
- version: v17.2.0
11371137
pr-url: https://github.com/nodejs/node/pull/39809
11381138
description: Add fingerprint512.
11391139
- version: v11.4.0

doc/changelogs/CHANGELOG_V17.md

+127
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 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
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)