- Copy some saxo specific properties from thrown errors
- Support for some additional thrown error information
- v1.4.0 was not built before publishing, this just corrects that
- Detection of potentially-unhandled actions
- Support toolkit actions in pattern matching arrays
- You can now pass redux-toolkit like aciton creators as match patterns e.g.
yield take(actionCreator)
andyield take(actionCreator, actionMatcher)
andtakeEvery(actionCreator, saga)
- exceptions thrown in spawned tasks automatically call window.onerror (like takeEvery and takeLatest already do)
- exceptions thrown from top level sagas call through to window.onerror
- window.onerror is now called with the correct standard arguments
- window.onerror is now called synchronously
- Improvements to error handling
Incorrectly published release, do not use
- Improvements to the onError object
- Tiny performance improvements
- Add a whenDone function on a task that returns a promise when the task completes
- Fix yielding a function with parameters
- Fix a problem where an absorbed exception was rethrown
- Fix problem with takes duplicating
- Fix event emitter - in some cases it was firing multiple emits
- Run accepts arguments to be passed to the generator
- Initial release to Github