Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Nov 03:28
· 205 commits to main since this release
cbd1bc5

Patch Changes

  • #3893 cd720ae Thanks @tim-smart! - support "dropping" & "sliding" strategies in Mailbox

  • #3893 cd720ae Thanks @tim-smart! - add Mailbox.fromStream api

  • #3886 b631f40 Thanks @fubhy! - Optimized Base64.decode by not capturing the padding characters in the underlying array buffer.

    Previously, the implementation first captured the padding characters in the underlying array buffer and
    then returned a new subarray view of the buffer with the padding characters removed.

    By not capturing the padding characters, we avoid the creation of another typed array instance for the
    subarray view.