Skip to content

Commit 8130521

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 0a8e075 commit 8130521

10 files changed

+238
-15
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.13.0">13.13.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3637
<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
@@ -3082,9 +3082,9 @@ this API: [`fs.read()`][].
30823082

30833083
## `fs.readSync(fd, buffer, [options])`
30843084
<!-- YAML
3085-
added: REPLACEME
3085+
added: v13.13.0
30863086
changes:
3087-
- version: REPLACEME
3087+
- version: v13.13.0
30883088
pr-url: https://github.com/nodejs/node/pull/32460
30893089
description: Options object can be passed in
30903090
to make offset, length and position optional
@@ -3108,7 +3108,7 @@ this API: [`fs.read()`][].
31083108

31093109
## `fs.readv(fd, buffers[, position], callback)`
31103110
<!-- YAML
3111-
added: REPLACEME
3111+
added: v13.13.0
31123112
-->
31133113

31143114
* `fd` {integer}
@@ -3131,7 +3131,7 @@ The callback will be given three arguments: `err`, `bytesRead`, and
31313131

31323132
## `fs.readvSync(fd, buffers[, position])`
31333133
<!-- YAML
3134-
added: REPLACEME
3134+
added: v13.13.0
31353135
-->
31363136

31373137
* `fd` {integer}
@@ -4494,7 +4494,7 @@ of the file.
44944494

44954495
#### `filehandle.readv(buffers[, position])`
44964496
<!-- YAML
4497-
added: REPLACEME
4497+
added: v13.13.0
44984498
-->
44994499

45004500
* `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.

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 13
26-
#define NODE_MINOR_VERSION 12
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 13
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)