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

Commite71333e

Browse files
committed
2023-03-14, Version 19.8.0 (Current)
Notable changes:buffer: * (SEMVER-MINOR) add Buffer.copyBytesFrom(...) (James M Snell)#46500doc: * add marco-ippolito to collaborators (Marco Ippolito)#46816events: * (SEMVER-MINOR) add listener argument to listenerCount (Paolo Insogna)#46523lib: * (SEMVER-MINOR) add AsyncLocalStorage.bind() and .snapshot() (flakey5)#46387src: * (SEMVER-MINOR) add `fs.openAsBlob` to support File-backed Blobs (James M Snell)#45258tls: * (SEMVER-MINOR) support automatic DHE (Tobias Nießen)#46978url: * (SEMVER-MINOR) implement URLSearchParams size getter (James M Snell)#46308wasi: * (SEMVER-MINOR) add support for version when creating WASI (Michael Dawson)#46469worker: * (SEMVER-MINOR) add support for worker name in inspector and trace_events (Debadree Chatterjee)#46832PR-URL:#47086
1 parent36c48ea commite71333e

File tree

14 files changed

+256
-21
lines changed

14 files changed

+256
-21
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.7.0">19.7.0</a></b><br/>
38+
<b><ahref="doc/changelogs/CHANGELOG_V19.md#19.8.0">19.8.0</a></b><br/>
39+
<ahref="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a><br/>
3940
<ahref="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
4041
<ahref="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
4142
<ahref="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>

‎doc/api/async_context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
139139
###Static method:`AsyncLocalStorage.bind(fn)`
140140

141141
<!-- YAML
142-
added:REPLACEME
142+
added:v19.8.0
143143
-->
144144

145145
>Stability: 1 - Experimental
@@ -153,7 +153,7 @@ Binds the given function to the current execution context.
153153
###Static method:`AsyncLocalStorage.snapshot()`
154154

155155
<!-- YAML
156-
added:REPLACEME
156+
added:v19.8.0
157157
-->
158158

159159
>Stability: 1 - Experimental

‎doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ console.log(bufA.length);
10611061
###Static method:`Buffer.copyBytesFrom(view[, offset[, length]])`
10621062

10631063
<!-- YAML
1064-
added:REPLACEME
1064+
added:v19.8.0
10651065
-->
10661066

10671067
*`view` {TypedArray} The {TypedArray} to copy.

‎doc/api/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ set by [`emitter.setMaxListeners(n)`][] or defaults to
651651
<!-- YAML
652652
added: v3.2.0
653653
changes:
654-
- version:REPLACEME
654+
- version:v19.8.0
655655
pr-url: https://github.com/nodejs/node/pull/46523
656656
description: Added the `listener` argument.
657657
-->

‎doc/api/fs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3331,7 +3331,7 @@ Functions based on `fs.open()` exhibit this behavior as well:
33313331
###`fs.openAsBlob(path[, options])`
33323332
33333333
<!-- YAML
3334-
added:REPLACEME
3334+
added:v19.8.0
33353335
-->
33363336
33373337
> Stability: 1 - Experimental

‎doc/api/net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,7 +1643,7 @@ Sets the default value of the `autoSelectFamily` option of [`socket.connect(opt
16431643
##`net.getDefaultAutoSelectFamilyAttemptTimeout()`
16441644

16451645
<!-- YAML
1646-
added:REPLACEME
1646+
added:v19.8.0
16471647
-->
16481648

16491649
Gets the current default value of the`autoSelectFamilyAttemptTimeout` option of[`socket.connect(options)`][].
@@ -1653,7 +1653,7 @@ Gets the current default value of the `autoSelectFamilyAttemptTimeout` option o
16531653
##`net.setDefaultAutoSelectFamilyAttemptTimeout(value)`
16541654

16551655
<!-- YAML
1656-
added:REPLACEME
1656+
added:v19.8.0
16571657
-->
16581658

16591659
Sets the default value of the`autoSelectFamilyAttemptTimeout` option of[`socket.connect(options)`][].

‎doc/api/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2797,7 +2797,7 @@ const server = http.createServer((req, res) => {
27972797
<!-- YAML
27982798
added: v16.9.0
27992799
changes:
2800-
- version:REPLACEME
2800+
- version:v19.8.0
28012801
pr-url: https://github.com/nodejs/node/pull/46675
28022802
description: Added support for webstreams.
28032803
-->

‎doc/api/test.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ Shorthand for marking a suite as `TODO`, same as
840840
##`describe.only([name][, options][, fn])`
841841

842842
<!-- YAML
843-
added:REPLACEME
843+
added:v19.8.0
844844
-->
845845

846846
Shorthand for marking a suite as`only`, same as
@@ -853,7 +853,7 @@ added:
853853
- v18.6.0
854854
- v16.17.0
855855
changes:
856-
- version:REPLACEME
856+
- version:v19.8.0
857857
pr-url: https://github.com/nodejs/node/pull/46889
858858
description: Calling `it()` is now equivalent to calling `test()`.
859859
-->
@@ -875,7 +875,7 @@ same as [`it([name], { todo: true }[, fn])`][it options].
875875
##`it.only([name][, options][, fn])`
876876

877877
<!-- YAML
878-
added:REPLACEME
878+
added:v19.8.0
879879
-->
880880

881881
Shorthand for marking a test as`only`,

‎doc/api/tls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ argument.
17901790
<!-- YAML
17911791
added: v0.11.13
17921792
changes:
1793-
- version:REPLACEME
1793+
- version:v19.8.0
17941794
pr-url: https://github.com/nodejs/node/pull/46978
17951795
description: The `dhparam` option can now be set to `'auto'` to
17961796
enable DHE with appropriate well-known parameters.
@@ -2254,7 +2254,7 @@ added: v11.4.0
22542254
##`tls.DEFAULT_CIPHERS`
22552255

22562256
<!-- YAML
2257-
added:REPLACEME
2257+
added:v19.8.0
22582258
-->
22592259

22602260
* {string} The default value of the`ciphers` option of

‎doc/api/url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ console.log(params.toString());
943943
####`urlSearchParams.size`
944944

945945
<!-- YAML
946-
added:REPLACEME
946+
added:v19.8.0
947947
-->
948948

949949
The total number of parameter entries.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp