Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 4.75 KB

CHANGELOG.md

File metadata and controls

64 lines (44 loc) · 4.75 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.0.1 (2021-12-10)

⚠ BREAKING CHANGES

  • use TasksRunnerStatus type instead of TaskRunnerStatus
  • you need to use standby instead of load
  • You need to use new create*TasksRunner() exports
  • you need to use pending instead of running
  • resetTasks removed. you can use runner = create*TasksRunner(...runner.tasks) instead
  • use ParallelTask & SerialTasktype instead of Task type for parallel and serial runners

Features

  • fully type support (434d4b0)
  • tasks can be added in any position (c5b0dba)
  • add helpers module (a5da6d4)
  • add the ability to update tasks even after run (5eaa3f9)
  • add getTasksRunnerStatus helper function (627cdc2)
  • add renovate config (527e537)

Bug Fixes

  • fix executeCount type (d4ef5bd)
  • use strict type for tasks (845ae89)
  • fix common js bug in importing package (901e9c1)
  • use conversational naming (ab71221)
  • use named functions instead of classes (7d07ba9)

refactor

  • rename load status to standby (2fd713b)
  • rename running status to pending (89abebe)
  • split NormalTask type (d74c394)
  • remove resetTasks function (1892230)

0.0.2 (2021-11-08)

Features

  • add ci (b8fb1d7)
  • add more detail on getRunningTask rejection (8ac119f)
  • add playground (b5d57c1)
  • add project structure (502ed4f)
  • add remove(tasks) method to runners (6662910)
  • add reset method (119d44d)
  • getRunningTask now return the task always (53ee9a7)
  • init project (6975963)
  • pass tasks to class constractor (77590b5)
  • use cached firstArg for getRunningTask in pipline (a248244)

Bug Fixes

  • remove throwing an error on addTask (eee0ef6)
  • use parrent-like add methode in pipleine (0cef38e)
  • use promise rejection on absente running task (12ec4fd)