Skip to content

Commit 4ec144f

Browse files
committed
2023-09-28, Version 20.8.0 (Current)
Notable changes: doc: * deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) #49683 * 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 src: * (SEMVER-MINOR) allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) #49279 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 test_runner: * (SEMVER-MINOR) accept `testOnly` in `run` (Moshe Atlow) #49753 * (SEMVER-MINOR) add junit reporter (Moshe Atlow) #49614 PR-URL: TODO
1 parent e49a573 commit 4ec144f

File tree

7 files changed

+183
-10
lines changed

7 files changed

+183
-10
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.8.0">20.8.0</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.8.0
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.8.0
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.8.0
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.8.0
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/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.8.0
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.8.0
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/changelogs/CHANGELOG_V20.md

+172
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 20
26-
#define NODE_MINOR_VERSION 7
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 8
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)