Skip to content

Commit bcad113

Browse files
committed
2022-11-29, Version 19.2.0 (Current)
Notable changes: buffer: * (SEMVER-MINOR) introduce File (Khafra) #45139 deps: * 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: TBD
1 parent e7a5b33 commit bcad113

9 files changed

+150
-15
lines changed

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.2.0
127127
pr-url: https://github.com/nodejs/node/pull/45386
128128
description: Add option onPropagate.
129129
-->

doc/api/buffer.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5016,7 +5016,7 @@ See [`Buffer.from(string[, encoding])`][`Buffer.from(string)`].
50165016
## Class: `File`
50175017

50185018
<!-- YAML
5019-
added: REPLACEME
5019+
added: v19.2.0
50205020
-->
50215021

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

50305030
<!-- YAML
5031-
added: REPLACEME
5031+
added: v19.2.0
50325032
-->
50335033

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

50485048
<!-- YAML
5049-
added: REPLACEME
5049+
added: v19.2.0
50505050
-->
50515051

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

50585058
<!-- YAML
5059-
added: REPLACEME
5059+
added: v19.2.0
50605060
-->
50615061

50625062
* Type: {number}

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,7 @@ added:
12091209
- v18.1.0
12101210
- v16.17.0
12111211
changes:
1212-
- version: REPLACEME
1212+
- version: v19.2.0
12131213
pr-url: https://github.com/nodejs/node/pull/45214
12141214
description: Test runner now supports running in watch mode.
12151215
-->
@@ -1581,7 +1581,7 @@ amount of CPUs, but it may diverge in environments such as VMs or containers.
15811581
<!-- YAML
15821582
added: v18.11.0
15831583
changes:
1584-
- version: REPLACEME
1584+
- version: v19.2.0
15851585
pr-url: https://github.com/nodejs/node/pull/45214
15861586
description: Test runner now supports running in watch mode.
15871587
-->

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3297,7 +3297,7 @@ issued for `url.parse()` vulnerabilities.
32973297
<!-- YAML
32983298
changes:
32993299
- version:
3300-
- REPLACEME
3300+
- v19.2.0
33013301
pr-url: https://github.com/nodejs/node/pull/45576
33023302
description: Documentation-only deprecation.
33033303
-->

doc/api/diagnostics_channel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- YAML
44
added: v15.1.0
55
changes:
6-
- version: REPLACEME
6+
- version: v19.2.0
77
pr-url: https://github.com/nodejs/node/pull/45290
88
description: diagnostics_channel is now Stable.
99
-->

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ handle and/or callback scope inside the function body is not necessary.
901901
#### `napi_cleanup_hook`
902902

903903
<!-- YAML
904-
added: REPLACEME
904+
added: v19.2.0
905905
napiVersion: 3
906906
-->
907907

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ test('a test that creates asynchronous activity', (t) => {
294294
## Watch mode
295295

296296
<!-- YAML
297-
added: REPLACEME
297+
added: v19.2.0
298298
-->
299299

300300
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V19.md

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

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 19
26-
#define NODE_MINOR_VERSION 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)