Skip to content

Latest commit

 

History

History
79 lines (51 loc) · 1.27 KB

CHANGELOG.md

File metadata and controls

79 lines (51 loc) · 1.27 KB

Mini-State-Machine Changelog

v2.1.1

2023-08-09

  • Bugfix:
    • Execute idle callback if already idle

v2.1.0

2023-08-09

  • onIdle event callback

v2.0.2

2023-04-04

  • Bugfix:
    • Event callback types missing

v2.0.1

2023-04-04

  • Bugfix:
    • Return type for .on and .once methods missing
    • No exported types for state machine configuration, transitions etc.

v2.0.0

2023-04-03

  • Typescript
  • ESM
  • No web build

v1.0.0

2020-02-05

  • Remove parallel processing of state events, for simplicity

v0.4.2

2018-11-28

  • Bugfix: once would not clear callback after first call

v0.4.1

2018-11-26

  • Bugfix: Transitioning when in pending state error message showed wrong to-state

v0.4.0

2018-11-23

  • Listen to all events by using "*" for the stateOrTransition value
  • Added getHistory() for fetching historical transitions
  • Improved error messages

v0.3.2

2018-11-15

  • Bugfix: on/once/off event handlers throwing errors and not working

v0.3.1

2018-11-13

  • Execute enter-state and after-transition callbacks in parallel

v0.3.0

2018-11-12

  • Add can, cannot and is methods

v0.2.0

2018-11-10

  • Reduced bundle size

v0.1.0

2018-11-10

  • Initial release