- remove immutable version
- add
rootKey
to wrapReducer, which contains name of reducer's node
- remove devTools and redux-thunk from default middleware
- add waitList functionality to dispatch reducers only when store created. Now you don't need to wait when your store be created to call wrapReducers() - redaction doing this itself, all you need just to create store and wrap reducers with only one argument - your reducers object
- remove immutable from plain wrapReducers
- remove redux-batched-subscribe and react-dom. From now for batches feature need to add it by urself
- revert back redux-batched-subscribe
- replace redux-batched-subscribe with redux-batched-updates (FAIL)
- remove dispatch from connect
- fix passing condition to convert empty variables, add tests to check it
- fix immutable List converting, add tests to check it
- Optimize converting speed from immutable
- add jest tests for immutable and plain connect methods combination with immutable store
- update lib connect wrapper to prevent saving resolveStoreProps method to sharable memory variable
- add functionality to convert all immutable data in plain connect
- remove second param from connect method, so there is just two params in connect method:
connect(storeProps, options)
- Add condition to plain connect method to convert immutable result to plain js
- Replace ES6 exports in root immutable.js with ES5
- Update export format to work with webpack imports resolving
- Update export format to work with webpack imports resolving
- Rework module - split to plain and immutable versions
- Update examples for plain and immutable
- Update Readme
- Move Immutable PropTypes to separate key
immutable
- Improve
connect
method. Add option to call it asreact-redux
does. Add info about options of call to README.md
- Add
type
property to reducer wrappers. For example it can be used in redux-saga
- Add returning dispatch in connect method
- Add redux-auth-wrapper example
- Fix combining reducers, change logic of usage in createStore. Beware
- Update todos example
- Add redux-form example
- Add connect method to link state to components
- Add immutable react PropTypes
- Add Immutable.js
- Completely rework redaction library - remove action creators, create reducer wrappers with closure dispatching.
- Update Readme.md
- Code clean up. Last commit in 2.* version.
- Fix errors
- Remove
modifyState
method. Removestrategy
option from request params. Add functionality to configure requests.