Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit590947c

Browse files
committed
2022-11-29, Version 19.2.0 (Current)
Notable changes:buffer: * (SEMVER-MINOR) introduce File (Khafra)#45139deps: * update timezone to 2022f (Node.js GitHub Bot)#45289 * update V8 to 10.8.168.20 (Michaël Zasso)#45230doc: * deprecate use of invalid ports in `url.parse` (Antoine du Hamel)#45576util: * add fast path for utf8 encoding (Yagiz Nizipli)#45412PR-URL:#45615
1 parente7a5b33 commit590947c

File tree

10 files changed

+159
-16
lines changed

10 files changed

+159
-16
lines changed

‎CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<tdvalign="top">
38-
<b><ahref="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a></b><br/>
38+
<b><ahref="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a></b><br/>
39+
<ahref="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
3940
<ahref="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
4041
<ahref="doc/changelogs/CHANGELOG_V19.md#19.0.0">19.0.0</a><br/>
4142
</td>

‎doc/api/async_context.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 4 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 143 additions & 1 deletion
Large diffs are not rendered by default.

‎src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#defineSRC_NODE_VERSION_H_
2424

2525
#defineNODE_MAJOR_VERSION 19
26-
#defineNODE_MINOR_VERSION1
27-
#defineNODE_PATCH_VERSION1
26+
#defineNODE_MINOR_VERSION2
27+
#defineNODE_PATCH_VERSION0
2828

2929
#defineNODE_VERSION_IS_LTS 0
3030
#defineNODE_VERSION_LTS_CODENAME ""
3131

32-
#defineNODE_VERSION_IS_RELEASE0
32+
#defineNODE_VERSION_IS_RELEASE1
3333

3434
#ifndefNODE_STRINGIFY
3535
#defineNODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp