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
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-01-16 17:55:55 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-01-18 16:03:19 +0300
commitd3f8f905b33347fc95057af01b72efc2966bd7c8 (patch)
tree94766f901fa968d11bd1f432647d1f4f19e34bdf /doc/api/zlib.md
parent20fdcad93545d3a3723655778fb2ae40c76dee4e (diff)
2019-01-17, Version 11.7.0 (Current), @BridgeAR
Notable Changes * compression / zlib: * Added brotli support (Anna Henningsen and Zach Vacura) https://github.com/nodejs/node/pull/24938 * console: * Added `inspectOptions` option (Ruben Bridgewater) https://github.com/nodejs/node/pull/24978 * crypto: * Always accept private keys as public keys (Tobias Nießen) https://github.com/nodejs/node/pull/25217 * deps: * Upgrade npm to v6.5.0 (Jordan Harband) https://github.com/nodejs/node/pull/25234 * fs: * Use internalBinding('fs') internally instead of process.binding('fs') (Masashi Hirano) https://github.com/nodejs/node/pull/22478 * http(s): * Support overriding http\\s.globalAgent (Roy Sommer) https://github.com/nodejs/node/pull/25170 * util: * Inspect ArrayBuffers contents closely (Ruben Bridgewater) https://github.com/nodejs/node/pull/25006 * worker: * Expose workers by default and remove `--experimental-worker` flag (Anna Henningsen) https://github.com/nodejs/node/pull/25361 PR-URL: https://github.com/nodejs/node/pull/25537
Diffstat (limited to 'doc/api/zlib.md')
-rw-r--r--doc/api/zlib.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/api/zlib.md b/doc/api/zlib.md
index cbf3ebd180f..f4bcaf95a20 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}