summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/console.md2
-rw-r--r--doc/api/crypto.md4
-rw-r--r--doc/api/errors.md4
-rw-r--r--doc/api/util.md2
-rw-r--r--doc/api/zlib.md22
5 files changed, 17 insertions, 17 deletions
diff --git a/doc/api/console.md b/doc/api/console.md
index 26e774aa29..1fe1949664 100644
--- a/doc/api/console.md
+++ b/doc/api/console.md
@@ -88,7 +88,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/19372
description: The `Console` constructor now supports an `options` argument,
and the `colorMode` option was introduced.
- - version: REPLACEME
+ - version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/24978
description: The `inspectOptions` option is introduced.
-->
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index b387c26842..1c755864bf 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -1352,7 +1352,7 @@ This can be called many times with new data as it is streamed.
<!-- YAML
added: v0.1.92
changes:
- - version: REPLACEME
+ - version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25217
description: The key can now be a private key.
- version: v8.0.0
@@ -1813,7 +1813,7 @@ must be an object with the properties described above.
<!-- YAML
added: v11.6.0
changes:
- - version: REPLACEME
+ - version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25217
description: The `key` argument can now be a private key.
-->
diff --git a/doc/api/errors.md b/doc/api/errors.md
index 48c3f5a2e7..f95e33855c 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -2133,7 +2133,7 @@ binary itself.
### ERR_UNKNOWN_STDIN_TYPE
<!-- YAML
added: v8.0.0
-removed: REPLACEME
+removed: v11.7.0
-->
An attempt was made to launch a Node.js process with an unknown `stdin` file
@@ -2144,7 +2144,7 @@ although it is possible for user code to trigger it.
### ERR_UNKNOWN_STREAM_TYPE
<!-- YAML
added: v8.0.0
-removed: REPLACEME
+removed: v11.7.0
-->
An attempt was made to launch a Node.js process with an unknown `stdout` or
diff --git a/doc/api/util.md b/doc/api/util.md
index f028699f5a..9db263632e 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -388,7 +388,7 @@ stream.write('With ES6');
<!-- YAML
added: v0.3.0
changes:
- - version: REPLACEME
+ - version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/25006
description: ArrayBuffers now also show their binary contents.
- version: v11.5.0
diff --git a/doc/api/zlib.md b/doc/api/zlib.md
index cbf3ebd180..f4bcaf95a2 100644
--- a/doc/api/zlib.md
+++ b/doc/api/zlib.md
@@ -304,7 +304,7 @@ Compression strategy.
### Brotli constants
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
There are several options and other constants available for Brotli-based
@@ -411,7 +411,7 @@ See the description of `deflateInit2` and `inflateInit2` at
## Class: BrotliOptions
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
<!--type=misc-->
@@ -438,14 +438,14 @@ const stream = zlib.createBrotliCompress({
## Class: zlib.BrotliCompress
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
Compress data using the Brotli algorithm.
## Class: zlib.BrotliDecompress
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
Decompress data using the Brotli algorithm.
@@ -526,7 +526,7 @@ the header.
<!-- YAML
added: v0.5.8
changes:
- - version: REPLACEME
+ - version: v11.7.0
pr-url: https://github.com/nodejs/node/pull/24939
description: This class was renamed from `Zlib` to `ZlibBase`.
-->
@@ -620,7 +620,7 @@ Provides an object enumerating Zlib-related constants.
## zlib.createBrotliCompress([options])
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `options` {brotli options}
@@ -629,7 +629,7 @@ Creates and returns a new [`BrotliCompress`][] object.
## zlib.createBrotliDecompress([options])
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `options` {brotli options}
@@ -720,7 +720,7 @@ without a callback.
### zlib.brotliCompress(buffer[, options], callback)
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
@@ -728,7 +728,7 @@ added: REPLACEME
### zlib.brotliCompressSync(buffer[, options])
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
@@ -737,7 +737,7 @@ Compress a chunk of data with [`BrotliCompress`][].
### zlib.brotliDecompress(buffer[, options], callback)
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}
@@ -745,7 +745,7 @@ added: REPLACEME
### zlib.brotliDecompressSync(buffer[, options])
<!-- YAML
-added: REPLACEME
+added: v11.7.0
-->
* `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
* `options` {brotli options}