All Versions
56
Latest Version
Avg Release Cycle
35 days
Latest Release
2388 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.18.6 Changes
September 08, 2016- ๐ Fixes inheritance for actions #678
-
v0.18.5 Changes
July 17, 2016- โก๏ธ Updates transmitter which fixes #665
-
v0.18.4 Changes
March 23, 2016- โฌ๏ธ Upgrades babel and enables loose mode so IE10 can work again.
-
v0.18.3 Changes
March 19, 2016- โ Removes cannot push while pushing error from transmitter.
-
v0.18.2 Changes
January 27, 2016 -
v0.18.1
December 10, 2015 -
v0.18.0 Changes
December 09, 2015๐ฅ Breaking Changes
- โ Removed this.dispatch from Actions commit.
Upgrade Guide
- Use the included codemod to convert your actions.
- You will need jscodeshift to run the codemod.
npm install jscodeshift -g
jscodeshift -t scripts/this-dispatch-to-return.js your_file.js
I recommend you use some source control like
git
this way you cangit diff
your changes and make sure everything is ok.You can manually upgrade by removing
this.dispatch
from your actions and instead return your payload directly.If you have an async action then you can return a function.
// from this class MyActions { someAction() { this.dispatch(13) } } // to this class MyActions { someAction() { return 13 } }
or
// from this class MyActions { asyncThings() { xhr('foo', () => { this.dispatch(42) }) } } // to this class MyActions { asyncThings() { return (dispatch) => { xhr('foo', () => { dispatch(42) }) } } }
- โ Deleted all of
utils
,mixins
,components
, andaddons
from alt package.
Upgrade Guide
- Use the utils found here.
- You can install these from npm.
๐ Changed
- โก๏ธ isMutableObject checks for frozen Objects before updating them commit.
-
v0.17.9 Changes
November 14, 2015๐ Changed
- ๐ Fixes multiple actions from registering to the same handler commit.
-
v0.17.8 Changes
October 31, 2015 -
v0.17.7 Changes
October 29, 2015๐ Changed
isPojo renamed to isMutableObject. commit
This now checks if an object is frozen or not before attempting to delete keys from it.