Closed renovate[bot] closed 4 years ago
Merging #119 into dev will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## dev #119 +/- ##
=======================================
Coverage 97.18% 97.18%
=======================================
Files 1 1
Lines 71 71
Branches 39 39
=======================================
Hits 69 69
Misses 2 2
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 4ef88e4...10053a3. Read the comment docs.
This PR contains the following updates:
^2.1.1
->^3.0.0
Release Notes
MattiasBuelens/web-streams-polyfill
### [`v3.0.0`](https://togithub.com/MattiasBuelens/web-streams-polyfill/blob/master/CHANGELOG.md#v300-2020-07-20) [Compare Source](https://togithub.com/MattiasBuelens/web-streams-polyfill/compare/v2.1.1...v3.0.0) - 💥 Align with [spec version `62fe4c8`](https://togithub.com/whatwg/streams/tree/62fe4c8c0df34cec4ff28db9bfa69aec6c65e38d/) ([#52](https://togithub.com/MattiasBuelens/web-streams-polyfill/pull/52), [#57](https://togithub.com/MattiasBuelens/web-streams-polyfill/pull/57), [#59](https://togithub.com/MattiasBuelens/web-streams-polyfill/pull/59)) This includes the following **breaking changes**: - All classes are now exposed globally. Concretely, this adds the following classes: - `ReadableStreamDefaultController` - `ReadableByteStreamController` - `ReadableStreamBYOBRequest` - `ReadableStreamDefaultReader` - `ReadableStreamBYOBReader` - `WritableStreamDefaultController` - `WritableStreamDefaultWriter` - `TransformStreamDefaultController` - `ReadableStream.getIterator()` is renamed to `ReadableStream.values()` - `ReadableByteStreamController.byobRequest` can be `null` (instead of `undefined`) if there is no current BYOB request. - `ReadableStreamBYOBRequest.view` can be `null` (instead of `undefined`) if the BYOB request has already been responded to. - Constructors and methods have stricter type checking for object arguments. For example, `new ReadableStream(null)` would previously behave like `new ReadableStream({})`, but now it throws a `TypeError` instead. - Some constructors and methods may throw slightly different errors when given invalid arguments. - Various byte-stream-related APIs now prohibit zero-length views or buffers. - The async iterator of a `ReadableStream` now behaves more like an async generator, e.g. returning promises fulfilled with `{ value: undefined, done: true }` after `return()`ing the iterator, instead of returning a rejected promise. - 💥 Updated TypeScript types to align with new specification ([#60](https://togithub.com/MattiasBuelens/web-streams-polyfill/pull/60)) While these are _technically_ breaking changes, you should only be affected if you manually reference these types from your code. - `PipeOptions` is renamed to `StreamPipeOptions` - `ReadResult` is replaced by `ReadableStreamDefaultReadResult` and `ReadableStreamBYOBReadResult` - `ReadableStreamDefaultControllerCallback` is replaced by `UnderlyingSourceStartCallback` and `UnderlyingSourcePullCallback` - `ReadableByteStreamControllerCallback` is replaced by `UnderlyingByteSourceStartCallback` and `UnderlyingByteSourcePullCallback` - `ReadableStreamErrorCallback` is renamed to `UnderlyingSourceCancelCallback` - `WritableStreamDefaultControllerStartCallback` is renamed to `UnderlyingSinkStartCallback` - `WritableStreamDefaultControllerWriteCallback` is renamed to `UnderlyingSinkWriteCallback` - `WritableStreamDefaultControllerCloseCallback` is renamed to `UnderlyingSinkCloseCallback` - `WritableStreamErrorCallback` is renamed to `UnderlyingSinkAbortCallback` - `TransformStreamDefaultControllerCallback` is replaced by `TransformerStartCallback` and `TransformerFlushCallback` - `TransformStreamDefaultControllerTransformCallback` is renamed to `TransformerTransformCallback`Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.