All Versions
11
Latest Version
Avg Release Cycle
60 days
Latest Release
1726 days ago

Changelog History
Page 1

  • v1.7.0 Changes

    September 25, 2021

    ๐Ÿš€ Maintenance release shipping small bug fixes mostly and some minor dependency version bumps.

    ๐Ÿ› Bug fixes

    • ๐Ÿ‘ท Export BlobWorker from mjs endpoint (#379)
    • ๐Ÿ›  Fix relative worker paths on Windows (#390)
    • ๐Ÿ›  Fix type compatibility with node 10+ (#392)
  • v1.6.5 Changes

    June 03, 2021

    ๐Ÿš€ Small patch release, fixing some TypeScript issues.

    ๐Ÿ› Bug fixes

    • โšก๏ธ Update observable-fns to fix issues with TypeScript 4.3 (#374)
  • v1.6.4 Changes

    April 18, 2021

    ๐Ÿš€ Small patch release fixing the type resolution around Transfer(). Also updated dependencies.

    ๐Ÿ› Bug fixes

    • Resolve transferable object types on call (#352)
    • ๐Ÿ‘ Allow passing workerData for node worker_threads (#318, by @haggholm)

    Chores

    • โšก๏ธ Updated dependency versions
    • โšก๏ธ Updated the CI / build setup (#351, by @aminya)
  • v1.6.3 Changes

    June 27, 2020

    ๐Ÿ›  A small patch that fixes pool task promises not resolving as expected.

    ๐Ÿ› Bug fixes

    • Pool task promises pending forever if task completed too quickly (#270)
  • v1.6.2 Changes

    June 21, 2020

    ๐Ÿš€ A small patch release that makes worker observables actually being unsubscribed from when the proxied observable in the master thread is being unsubscribed.

    ๐Ÿ› Bug fixes

    • Proxy unsubscribing from observables (#262)
  • v1.6.1 Changes

    June 15, 2020

    ๐Ÿš€ A small patch release that fixes the ES modules, so they work with node.js. 1.5.0 should have fixed them already, but it turned out there was another issue.

    ๐Ÿ› Bug fixes

    • โž• Add conditional exports to package.json (#261)
  • v1.6.0 Changes

    June 12, 2020

    ๐Ÿ‘ท This minor release introduces an exciting new feature: The BlobWorker ๐Ÿ‘ทโ€โ™€๏ธ๐Ÿ‘ทโ€โ™‚๏ธ

    ๐Ÿ‘ท Use the BlobWorker to spawn workers from in-memory code. You can create stand-alone bundles that ship the master and the worker code in one file, without the need to reference a separate worker file at runtime.

    ๐Ÿ“š Read its documentation for more details.

    ๐Ÿ”‹ Features

    • ๐Ÿ‘ท Spawn worker from blob / inlined bundle (#211)
  • v1.5.0 Changes

    June 11, 2020

    ๐Ÿš€ This is a minor release, exposing the isWorkerRuntime() function to you and fixing compatibility with node.js v13+ ES modules โœจ

    ๐Ÿ”‹ Features

    • ๐Ÿ”ฆ Expose isWorkerRuntime() (#225)

    ๐Ÿ› Bug fixes

    • ๐Ÿ“ฆ Make the package consumable by node.js native ES modules (#220)
  • v1.4.1 Changes

    April 24, 2020

    A small patch fixing two issues. One of them being a fix for another fix that turned out to not yet have solved the underlying issue with ASAR packaging in Electron apps.

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix the last release's ASAR path resolution fix (#236)
    • ๐Ÿ‘ท Report original error, too, on recursive worker errors (#235)
  • v1.4.0 Changes

    April 05, 2020

    ๐Ÿš€ Another minor release, yay!

    ๐Ÿš€ This release introduces support for setups that were not supported before and fixes a bug.

    ๐Ÿ”‹ Features

    ๐Ÿ› Bug fixes

    • ๐Ÿ‘ท Pass native worker options to ts-node workers (#230, by @rysi3k)