Skip to content

Commit c4c901f

Browse files
committed
2023-09-28, Version 20.7.1 (Current)
Notable changes: doc: * deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) #49683 * promote fetch/webstreams from experimental to stable (Steven) #45684 * deprecate `util.toUSVString` (Yagiz Nizipli) #49725 * deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) #49647 esm: * set all hooks as release candidate (Geoffrey Booth) #49597 stream: * use bitmap in writable state (Raz Luvaton) #49834 * use bitmap in readable state (Benjamin Gruenbaum) #49745 * improve webstream readable async iterator performance (Raz Luvaton) #49662 PR-URL: TODO
1 parent 1a18034 commit c4c901f

9 files changed

+184
-14
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ release.
3636
</tr>
3737
<tr>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.7.1">20.7.1</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>

doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3382,7 +3382,7 @@ Consider using alternatives such as the [`mock`][] helper function.
33823382

33833383
<!-- YAML
33843384
changes:
3385-
- version: REPLACEME
3385+
- version: v20.7.1
33863386
pr-url: https://github.com/nodejs/node/pull/49647
33873387
description: Documentation-only deprecation.
33883388
-->
@@ -3396,7 +3396,7 @@ the result of said promise, which can lead to unhandled promise rejections.
33963396

33973397
<!-- YAML
33983398
changes:
3399-
- version: REPLACEME
3399+
- version: v20.7.1
34003400
pr-url: https://github.com/nodejs/node/pull/49725
34013401
description: Documentation-only deprecation.
34023402
-->
@@ -3410,7 +3410,7 @@ The [`util.toUSVString()`][] API is deprecated. Please use
34103410

34113411
<!-- YAML
34123412
changes:
3413-
- version: REPLACEME
3413+
- version: v20.7.1
34143414
pr-url: https://github.com/nodejs/node/pull/49683
34153415
description: Documentation-only deprecation.
34163416
-->

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,7 @@ concurrent modifications on the same file or data corruption may occur.
18201820
<!-- YAML
18211821
added: v0.11.15
18221822
changes:
1823-
- version: REPLACEME
1823+
- version: v20.7.1
18241824
pr-url: https://github.com/nodejs/node/pull/49683
18251825
description: The constants `fs.F_OK`, `fs.R_OK`, `fs.W_OK` and `fs.X_OK`
18261826
which were present directly on `fs` are deprecated.

doc/api/globals.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ added:
477477
- v16.15.0
478478
changes:
479479
- version:
480-
- REPLACEME
480+
- v20.7.1
481481
pr-url: https://github.com/nodejs/node/pull/45684
482482
description: No longer experimental.
483483
- version: v18.0.0
@@ -507,7 +507,7 @@ added:
507507
- v16.15.0
508508
changes:
509509
- version:
510-
- REPLACEME
510+
- v20.7.1
511511
pr-url: https://github.com/nodejs/node/pull/45684
512512
description: No longer experimental.
513513
- version: v18.0.0
@@ -546,7 +546,7 @@ added:
546546
- v16.15.0
547547
changes:
548548
- version:
549-
- REPLACEME
549+
- v20.7.1
550550
pr-url: https://github.com/nodejs/node/pull/45684
551551
description: No longer experimental.
552552
- version: v18.0.0
@@ -786,7 +786,7 @@ added:
786786
- v16.15.0
787787
changes:
788788
- version:
789-
- REPLACEME
789+
- v20.7.1
790790
pr-url: https://github.com/nodejs/node/pull/45684
791791
description: No longer experimental.
792792
- version: v18.0.0
@@ -806,7 +806,7 @@ added:
806806
- v16.15.0
807807
changes:
808808
- version:
809-
- REPLACEME
809+
- v20.7.1
810810
pr-url: https://github.com/nodejs/node/pull/45684
811811
description: No longer experimental.
812812
- version: v18.0.0

doc/api/module.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ isBuiltin('wss'); // false
8585
<!-- YAML
8686
added: v20.6.0
8787
changes:
88-
- version: REPLACEME
88+
- version: v20.7.1
8989
pr-url: https://github.com/nodejs/node/pull/49655
9090
description: Add support for WHATWG URL instances.
9191
-->

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
15981598
<!-- YAML
15991599
added: v8.0.0
16001600
changes:
1601-
- version: REPLACEME
1601+
- version: v20.7.1
16021602
pr-url: https://github.com/nodejs/node/pull/49647
16031603
description: Calling `promisify` on a function that returns a `Promise` is
16041604
deprecated.

doc/api/webstreams.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
added: v16.5.0
77
changes:
88
- version:
9-
- REPLACEME
9+
- v20.7.1
1010
pr-url: https://github.com/nodejs/node/pull/45684
1111
description: No longer experimental.
1212
- version: v18.0.0

doc/changelogs/CHANGELOG_V20.md

+169
Large diffs are not rendered by default.

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
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)