From 02c74e72eacc34fa90ae85983900a5d93f13b6c8 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Wed, 4 Sep 2019 00:10:04 +0200 Subject: 2019-09-04, Version 12.10.0 (Current) 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 --- CHANGELOG.md | 3 +- doc/api/esm.md | 2 +- doc/api/fs.md | 18 ++++---- doc/api/net.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 100 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 113 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76191bcf34..6add84b012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -12.9.1
+12.10.0
+12.9.1
12.9.0
12.8.1
12.8.0
diff --git a/doc/api/esm.md b/doc/api/esm.md index 0ed0d7d1b4..1d6ae5d599 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 [`data:` URLs][] are supported for importing with the following MIME types: diff --git a/doc/api/fs.md b/doc/api/fs.md index 5341b4bc15..5b210be5ee 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -735,7 +735,7 @@ milliseconds since the POSIX Epoch. ### stats.atimeNs * {bigint} @@ -747,7 +747,7 @@ nanoseconds since the POSIX Epoch. ### stats.mtimeNs * {bigint} @@ -759,7 +759,7 @@ nanoseconds since the POSIX Epoch. ### stats.ctimeNs * {bigint} @@ -771,7 +771,7 @@ in nanoseconds since the POSIX Epoch. ### stats.birthtimeNs * {bigint} @@ -1506,7 +1506,7 @@ fs.copyFileSync('source.txt', 'destination.txt', COPYFILE_EXCL);