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) #45139
deps:
  * update timezone to 2022f (Node.js GitHub Bot) #45289
  * update V8 to 10.8.168.20 (Michaël Zasso) #45230
doc:
  * deprecate use of invalid ports in `url.parse` (Antoine du Hamel) #45576
util:
  * add fast path for utf8 encoding (Yagiz Nizipli) #45412

PR-URL: #45615
  • Loading branch information
ruyadorno committed Nov 25, 2022
1 parent e7a5b33 commit 590947c
Show file tree
Hide file tree
Showing 10 changed files with 159 additions and 16 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 @@ -1209,7 +1209,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 @@ -1581,7 +1581,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 @@ -3297,7 +3297,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
144 changes: 143 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 19
#define NODE_MINOR_VERSION 1
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 590947c

Please sign in to comment.