Skip to content

Commit

Permalink
2022-11-29, Version 19.2.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

buffer:
  * (SEMVER-MINOR) introduce File (Khafra) nodejs#45139
deps:
  * update timezone to 2022f (Node.js GitHub Bot) nodejs#45289
  * update V8 to 10.8.168.20 (Michaël Zasso) nodejs#45230
doc:
  * deprecate use of invalid ports in `url.parse` (Antoine du Hamel) nodejs#45576
util:
  * add fast path for utf8 encoding (Yagiz Nizipli) nodejs#45412

PR-URL: nodejs#45615
  • Loading branch information
ruyadorno authored and ErickWendel committed Nov 30, 2022
1 parent d31b9e2 commit 278faae
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 13 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.1.0">19.1.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
</td>
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.2.0
pr-url: https://github.com/nodejs/node/pull/45386
description: Add option onPropagate.
-->
Expand Down
8 changes: 4 additions & 4 deletions doc/api/buffer.md
Expand Up @@ -5016,7 +5016,7 @@ See [`Buffer.from(string[, encoding])`][`Buffer.from(string)`].
## Class: `File`

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

> Stability: 1 - Experimental
Expand All @@ -5028,7 +5028,7 @@ A [`File`][] provides information about files.
### `new buffer.File(sources, fileName[, options])`

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

* `sources` {string\[]|ArrayBuffer\[]|TypedArray\[]|DataView\[]|Blob\[]|File\[]}
Expand All @@ -5046,7 +5046,7 @@ added: REPLACEME
### `file.name`

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

* Type: {string}
Expand All @@ -5056,7 +5056,7 @@ The name of the `File`.
### `file.lastModified`

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

* Type: {number}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -1210,7 +1210,7 @@ added:
- v18.1.0
- v16.17.0
changes:
- version: REPLACEME
- version: v19.2.0
pr-url: https://github.com/nodejs/node/pull/45214
description: Test runner now supports running in watch mode.
-->
Expand Down Expand Up @@ -1582,7 +1582,7 @@ amount of CPUs, but it may diverge in environments such as VMs or containers.
<!-- YAML
added: v18.11.0
changes:
- version: REPLACEME
- version: v19.2.0
pr-url: https://github.com/nodejs/node/pull/45214
description: Test runner now supports running in watch mode.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3300,7 +3300,7 @@ issued for `url.parse()` vulnerabilities.
<!-- YAML
changes:
- version:
- REPLACEME
- v19.2.0
pr-url: https://github.com/nodejs/node/pull/45576
description: Documentation-only deprecation.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/diagnostics_channel.md
Expand Up @@ -3,7 +3,7 @@
<!-- YAML
added: v15.1.0
changes:
- version: REPLACEME
- version: v19.2.0
pr-url: https://github.com/nodejs/node/pull/45290
description: diagnostics_channel is now Stable.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/n-api.md
Expand Up @@ -901,7 +901,7 @@ handle and/or callback scope inside the function body is not necessary.
#### `napi_cleanup_hook`

<!-- YAML
added: REPLACEME
added: v19.2.0
napiVersion: 3
-->

Expand Down
2 changes: 1 addition & 1 deletion doc/api/test.md
Expand Up @@ -294,7 +294,7 @@ test('a test that creates asynchronous activity', (t) => {
## Watch mode

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

> Stability: 1 - Experimental
Expand Down
143 changes: 142 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

0 comments on commit 278faae

Please sign in to comment.