@@ -3479,6 +3479,9 @@ method.
3479
3479
3480
3480
<!-- YAML
3481
3481
changes:
3482
+ - version: REPLACEME
3483
+ pr-url: https://github.com/nodejs/node/pull/52037
3484
+ description: bump default highWaterMark.
3482
3485
- version: v15.5.0
3483
3486
pr-url: https://github.com/nodejs/node/pull/36431
3484
3487
description: support passing in an AbortSignal.
@@ -3500,7 +3503,7 @@ changes:
3500
3503
* ` options ` {Object}
3501
3504
* ` highWaterMark ` {number} Buffer level when
3502
3505
[ ` stream.write() ` ] [ stream-write ] starts returning ` false ` . ** Default:**
3503
- ` 16384 ` (16 KiB), or ` 16 ` for ` objectMode ` streams.
3506
+ ` 65536 ` (64 KiB), or ` 16 ` for ` objectMode ` streams.
3504
3507
* ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
3505
3508
[ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
3506
3509
specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -3856,6 +3859,9 @@ constructor and implement the [`readable._read()`][] method.
3856
3859
3857
3860
<!-- YAML
3858
3861
changes:
3862
+ - version: REPLACEME
3863
+ pr-url: https://github.com/nodejs/node/pull/52037
3864
+ description: bump default highWaterMark.
3859
3865
- version: v15.5.0
3860
3866
pr-url: https://github.com/nodejs/node/pull/36431
3861
3867
description: support passing in an AbortSignal.
@@ -3873,7 +3879,7 @@ changes:
3873
3879
* ` options ` {Object}
3874
3880
* ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
3875
3881
in the internal buffer before ceasing to read from the underlying resource.
3876
- ** Default:** ` 16384 ` (16 KiB), or ` 16 ` for ` objectMode ` streams.
3882
+ ** Default:** ` 65536 ` (64 KiB), or ` 16 ` for ` objectMode ` streams.
3877
3883
* ` encoding ` {string} If specified, then buffers will be decoded to
3878
3884
strings using the specified encoding. ** Default:** ` null ` .
3879
3885
* ` objectMode ` {boolean} Whether this stream should behave
0 commit comments