colinbate / redux-form-submit-saga

Handles redux-form submissions using redux-saga
MIT License
61 stars 12 forks source link

Redux-saga version warning #11

Closed marcselman closed 7 years ago

marcselman commented 7 years ago

Your package does not seem to be compatible with the latest redux-saga 15.x versions.

andredp commented 7 years ago

@colinbate, I've tested and the package is compatible with redux-saga ^0.15.0. The only problem is that you're using a deprecated way of spawning multiple sagas.

Simply changing yield [...effects] to yield all([...effects]) should do the trick. I can do a PR if you're busy.

PeteAndersen commented 7 years ago

I agree, no issues using it w/ latest redux-saga, just depreciation warnings. I've submitted a PR to get it resolved.