Skip to content

Commit cf4c332

Browse files
committed
2020-04-14, Version 13.13.0 (Current)
Notable changes: New file system APIs: * Added a new function, `fs.readv` (with sync and promisified versions). This function takes an array of `ArrayBufferView` elements and will write the data it reads sequentially to the buffers (Sk Sajidul Kadir). #32356 * A new overload is available for `fs.readSync`, which allows to optionally pass any of the `offset`, `length` and `position` parameters. #32460 Other changes: * dns: * Added the `dns.ALL` flag, that can be passed to `dns.lookup()` with `dns.V4MAPPED` to return resolved IPv6 addresses as well as IPv4 mapped IPv6 addresses (murgatroid99). #32183 * http: * The default maximum HTTP header size was changed from 8KB to 16KB (rosaxny). #32520 * n-api: * Calls to `napi_call_threadsafe_function` from the main thread can now return the `napi_would_deadlock` status in certain circumstances (Gabriel Schulhof). #32689 * util: * Added a new `maxStrLength` option to `util.inspect`, to control the maximum length of printed strings. Its default value is `Infinity` (rosaxny). #32392 * worker: * Added support for passing a `transferList` along with `workerData` to the `Worker` constructor (Juan José Arboleda). #32278 New core collaborators: With this release, we welcome three new Node.js core collaborators: * himself65. #32734 * flarna (Gerhard Stoebich). #32620 * mildsunrise (Alba Mendez). #32525 PR-URL: #32813
1 parent afae925 commit cf4c332

File tree

9 files changed

+235
-12
lines changed

9 files changed

+235
-12
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ disappear in a non-semver-major release.
441441
<!-- YAML
442442
added: v11.6.0
443443
changes:
444-
- version: REPLACEME
444+
- version: v13.13.0
445445
pr-url: https://github.com/nodejs/node/pull/32520
446446
description: Change maximum default size of HTTP headers from 8KB to 16KB.
447447
-->

doc/api/dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ is not set to `true`, it returns a `Promise` for an `Object` with `address` and
202202
### Supported getaddrinfo flags
203203
<!-- YAML
204204
changes:
205-
- version: REPLACEME
205+
- version: v13.13.0
206206
pr-url: https://github.com/nodejs/node/pull/32183
207207
description: Added support for the `dns.ALL` flag.
208208
-->

doc/api/fs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3071,9 +3071,9 @@ this API: [`fs.read()`][].
30713071

30723072
## `fs.readSync(fd, buffer, [options])`
30733073
<!-- YAML
3074-
added: REPLACEME
3074+
added: v13.13.0
30753075
changes:
3076-
- version: REPLACEME
3076+
- version: v13.13.0
30773077
pr-url: https://github.com/nodejs/node/pull/32460
30783078
description: Options object can be passed in
30793079
to make offset, length and position optional
@@ -3097,7 +3097,7 @@ this API: [`fs.read()`][].
30973097

30983098
## `fs.readv(fd, buffers[, position], callback)`
30993099
<!-- YAML
3100-
added: REPLACEME
3100+
added: v13.13.0
31013101
-->
31023102

31033103
* `fd` {integer}
@@ -3120,7 +3120,7 @@ The callback will be given three arguments: `err`, `bytesRead`, and
31203120

31213121
## `fs.readvSync(fd, buffers[, position])`
31223122
<!-- YAML
3123-
added: REPLACEME
3123+
added: v13.13.0
31243124
-->
31253125

31263126
* `fd` {integer}
@@ -4509,7 +4509,7 @@ of the file.
45094509

45104510
#### `filehandle.readv(buffers[, position])`
45114511
<!-- YAML
4512-
added: REPLACEME
4512+
added: v13.13.0
45134513
-->
45144514

45154515
* `buffers` {ArrayBufferView[]}

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5239,7 +5239,7 @@ This API may be called from any thread which makes use of `func`.
52395239
added: v10.6.0
52405240
napiVersion: 4
52415241
changes:
5242-
- version: REPLACEME
5242+
- version: v13.13.0
52435243
pr-url: https://github.com/nodejs/node/pull/32689
52445244
description: >
52455245
Return `napi_would_deadlock` when called with `napi_tsfn_blocking` from

doc/api/perf_hooks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ to mark specific significant moments in the Performance Timeline.
6060
<!-- YAML
6161
added: v8.5.0
6262
changes:
63-
- version: REPLACEME
63+
- version: v13.13.0
6464
pr-url: https://github.com/nodejs/node/pull/32651
6565
description: Make `startMark` and `endMark` parameters optional.
6666
-->

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ stream.write('With ES6');
398398
<!-- YAML
399399
added: v0.3.0
400400
changes:
401-
- version: REPLACEME
401+
- version: v13.13.0
402402
pr-url: https://github.com/nodejs/node/pull/32392
403403
description: The `maxStringLength` option is supported now.
404404
- version: v13.5.0

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ if (isMainThread) {
513513
<!-- YAML
514514
added: v10.5.0
515515
changes:
516-
- version: REPLACEME
516+
- version: v13.13.0
517517
pr-url: https://github.com/nodejs/node/pull/32278
518518
description: The `transferList` option was introduced.
519519
- version: v13.12.0

doc/changelogs/CHANGELOG_V13.md

+222
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)