Skip to content

Commit 5bfbd75

Browse files
committedMar 12, 2020
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 2bfb340 commit 5bfbd75

File tree

5 files changed

+129
-6
lines changed

5 files changed

+129
-6
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.10.1">13.10.1</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a><br/>

‎doc/api/async_hooks.md

+1-1
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2766,9 +2766,9 @@ a `Promise` for an `Object` with `bytesRead` and `buffer` properties.
27662766

27672767
## `fs.read(fd, [options,] callback)`
27682768
<!-- YAML
2769-
added: REPLACEME
2769+
added: v13.11.0
27702770
changes:
2771-
- version: REPLACEME
2771+
- version: v13.11.0
27722772
pr-url: https://github.com/nodejs/node/pull/31402
27732773
description: Options object can be passed in
27742774
to make Buffer, offset, length and position optional
@@ -4402,7 +4402,7 @@ property that is a reference to the passed in `buffer` argument.
44024402

44034403
#### `filehandle.read(options)`
44044404
<!-- YAML
4405-
added: REPLACEME
4405+
added: v13.11.0
44064406
-->
44074407
* `options` {Object}
44084408
* `buffer` {Buffer|Uint8Array} **Default:** `Buffer.alloc(16384)`

‎doc/api/os.md

+1-1
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)
Please sign in to comment.