From 7ca38f05a023666274569343f128c5aed81599f3 Mon Sep 17 00:00:00 2001 From: Danielle Adams Date: Mon, 16 Aug 2021 17:03:53 -0400 Subject: 2021-08-17, Version 16.7.0 (Current) Notable changes: * fs: * experimental: add recursive cp method (Benjamin Coe) https://github.com/nodejs/node/pull/39372 PR-URL: https://github.com/nodejs/node/pull/39782 --- doc/api/buffer.md | 6 +++--- doc/api/dns.md | 2 +- doc/api/errors.md | 16 ++++++++-------- doc/api/fs.md | 6 +++--- doc/api/http.md | 2 +- doc/api/https.md | 2 +- doc/api/perf_hooks.md | 2 +- doc/api/stream.md | 2 +- doc/api/url.md | 4 ++-- doc/api/webcrypto.md | 2 +- doc/api/webstreams.md | 28 ++++++++++++++-------------- 11 files changed, 36 insertions(+), 36 deletions(-) (limited to 'doc/api') diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 0e4fefdf8ed..883b173b0fc 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -460,7 +460,7 @@ multiple worker threads. * Returns: {ReadableStream} @@ -4962,7 +4962,7 @@ An alias for [`buffer.constants.MAX_STRING_LENGTH`][]. ### `buffer.resolveObjectURL(id)` > Stability: 1 - Experimental diff --git a/doc/api/dns.md b/doc/api/dns.md index 8a91b3f6bd8..fad19e245a5 100644 --- a/doc/api/dns.md +++ b/doc/api/dns.md @@ -97,7 +97,7 @@ The following methods from the `dns` module are available: An attempt was made to copy a directory to a non-directory (file, symlink, @@ -1127,7 +1127,7 @@ etc.) using [`fs.cp()`][]. ### `ERR_FS_CP_EEXIST` An attempt was made to copy over a file that already existed with @@ -1136,7 +1136,7 @@ An attempt was made to copy over a file that already existed with ### `ERR_FS_CP_EINVAL` When using [`fs.cp()`][], `src` or `dest` pointed to an invalid path. @@ -1144,7 +1144,7 @@ When using [`fs.cp()`][], `src` or `dest` pointed to an invalid path. ### `ERR_FS_CP_FIFO_PIPE` An attempt was made to copy a named pipe with [`fs.cp()`][]. @@ -1152,7 +1152,7 @@ An attempt was made to copy a named pipe with [`fs.cp()`][]. ### `ERR_FS_CP_NON_DIR_TO_DIR` An attempt was made to copy a non-directory (file, symlink, etc.) to a directory @@ -1161,7 +1161,7 @@ using [`fs.cp()`][]. ### `ERR_FS_CP_SOCKET` An attempt was made to copy to a socket with [`fs.cp()`][]. @@ -1169,7 +1169,7 @@ An attempt was made to copy to a socket with [`fs.cp()`][]. ### `ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY` When using [`fs.cp()`][], a symlink in `dest` pointed to a subdirectory @@ -1178,7 +1178,7 @@ of `src`. ### `ERR_FS_CP_UNKNOWN` An attempt was made to copy to an unknown file type with [`fs.cp()`][]. diff --git a/doc/api/fs.md b/doc/api/fs.md index fb1e8cdf7f0..cd47b687beb 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -741,7 +741,7 @@ try { ### `fsPromises.cp(src, dest[, options])` > Stability: 1 - Experimental @@ -1884,7 +1884,7 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback); ### `fs.cp(src, dest[, options], callback)` > Stability: 1 - Experimental @@ -4391,7 +4391,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL); ### `fs.cpSync(src, dest[, options])` > Stability: 1 - Experimental diff --git a/doc/api/http.md b/doc/api/http.md index 9c35e5d090a..bc66d6163a3 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2835,7 +2835,7 @@ This can be overridden for servers and client requests by passing the > Stability: 1 - Experimental diff --git a/doc/api/url.md b/doc/api/url.md index d4b212f515d..712e974d511 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -610,7 +610,7 @@ console.log(JSON.stringify(myURLs)); #### `URL.createObjectURL(blob)` > Stability: 1 - Experimental @@ -645,7 +645,7 @@ to other workers or the main thread. #### `URL.revokeObjectURL(id)` > Stability: 1 - Experimental diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index fb27134a410..38521e1b29c 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -363,7 +363,7 @@ An error will be thrown if the given `typedArray` is larger than 65,536 bytes. ### `crypto.randomUUID()` * Returns: {string} diff --git a/doc/api/webstreams.md b/doc/api/webstreams.md index 67675d62975..e3071478f3f 100644 --- a/doc/api/webstreams.md +++ b/doc/api/webstreams.md @@ -1221,58 +1221,58 @@ added: v16.6.0 ### Class: `CompressionStream` #### `new CompressionStream(format)` * `format` {string} One of either `'deflate'` or `'gzip'`. #### `compressionStream.readable` * Type: {ReadableStream} #### `compressionStream.writable` * Type: {WritableStream} ### Class: `DecompressionStream` #### `new DecompressionStream(format)` * `format` {string} One of either `'deflate'` or `'gzip'`. #### `decompressionStream.readable` * Type: {ReadableStream} #### `deccompressionStream.writable` * Type: {WritableStream} ### Utility Consumers The utility consumer functions provide common options for consuming @@ -1300,7 +1300,7 @@ const { #### `streamConsumers.arrayBuffer(stream)` * `stream` {ReadableStream|stream.Readable|AsyncIterator} @@ -1309,7 +1309,7 @@ added: REPLACEME #### `streamConsumers.blob(stream)` * `stream` {ReadableStream|stream.Readable|AsyncIterator} @@ -1318,7 +1318,7 @@ added: REPLACEME #### `streamConsumers.buffer(stream)` * `stream` {ReadableStream|stream.Readable|AsyncIterator} @@ -1327,7 +1327,7 @@ added: REPLACEME #### `streamConsumers.json(stream)` * `stream` {ReadableStream|stream.Readable|AsyncIterator} @@ -1336,7 +1336,7 @@ added: REPLACEME #### `streamConsumers.text(stream)` * `stream` {ReadableStream|stream.Readable|AsyncIterator} -- cgit v1.2.3