Skip to content

Commit b022d19

Browse files
committed
2021-11-09, Version 17.1.0 (Current)
Notable changes: doc: * add VoltrexMaster to collaborators (voltrexmaster) #40566 esm: * (SEMVER-MINOR) add support for JSON import assertion (Antoine du Hamel) #40250 lib: * (SEMVER-MINOR) add unsubscribe method to non-active DC channels (simon-id) #40433 * (SEMVER-MINOR) add return value for DC channel.unsubscribe (simon-id) #40433 v8: * (SEMVER-MINOR) multi-tenant promise hook api (Stephen Belanger) #39283 PR-URL: #40758
1 parent 43a267f commit b022d19

File tree

6 files changed

+146
-13
lines changed

6 files changed

+146
-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.0.1">17.0.1</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.1.0">17.1.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.1">17.0.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V17.md#17.0.0">17.0.0</a><br/>
3839
</td>
3940
<td valign="top">

doc/api/diagnostics_channel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ added:
265265
- v15.1.0
266266
- v14.17.0
267267
changes:
268-
- version: REPLACEME
268+
- version: v17.1.0
269269
pr-url: https://github.com/nodejs/node/pull/40433
270270
description: Added return value. Added to channels without subscribers.
271271
-->

doc/api/errors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,7 @@ An attempt was made to construct an object using a non-public constructor.
16941694
### `ERR_IMPORT_ASSERTION_TYPE_FAILED`
16951695

16961696
<!-- YAML
1697-
added: REPLACEME
1697+
added: v17.1.0
16981698
-->
16991699

17001700
An import assertion has failed, preventing the specified module to be imported.
@@ -1704,7 +1704,7 @@ An import assertion has failed, preventing the specified module to be imported.
17041704
### `ERR_IMPORT_ASSERTION_TYPE_MISSING`
17051705

17061706
<!-- YAML
1707-
added: REPLACEME
1707+
added: v17.1.0
17081708
-->
17091709

17101710
An import assertion is missing, preventing the specified module to be imported.
@@ -1714,7 +1714,7 @@ An import assertion is missing, preventing the specified module to be imported.
17141714
### `ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED`
17151715

17161716
<!-- YAML
1717-
added: REPLACEME
1717+
added: v17.1.0
17181718
-->
17191719

17201720
An import assertion is not supported by this version of Node.js.

doc/api/esm.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- YAML
88
added: v8.5.0
99
changes:
10-
- version: REPLACEME
10+
- version: v17.1.0
1111
pr-url: https://github.com/nodejs/node/pull/40250
1212
description: Add support for import assertions.
1313
- version:
@@ -226,7 +226,7 @@ import fs from 'node:fs/promises';
226226
## Import assertions
227227

228228
<!-- YAML
229-
added: REPLACEME
229+
added: v17.1.0
230230
-->
231231

232232
The [Import Assertions proposal][] adds an inline syntax for module import
@@ -633,7 +633,7 @@ CommonJS modules loaded.
633633
634634
<!-- YAML
635635
changes:
636-
- version: REPLACEME
636+
- version: v17.1.0
637637
pr-url: https://github.com/nodejs/node/pull/40250
638638
description: Add support for import assertions.
639639
-->

doc/api/v8.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ stopHookSet();
629629
### `promiseHooks.onInit(init)`
630630

631631
<!-- YAML
632-
added: REPLACEME
632+
added: v17.1.0
633633
-->
634634

635635
* `init` {Function} The [`init` callback][] to call when a promise is created.
@@ -653,7 +653,7 @@ const stop = promiseHooks.onInit((promise, parent) => {});
653653
### `promiseHooks.onSettled(settled)`
654654

655655
<!-- YAML
656-
added: REPLACEME
656+
added: v17.1.0
657657
-->
658658

659659
* `settled` {Function} The [`settled` callback][] to call when a promise
@@ -678,7 +678,7 @@ const stop = promiseHooks.onSettled((promise) => {});
678678
### `promiseHooks.onBefore(before)`
679679

680680
<!-- YAML
681-
added: REPLACEME
681+
added: v17.1.0
682682
-->
683683

684684
* `before` {Function} The [`before` callback][] to call before a promise
@@ -703,7 +703,7 @@ const stop = promiseHooks.onBefore((promise) => {});
703703
### `promiseHooks.onAfter(after)`
704704

705705
<!-- YAML
706-
added: REPLACEME
706+
added: v17.1.0
707707
-->
708708

709709
* `after` {Function} The [`after` callback][] to call after a promise
@@ -728,7 +728,7 @@ const stop = promiseHooks.onAfter((promise) => {});
728728
### `promiseHooks.createHook(callbacks)`
729729

730730
<!-- YAML
731-
added: REPLACEME
731+
added: v17.1.0
732732
-->
733733

734734
* `callbacks` {Object} The [Hook Callbacks][] to register

0 commit comments

Comments
 (0)