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:
authorRuben Bridgewater <ruben@bridgewater.de>2019-09-04 01:10:04 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-09-04 18:04:16 +0300
commit3a2e75d9a5c31d20e429d505b82dd182e33f459a (patch)
treedb6db6872b73d5e19769f2eeb081260215d8725a /doc/api
parentcd70fd2bc06ea930f0159f736d26a9187f92b3e2 (diff)
2019-09-04, Version 12.10.0 (Current)v12.10.0
Notable changes: * deps: * Update npm to 6.10.3 (isaacs) https://github.com/nodejs/node/pull/29023 * fs: * Add recursive option to rmdir() (cjihrig) https://github.com/nodejs/node/pull/29168 * Allow passing true to emitClose option (Giorgos Ntemiris) https://github.com/nodejs/node/pull/29212 * Add \*timeNs properties to BigInt Stats objects (Joyee Cheung) https://github.com/nodejs/node/pull/21387 * net: * Allow reading data into a static buffer (Brian White) https://github.com/nodejs/node/pull/25436 PR-URL: https://github.com/nodejs/node/pull/29429
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/esm.md2
-rw-r--r--doc/api/fs.md18
-rw-r--r--doc/api/net.md2
3 files changed, 11 insertions, 11 deletions
diff --git a/doc/api/esm.md b/doc/api/esm.md
index 0ed0d7d1b4d..1d6ae5d5998 100644
--- a/doc/api/esm.md
+++ b/doc/api/esm.md
@@ -323,7 +323,7 @@ future use. The root of the current volume may be referenced via `file:///`.
#### `data:` Imports
<!-- YAML
-added: REPLACEME
+added: v12.10.0
-->
[`data:` URLs][] are supported for importing with the following MIME types:
diff --git a/doc/api/fs.md b/doc/api/fs.md
index a045f454188..d5262766aa4 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -735,7 +735,7 @@ milliseconds since the POSIX Epoch.
### stats.atimeNs
<!-- YAML
-added: REPLACEME
+added: v12.10.0
-->
* {bigint}
@@ -747,7 +747,7 @@ nanoseconds since the POSIX Epoch.
### stats.mtimeNs
<!-- YAML
-added: REPLACEME
+added: v12.10.0
-->
* {bigint}
@@ -759,7 +759,7 @@ nanoseconds since the POSIX Epoch.
### stats.ctimeNs
<!-- YAML
-added: REPLACEME
+added: v12.10.0
-->
* {bigint}
@@ -771,7 +771,7 @@ in nanoseconds since the POSIX Epoch.
### stats.birthtimeNs
<!-- YAML
-added: REPLACEME
+added: v12.10.0
-->
* {bigint}
@@ -1506,7 +1506,7 @@ fs.copyFileSync('source.txt', 'destination.txt', COPYFILE_EXCL);
<!-- YAML
added: v0.1.31
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29212
description: Enable `emitClose` option.
- version: v11.0.0
@@ -1602,7 +1602,7 @@ If `options` is a string, then it specifies the encoding.
<!-- YAML
added: v0.1.31
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29212
description: Enable `emitClose` option.
- version: v7.6.0
@@ -3023,7 +3023,7 @@ Synchronous rename(2). Returns `undefined`.
<!-- YAML
added: v0.0.2
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29168
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
now supported.
@@ -3069,7 +3069,7 @@ Windows and an `ENOTDIR` error on POSIX.
<!-- YAML
added: v0.1.21
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29168
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
now supported.
@@ -4729,7 +4729,7 @@ upon success.
<!-- YAML
added: v10.0.0
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/29168
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
now supported.
diff --git a/doc/api/net.md b/doc/api/net.md
index 21614411f54..b5cbd3e90ee 100644
--- a/doc/api/net.md
+++ b/doc/api/net.md
@@ -596,7 +596,7 @@ for the [`'connect'`][] event **once**.
<!-- YAML
added: v0.1.90
changes:
- - version: REPLACEME
+ - version: v12.10.0
pr-url: https://github.com/nodejs/node/pull/25436
description: Added `onread` option.
- version: v6.0.0