Skip to content

Releases: michaelhettmer/redux-root-saga

v1.1.4

16 Apr 20:08
Compare
Choose a tag to compare

1.1.4 (2020-04-16)

Bug Fixes

  • update function signatures to pass new prettier v2 rules (0deb852)

v1.1.1: Minor Bugfix Release

10 Sep 23:40
5effce3
Compare
Choose a tag to compare

Fixed

  • Fixed alignment issue in circleci configuration which prevented automated npm registry deployment

v1.1.0: Individual Saga Options

10 Sep 23:37
96a2eef
Compare
Choose a tag to compare

Added

  • Custom options object can now be passed alongside each saga to partially or completely override the default options

Changed

  • Option onError now gets passed an additional parameter with the individually used options object

Breaking

  • Renamed Option errorHandler to onError to better align standard naming conventions

v1.0.0: Initial Release

08 Sep 22:10
5f7fcbd
Compare
Choose a tag to compare

First version of this package providing a simple way to integrate the root saga pattern into a redux application.

Added

  • Basic root saga management
  • Option errorHandler for custom error handling implementations
  • Option restartDelay to specify delay between child saga failure and restart
  • Option maxRetries to restrict how often each child saga will be restarted on failure