From 54c7f5f263e2057ea1da91750461328ac483ba39 Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Thu, 4 Jan 2024 14:28:34 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 554fcf3..ae4a9af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ * 💥 The type definitions now require TypeScript 3.5 or higher. ([#130](https://github.com/MattiasBuelens/web-streams-polyfill/pull/130)) * 👓 Align with [spec version `4dc123a`](https://github.com/whatwg/streams/tree/4dc123a6e7f7ba89a8c6a7975b021156f39cab52/) ([#115](https://github.com/MattiasBuelens/web-streams-polyfill/issues/115), [#134](https://github.com/MattiasBuelens/web-streams-polyfill/pull/134)) * Added `ReadableStream.from(asyncIterable)`, which creates a `ReadableStream` wrapping the given iterable or async iterable. + This can also be used to wrap a native `ReadableStream` (e.g. a `Response.body` from `fetch()`), + even if the native `ReadableStream` doesn't yet support async iteration. ([#135](https://github.com/MattiasBuelens/web-streams-polyfill/pull/135)) * Added `Transformer.cancel` method, which is called when the readable side of a `TransformStream` is cancelled or when its writable side is aborted. * Added `min` option to `ReadableStreamBYOBReader.read(view, options)`. * Added support for `AbortSignal.reason` when aborting a pipe.