Skip to content

Commit 4a53612

Browse files
committed
2020-03-11 Version 13.11.0 (Current)
Notable changes: * async_hooks: - add sync enterWith to ALS (Stephen Belanger) #31945 * cli: - allow --jitless V8 flag in NODE\_OPTIONS (Andrew Neitsch) #32100 * fs: - return first folder made by mkdir recursive (Benjamin Coe) #31530 * n-api: - define release 6 (Gabriel Schulhof) #32058 * src: - create a getter for kernel version (Juan José Arboleda) #31732 * wasi: - add returnOnExit option (Colin Ihrig) #32101 PR-URL: #32185
1 parent fab8c83 commit 4a53612

File tree

6 files changed

+132
-9
lines changed

6 files changed

+132
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.10.1">13.10.1</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a><br/>

doc/api/async_hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ return `undefined`.
957957

958958
### `asyncLocalStorage.enterWith(store)`
959959
<!-- YAML
960-
added: REPLACEME
960+
added: v13.11.0
961961
-->
962962

963963
* `store` {any}

doc/api/fs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2777,9 +2777,9 @@ a `Promise` for an `Object` with `bytesRead` and `buffer` properties.
27772777

27782778
## `fs.read(fd, [options,] callback)`
27792779
<!-- YAML
2780-
added: REPLACEME
2780+
added: v13.11.0
27812781
changes:
2782-
- version: REPLACEME
2782+
- version: v13.11.0
27832783
pr-url: https://github.com/nodejs/node/pull/31402
27842784
description: Options object can be passed in
27852785
to make Buffer, offset, length and position optional
@@ -4387,7 +4387,7 @@ property that is a reference to the passed in `buffer` argument.
43874387

43884388
#### `filehandle.read(options)`
43894389
<!-- YAML
4390-
added: REPLACEME
4390+
added: v13.11.0
43914391
-->
43924392
* `options` {Object}
43934393
* `buffer` {Buffer|Uint8Array} **Default:** `Buffer.alloc(16384)`

doc/api/os.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ Throws a [`SystemError`][] if a user has no `username` or `homedir`.
391391

392392
## `os.version()`
393393
<!-- YAML
394-
added: REPLACEME
394+
added: v13.11.0
395395
-->
396396

397397
* Returns {string}

0 commit comments

Comments
 (0)