Skip to content

Releases: tusharmath/ts-scheduler

v8.0.4

28 Dec 12:27
Compare
Choose a tag to compare

8.0.4 (2019-12-28)

Bug Fixes

v8.0.3

25 Nov 05:30
Compare
Choose a tag to compare

8.0.3 (2019-11-25)

Bug Fixes

  • package: update dependencies (2853e90)

v8.0.2

18 Oct 02:09
Compare
Choose a tag to compare

8.0.2 (2019-10-18)

Bug Fixes

  • package: update dependencies (f2ded96)

v8.0.1

16 Sep 13:38
Compare
Choose a tag to compare

8.0.1 (2019-09-16)

Bug Fixes

  • package: update dependencies (25bfad0)
  • test-scheduler: fix pending jobs not getting completed (3bdcd9b)

v8.0.0

24 May 13:58
Compare
Choose a tag to compare

8.0.0 (2019-05-24)

Features

  • scheduler: scheduler now uses functions to schedule jobs (c56e71e)

BREAKING CHANGES

  • scheduler: Deprecate IJob. Use functions to schedule items.

v7.0.2

23 May 07:24
Compare
Choose a tag to compare

7.0.2 (2019-05-23)

Bug Fixes

  • package: use in-node instead of detect-node (b7011f0)

v7.0.1

21 May 08:06
Compare
Choose a tag to compare

7.0.1 (2019-05-21)

Performance Improvements

  • scheduler: improve perf by 91% (e7d63b3)
  • scheduler: Reduce memory footprint (8903444)

v7.0.0

12 May 11:59
Compare
Choose a tag to compare

7.0.0 (2019-05-12)

Code Refactoring

  • executable: rename IJob to IExecutable (f0a37bc)

BREAKING CHANGES

  • executable: IJob is renamed to IExecutable

v6.0.0

12 May 07:06
Compare
Choose a tag to compare

6.0.0 (2019-05-12)

Code Refactoring

  • job: change signature of job (e6c5ea0)

BREAKING CHANGES

  • job: job signature has changed from () => void to {execute: ()=> void}

v5.0.0

12 May 05:44
Compare
Choose a tag to compare

5.0.0 (2019-05-12)

Performance Improvements

  • cancel: use a new interface Cancellable instead of cancel function (7278f53)

BREAKING CHANGES

  • cancel: cancel API is now changed from () => void to {cancel(): () => void}