Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2020-03-11 01:56:51 +0300
committerMyles Borins <mylesborins@google.com>2020-03-12 06:54:53 +0300
commit5bfbd75e4720fc650f4e292b52be4106a9e05a41 (patch)
tree726b9eaf1ab10aee9fedc82141fef65e93de0e1b /doc/api
parent2bfb3403ed5d996fc0faf0f0b13a30b6e219e21f (diff)
2020-03-11 Version 13.11.0 (Current)
Notable changes: * async_hooks: - add sync enterWith to ALS (Stephen Belanger) https://github.com/nodejs/node/pull/31945 * cli: - allow --jitless V8 flag in NODE\_OPTIONS (Andrew Neitsch) https://github.com/nodejs/node/pull/32100 * fs: - return first folder made by mkdir recursive (Benjamin Coe) https://github.com/nodejs/node/pull/31530 * n-api: - define release 6 (Gabriel Schulhof) https://github.com/nodejs/node/pull/32058 * src: - create a getter for kernel version (Juan José Arboleda) https://github.com/nodejs/node/pull/31732 * wasi: - add returnOnExit option (Colin Ihrig) https://github.com/nodejs/node/pull/32101 PR-URL: https://github.com/nodejs/node/pull/32185
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/async_hooks.md2
-rw-r--r--doc/api/fs.md6
-rw-r--r--doc/api/os.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index fd5075c6259..2d4fc0498b0 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -957,7 +957,7 @@ return `undefined`.
### `asyncLocalStorage.enterWith(store)`
<!-- YAML
-added: REPLACEME
+added: v13.11.0
-->
* `store` {any}
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 1ad49948f5a..f66df8887d6 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -2766,9 +2766,9 @@ a `Promise` for an `Object` with `bytesRead` and `buffer` properties.
## `fs.read(fd, [options,] callback)`
<!-- YAML
-added: REPLACEME
+added: v13.11.0
changes:
- - version: REPLACEME
+ - version: v13.11.0
pr-url: https://github.com/nodejs/node/pull/31402
description: Options object can be passed in
to make Buffer, offset, length and position optional
@@ -4402,7 +4402,7 @@ property that is a reference to the passed in `buffer` argument.
#### `filehandle.read(options)`
<!-- YAML
-added: REPLACEME
+added: v13.11.0
-->
* `options` {Object}
* `buffer` {Buffer|Uint8Array} **Default:** `Buffer.alloc(16384)`
diff --git a/doc/api/os.md b/doc/api/os.md
index d8a75e8c1ee..0a1da4690cc 100644
--- a/doc/api/os.md
+++ b/doc/api/os.md
@@ -391,7 +391,7 @@ Throws a [`SystemError`][] if a user has no `username` or `homedir`.
## `os.version()`
<!-- YAML
-added: REPLACEME
+added: v13.11.0
-->
* Returns {string}