Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ext/web): ReadableStream.from() allows Iterable instead of IterableIterator #23903

Merged
merged 7 commits into from
May 27, 2024

Commits on May 20, 2024

  1. fix(ext/web): ReadableStream.from() async from iterator

    `createAsyncFromSyncIterator(x)` expects `x` as `Iterable` but, previous
    implements specify `Iterator` or `IterableIterator`. If it was
    `IterableIterator`, it would work, but if it was `Iterator`, an
    exception will occur.
    
    Tests have been merged into WPT.
    web-platform-tests/wpt#46365
    Milly committed May 20, 2024
    Configuration menu
    Copy the full SHA
    9e375d9 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. Configuration menu
    Copy the full SHA
    00469d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ffe4d84 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    059d34b View commit details
    Browse the repository at this point in the history
  4. update wpt expectations

    iuioiua committed May 23, 2024
    Configuration menu
    Copy the full SHA
    214cdaa View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    e55ddb6 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Configuration menu
    Copy the full SHA
    7bc3591 View commit details
    Browse the repository at this point in the history