Closed stratospark closed 8 years ago
If it might matter, I am using redux-router 2.5.1
The only put
calls that work are ones that are yielded in a handler to a takeEvery
For example, any put
calls in handleQuery
will be dispatched properly and seen in devtools.
yield* takeEvery('Accounts_SubmitQuery', handleQuery);
Thanks for the report, this obviously must be a bug. Let me investigate.
Fixed in 3.0.1
After updating to 3.0.0 (which I've been really looking forward to btw!), some of my sagas are no longer working. It seems to be that the
put
commands are not sending actions to the redux store. I can replicate this with a trival example. TheBLAHBLAH
action is visible in devtools in version 2.1.7, but not so in 3.0.0. However, there are some uses ofput
that still work, and I'm not sure why.Is this related to this change in redux-saga 0.10.5? https://github.com/yelouafi/redux-saga/releases/tag/v0.10.5