summaryrefslogtreecommitdiff
path: root/doc/api/zlib.md
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-02-21 23:38:50 +0100
committerAnna Henningsen <anna@addaleax.net>2017-02-24 02:06:31 +0100
commitadcd0bd9b457668930e0d5105426929a9b1b8fbd (patch)
treeb08789b6dcb11d56e58ce024909169eecceca94a /doc/api/zlib.md
parent08d5ab9aaed95f95fb9831b4e36c8c1ef4ebc7a3 (diff)
downloadandroid-node-v8-adcd0bd9b457668930e0d5105426929a9b1b8fbd.tar.gz
android-node-v8-adcd0bd9b457668930e0d5105426929a9b1b8fbd.tar.bz2
android-node-v8-adcd0bd9b457668930e0d5105426929a9b1b8fbd.zip
doc: add changelogs for zlib
PR-URL: https://github.com/nodejs/node/pull/11489 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'doc/api/zlib.md')
-rw-r--r--doc/api/zlib.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/api/zlib.md b/doc/api/zlib.md
index 0d79c084ac..5b02a8ed37 100644
--- a/doc/api/zlib.md
+++ b/doc/api/zlib.md
@@ -277,6 +277,10 @@ Compression strategy.
## Class Options
<!-- YAML
added: v0.11.1
+changes:
+ - version: v5.11.0
+ pr-url: https://github.com/nodejs/node/pull/6069
+ description: The `finishFlush` option is supported now.
-->
<!--type=misc-->
@@ -315,6 +319,17 @@ Compress data using deflate, and do not append a `zlib` header.
## Class: zlib.Gunzip
<!-- YAML
added: v0.5.8
+changes:
+ - version: v6.0.0
+ pr-url: https://github.com/nodejs/node/pull/5883
+ description: Trailing garbage at the end of the input stream will now
+ result in an `error` event.
+ - version: v5.9.0
+ pr-url: https://github.com/nodejs/node/pull/5120
+ description: Multiple concatenated gzip file members are supported now.
+ - version: v5.0.0
+ pr-url: https://github.com/nodejs/node/pull/2595
+ description: A truncated input stream will now result in an `error` event.
-->
Decompress a gzip stream.
@@ -329,6 +344,10 @@ Compress data using gzip.
## Class: zlib.Inflate
<!-- YAML
added: v0.5.8
+changes:
+ - version: v5.0.0
+ pr-url: https://github.com/nodejs/node/pull/2595
+ description: A truncated input stream will now result in an `error` event.
-->
Decompress a deflate stream.
@@ -336,6 +355,13 @@ Decompress a deflate stream.
## Class: zlib.InflateRaw
<!-- YAML
added: v0.5.8
+changes:
+ - version: v6.8.0
+ pr-url: https://github.com/nodejs/node/pull/8512
+ description: Custom dictionaries are now supported by `InflateRaw`.
+ - version: v5.0.0
+ pr-url: https://github.com/nodejs/node/pull/2595
+ description: A truncated input stream will now result in an `error` event.
-->
Decompress a raw deflate stream.