Skip to content

Latest commit

 

History

History
91 lines (53 loc) · 3.24 KB

CHANGELOG.md

File metadata and controls

91 lines (53 loc) · 3.24 KB

v4.1.1, 2023-03-15

Fixed the ESM build.

v4.1.0, 2022-10-09

Added support for transferable objects in messages and responses from both the host and worker. Example:

const buffer = new ArrayBuffer(1);
promiseWorker.postMessage(buffer, undefined, [buffer]);

promiseWorker.register(async (buffer) => {
  const processed = await processBuffer(buffer);

  return {
    message: processed,
    _PWB_TRANSFER: [processed.someTransferableProprty],
  };
});

v4.0.3, 2022-01-30

Just a fix to the TypeScript types - the second argument to PWBWorker.postMessage is optional. See #5 from @Jazcash

v4.0.2, 2020-05-14

Upgrade dependencies, fix for TypeScript 3.9 while breaking for any older versions of TypeScript.

v4.0.1, 2020-01-13

Switched from Flow to TypeScript, cause momentum. Sadly TypeScript sucks at supporting shared workers, so the typings are a bit worse, but promise-worker-bi works the same.

v4.0.0, 2019-11-06

Split the old PromiseWorker class into two separate classes PWBHost and PWBWorker, so they can be included separately in main and worker bundles, leading to smaller bundle sizes if you use tree shaking and dead code elimination. Savings seems to just be a couple kb of minified JS per bundle, but every byte counts!

v3.0.2, 2018-07-06

This should obviously print "true":

blob = new Blob(["self.onmessage = function() {};"], {
  type: "text/javascript",
});
worker = new Worker(window.URL.createObjectURL(blob));
console.log(worker instanceof Worker);

However in some rare cases, it will print "false" in Safari. This caused bugs in prior versions of promise-worker-bi, but this release includes a workaround.

v3.0.1, 2018-06-13

Restore console.error logging for errors in the worker, because otherwise it can be difficult to debug live since the errors sent back to the window by promise-worker-bi do not have source maps applied.

v3.0.0, 2018-04-14

v3.0.0 brings better and more consistent error handling!

All errors from workers include the stack property, and any others (Firefox has some extra non-standard properties). Since normally stack traces are not sent from the worker to the main thread, instead we capture the stack trace in the worker and manually send it to the main thread.

Additionally, the callback passed to PromiseWorker.registerError will now recieve Error objects directly, rather than ErrorEvent objects or weird non-standard things that are kind of like ErrorEvent objects. This is a breaking change to the API, necessitating the new major version.

v2.2.1, 2017-12-02

Fix race condition where hostID was previously sometimes undefined.

v2.2.0, 2017-03-28

Cross-browser consistency in error reporting from Shared Workers through PromiseWorker.registerError.

v2.1.1, 2017-03-25

When using a Shared Worker, if the user closes a tab, we don't need to keep track of that hostID and MessagePort anymore.

v2.1.0, 2017-03-24

Added support for Shared Workers.

v2.0.2, 2017-03-14

Fix error reporting in Safari.

v2.0.1, 2017-03-04

Fix error reporting.

v2.0.0, 2017-03-02

First release of promise-worker-bi, forked from promise-worker but adding support for sending messages from the worker to the host, rather than just from the host to the worker.