- fix #360 : added option
logger
to customize logging (see API docs for createSagaMiddleware) - fix #398 : es build to properly use jsnext:main field (thanks to @mgmcdermott)
Breaking change in the signature of runSaga
The monitor argument is removed. Starting from this release, you must provide the monitor as a sagaMonitor
key in the option argument. runSaga
supports also the logger
option
runSaga(iterator, {
subscribe: ...,
dispatch: ...,
getState: ...,
+ sagaMonitor: monitor,
+ logger: ...
},
- monitor
)