npm redux-saga 0.10.5

latest releases: 1.3.0, 1.2.3, 1.2.2...
7 years ago
  • Fix Synchronous puts behaviors to be consistent with pre 0.10 releases

This restores the pre 0.10 behavior for handling puts whose result is a Promise (i.e. dispatch an action which will be handled by a middleware and returns a Promise). In pre 0.10 releases, the put doesn't wait for the returned promise to resolve;

Starting from this release

  1. put doesn't block waiting the returned promise to resolve
  2. In order to wait for the returned Promise, use the variant put.sync(...) which will wait until the Promise resolve (or rejects) before resuming

For background see #336

Other changes

  • fix Symbol handling in take's patterns and takeEvery/takeLatest (thanks to @jscinoz)

Don't miss a new redux-saga release

NewReleases is sending notifications on new releases.