Skip to content

Commit 5570c29

Browse files
committed
2023-09-28, Version 20.8.0 (Current)
Notable changes: deps: * add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) #49874 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 module: * fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) #48510 * fix leak of vm.SyntheticModule (Joyee Cheung) #48510 * use symbol in WeakMap to manage host defined options (Joyee Cheung) #48510 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: #49932
1 parent 0fe673c commit 5570c29

File tree

6 files changed

+208
-7
lines changed

6 files changed

+208
-7
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ release.
3434
</tr>
3535
<tr>
3636
<td valign="top">
37-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a></b><br/>
37+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.8.0">20.8.0</a></b><br/>
38+
<a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/>
4041
<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
@@ -3390,7 +3390,7 @@ changes:
33903390
- version: REPLACEME
33913391
pr-url: https://github.com/nodejs/node/pull/49609
33923392
description: Runtime deprecation.
3393-
- version: REPLACEME
3393+
- version: v20.8.0
33943394
pr-url: https://github.com/nodejs/node/pull/49647
33953395
description: Documentation-only deprecation.
33963396
-->
@@ -3404,7 +3404,7 @@ the result of said promise, which can lead to unhandled promise rejections.
34043404

34053405
<!-- YAML
34063406
changes:
3407-
- version: REPLACEME
3407+
- version: v20.8.0
34083408
pr-url: https://github.com/nodejs/node/pull/49725
34093409
description: Documentation-only deprecation.
34103410
-->
@@ -3418,7 +3418,7 @@ The [`util.toUSVString()`][] API is deprecated. Please use
34183418

34193419
<!-- YAML
34203420
changes:
3421-
- version: REPLACEME
3421+
- version: v20.8.0
34223422
pr-url: https://github.com/nodejs/node/pull/49683
34233423
description: Documentation-only deprecation.
34243424
-->

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1830,7 +1830,7 @@ concurrent modifications on the same file or data corruption may occur.
18301830
<!-- YAML
18311831
added: v0.11.15
18321832
changes:
1833-
- version: REPLACEME
1833+
- version: v20.8.0
18341834
pr-url: https://github.com/nodejs/node/pull/49683
18351835
description: The constants `fs.F_OK`, `fs.R_OK`, `fs.W_OK` and `fs.X_OK`
18361836
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.

0 commit comments

Comments
 (0)