Skip to content

Commit

Permalink
2023-02-21, Version 19.7.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
MylesBorins committed Feb 21, 2023
1 parent b73fe69 commit 89322ae
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/async_context.md
Expand Up @@ -123,7 +123,7 @@ added:
- v13.10.0
- v12.17.0
changes:
- version: REPLACEME
- version: v19.7.0
pr-url: https://github.com/nodejs/node/pull/46386
description: Removed experimental onPropagate option.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -439,7 +439,7 @@ Use this flag to enable [ShadowRealm][] support.
### `--experimental-test-coverage`

<!-- YAML
added: REPLACEME
added: v19.7.0
-->

When used in conjunction with the `node:test` module, a code coverage report is
Expand Down
2 changes: 1 addition & 1 deletion doc/api/single-executable-applications.md
@@ -1,6 +1,6 @@
# Single executable applications

<!--introduced_in=REPLACEME-->
<!--introduced_in=v19.7.0-->

> Stability: 1 - Experimental: This feature is being designed and will change.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -2698,7 +2698,7 @@ const cleanup = finished(rs, (err) => {
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v19.7.0
pr-url: https://github.com/nodejs/node/pull/46307
description: Added support for webstreams.
- version: v18.0.0
Expand Down Expand Up @@ -3229,7 +3229,7 @@ readable.getReader().read().then((result) => {
<!-- YAML
added: v15.4.0
changes:
- version: REPLACEME
- version: v19.7.0
pr-url: https://github.com/nodejs/node/pull/46273
description: Added support for `ReadableStream` and
`WritableStream`.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -1991,7 +1991,7 @@ channel.port2.postMessage(signal, [signal]);
## `util.aborted(signal, resource)`
<!-- YAML
added: REPLACEME
added: v19.7.0
-->
> Stability: 1 - Experimental
Expand Down
142 changes: 141 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

0 comments on commit 89322ae

Please sign in to comment.