@@ -3479,6 +3479,9 @@ method.
34793479
34803480<!-- YAML
34813481changes:
3482+ - version: REPLACEME
3483+ pr-url: https://github.com/nodejs/node/pull/52037
3484+ description: bump default highWaterMark.
34823485 - version: v15.5.0
34833486 pr-url: https://github.com/nodejs/node/pull/36431
34843487 description: support passing in an AbortSignal.
@@ -3500,7 +3503,7 @@ changes:
35003503* ` options ` {Object}
35013504 * ` highWaterMark ` {number} Buffer level when
35023505 [ ` 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.
35043507 * ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
35053508 [ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
35063509 specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -3856,6 +3859,9 @@ constructor and implement the [`readable._read()`][] method.
38563859
38573860<!-- YAML
38583861changes:
3862+ - version: REPLACEME
3863+ pr-url: https://github.com/nodejs/node/pull/52037
3864+ description: bump default highWaterMark.
38593865 - version: v15.5.0
38603866 pr-url: https://github.com/nodejs/node/pull/36431
38613867 description: support passing in an AbortSignal.
@@ -3873,7 +3879,7 @@ changes:
38733879* ` options ` {Object}
38743880 * ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
38753881 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.
38773883 * ` encoding ` {string} If specified, then buffers will be decoded to
38783884 strings using the specified encoding. ** Default:** ` null ` .
38793885 * ` objectMode ` {boolean} Whether this stream should behave
0 commit comments