Skip to content

Releases: developit/greenlet

1.1.0

01 Oct 21:36
Compare
Choose a tag to compare
  • Fix security errors in Edge & Safari (#38, thanks @spkellydev!)
  • Updated documentation to explain why dynamic invocation of greenlet() is harmful.

CSP users: this release changes Greenlet back to using Blob URLs instead of Data URLs. This means you need to update your CSP to enable blob:

-worker-src data:, script-src data:
+worker-src blob:, script-src blob:

1.0.1

15 May 17:01
Compare
Choose a tag to compare
  • Fixes argument mangling issue present in 1.0.0

1.0.0

15 May 15:48
Compare
Choose a tag to compare
  • TypeScript definitions! (thanks @karol-majewski!)
  • Automatic Transferables support (thanks @johnsonjo4531!)
    • ArrayBuffers are now zero-copy
    • MessagePort is now fully supported - return a pending promise and go to town
    • ImageBitmaps can be transferred optimally 🎉
  • Switched from Blobs to Data URIs!
    • Mitigate some CSP issues
    • Reduces Greenlet's size to offset the new Transferables support
    • Fixes the Blob URL memory leaking without adding any code

0.1.2

29 Jan 16:26
Compare
Choose a tag to compare
  • Fixes an issue when serializing untranspiled arrow functions
  • Fixes build missing umd and esm bundle

0.1.1

29 Jan 16:24
Compare
Choose a tag to compare
0.1.1

0.1.0

26 Jan 00:17
Compare
Choose a tag to compare

It's alive!