@@ -2333,6 +2333,9 @@ changes:
23332333 - version: v16.10.0
23342334 pr-url: https://github.com/nodejs/node/pull/40013
23352335 description: The `fs` option does not need `close` method if `autoClose` is `false`.
2336+ - version: v15.5.0
2337+ pr-url: https://github.com/nodejs/node/pull/36431
2338+ description: Add support for `AbortSignal`.
23362339 - version:
23372340 - v15.4.0
23382341 pr-url: https://github.com/nodejs/node/pull/35922
@@ -2379,6 +2382,7 @@ changes:
23792382 * `end` {integer} **Default:** `Infinity`
23802383 * `highWaterMark` {integer} **Default:** `64 * 1024`
23812384 * `fs` {Object|null} **Default:** `null`
2385+ * `signal` {AbortSignal|null} **Default:** `null`
23822386* Returns: {fs.ReadStream}
23832387
23842388Unlike the 16 KiB default `highWaterMark` for a {stream.Readable}, the stream
@@ -2458,6 +2462,9 @@ changes:
24582462 - version: v16.10.0
24592463 pr-url: https://github.com/nodejs/node/pull/40013
24602464 description: The `fs` option does not need `close` method if `autoClose` is `false`.
2465+ - version: v15.5.0
2466+ pr-url: https://github.com/nodejs/node/pull/36431
2467+ description: Add support for `AbortSignal`.
24612468 - version:
24622469 - v15.4.0
24632470 pr-url: https://github.com/nodejs/node/pull/35922
@@ -2500,6 +2507,7 @@ changes:
25002507 * `emitClose` {boolean} **Default:** `true`
25012508 * `start` {integer}
25022509 * `fs` {Object|null} **Default:** `null`
2510+ * `signal` {AbortSignal|null} **Default:** `null`
25032511* Returns: {fs.WriteStream}
25042512
25052513`options` may also include a `start` option to allow writing data at some
0 commit comments