Skip to content

Commit 89322ae

Browse files
committed
2023-02-21, Version 19.7.0 (Current)
Notable changes: deps: * upgrade npm to 9.5.0 (npm team) #46673 * add ada as a dependency (Yagiz Nizipli) #46410 doc: * add debadree25 to collaborators (Debadree Chatterjee) #46716 * add deokjinkim to collaborators (Deokjin Kim) #46444 doc,lib,src,test: * rename --test-coverage (Colin Ihrig) #46017 lib: * (SEMVER-MINOR) add aborted() utility function (Debadree Chatterjee) #46494 src: * (SEMVER-MINOR) add initial support for single executable applications (Darshan Sen) #45038 * (SEMVER-MINOR) allow optional Isolate termination in node::Stop() (Shelley Vohr) #46583 * (SEMVER-MINOR) allow blobs in addition to `FILE*`s in embedder snapshot API (Anna Henningsen) #46491 * (SEMVER-MINOR) allow snapshotting from the embedder API (Anna Henningsen) #45888 * (SEMVER-MINOR) make build_snapshot a per-Isolate option, rather than a global one (Anna Henningsen) #45888 * (SEMVER-MINOR) add snapshot support for embedder API (Anna Henningsen) #45888 * (SEMVER-MINOR) allow embedder control of code generation policy (Shelley Vohr) #46368 stream: * (SEMVER-MINOR) add abort signal for ReadableStream and WritableStream (Debadree Chatterjee) #46273 test_runner: * add initial code coverage support (Colin Ihrig) #46017 url: * replace url-parser with ada (Yagiz Nizipli) #46410 PR-URL: #46725
1 parent b73fe69 commit 89322ae

7 files changed

+149
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a><br/>

doc/api/async_context.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ added:
123123
- v13.10.0
124124
- v12.17.0
125125
changes:
126-
- version: REPLACEME
126+
- version: v19.7.0
127127
pr-url: https://github.com/nodejs/node/pull/46386
128128
description: Removed experimental onPropagate option.
129129
- version:

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ Use this flag to enable [ShadowRealm][] support.
439439
### `--experimental-test-coverage`
440440

441441
<!-- YAML
442-
added: REPLACEME
442+
added: v19.7.0
443443
-->
444444

445445
When used in conjunction with the `node:test` module, a code coverage report is

doc/api/single-executable-applications.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Single executable applications
22

3-
<!--introduced_in=REPLACEME-->
3+
<!--introduced_in=v19.7.0-->
44

55
> Stability: 1 - Experimental: This feature is being designed and will change.
66

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2698,7 +2698,7 @@ const cleanup = finished(rs, (err) => {
26982698
<!-- YAML
26992699
added: v10.0.0
27002700
changes:
2701-
- version: REPLACEME
2701+
- version: v19.7.0
27022702
pr-url: https://github.com/nodejs/node/pull/46307
27032703
description: Added support for webstreams.
27042704
- version: v18.0.0
@@ -3229,7 +3229,7 @@ readable.getReader().read().then((result) => {
32293229
<!-- YAML
32303230
added: v15.4.0
32313231
changes:
3232-
- version: REPLACEME
3232+
- version: v19.7.0
32333233
pr-url: https://github.com/nodejs/node/pull/46273
32343234
description: Added support for `ReadableStream` and
32353235
`WritableStream`.

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ channel.port2.postMessage(signal, [signal]);
19911991
## `util.aborted(signal, resource)`
19921992
19931993
<!-- YAML
1994-
added: REPLACEME
1994+
added: v19.7.0
19951995
-->
19961996
19971997
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V19.md

+141-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)