redux-saga-requests v0.12.0
klis87
released this
16 Mar 18:19
·
558 commits
to master
since this release
Added an optional requestsPromiseMiddleware
, which promisifies request actions so you can wait for them to resolve from React components - see README for more info.
Apart from this:
BREAKING
- standardized request action structure - previously it was{ type: 'A_TYPE', request: {} }
or{ type: 'A_TYPE', requests: [{}, {}] }
, now batched request also go intorequest
key -{ type: 'A_TYPE', request: [{}, {}] }
- fixed UMD bundle - removed
redux-saga
from the bundle, which was there due to Webpack misconfiguration