summaryrefslogtreecommitdiff
path: root/doc/api/stream.md
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-08-13 22:33:49 +0200
committerEvan Lucas <evanlucas@me.com>2017-08-15 15:05:22 -0500
commit1fe0741e50b19ffaaabc77c3a8b99355dc3d28fe (patch)
treebf1e8567b6a21dc469f701c591965a999a2ad3f9 /doc/api/stream.md
parent5f31d547201db8176a8ae9cc3b673f0840fff705 (diff)
downloadandroid-node-v8-1fe0741e50b19ffaaabc77c3a8b99355dc3d28fe.tar.gz
android-node-v8-1fe0741e50b19ffaaabc77c3a8b99355dc3d28fe.tar.bz2
android-node-v8-1fe0741e50b19ffaaabc77c3a8b99355dc3d28fe.zip
2017-08-15, Version 8.4.0 (Current)
Notable changes * **HTTP2** * Experimental support for the built-in `http2` has been added via the `--expose-http2` flag. [#14239](https://github.com/nodejs/node/pull/14239) * **Inspector** * `require()` is available in the inspector console now. [#8837](https://github.com/nodejs/node/pull/8837) * Multiple contexts, as created by the `vm` module, are supported now. [#14465](https://github.com/nodejs/node/pull/14465) * **N-API** * New APIs for creating number values have been introduced. [#14573](https://github.com/nodejs/node/pull/14573) * **Stream** * For `Duplex` streams, the high water mark option can now be set independently for the readable and the writable side. [#14636](https://github.com/nodejs/node/pull/14636) * **Util** * `util.format` now supports the `%o` and `%O` specifiers for printing objects. [#14558](https://github.com/nodejs/node/pull/14558) PR-URL: https://github.com/nodejs/node/pull/14811
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 7d42bd2d71..3663fe2d78 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1742,7 +1742,7 @@ constructor and implement *both* the `readable._read()` and
#### new stream.Duplex(options)
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v8.4.0
pr-url: https://github.com/nodejs/node/pull/14636
description: The `readableHighWaterMark` and `writableHighWaterMark` options
are supported now.