-
released this
2016-08-13 11:44:27 +00:00 | 3 commits to master since this releaseFIX: Ship proper sources for
jsnext:main(see issue #152)Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
Source code (ZIP)
-
released this
2016-08-04 19:59:07 +00:00 | 7 commits to master since this release- NEW FEATURE: The whitelist now can be a function (see PR #148)
- FIX: Updated all dependencies to current versions
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
released this
2016-06-10 10:35:30 +00:00 | 11 commits to master since this release- FIX: Add missing babel-preset
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
released this
2016-03-02 08:14:36 +00:00 | 18 commits to master since this releaseNEW FEATURE
- Flexible state merger functions (issue #93 / PR #104)
- simple: merge plain old JS structures (default)
- immutablejs: merge plain old JS and ImmutableJS
objects
- If
NODE_ENV != 'production', the save action issued by redux-storage contains ameta.originwith the action that trigged this save request. This is a pretty useful feature, if you want to track the origins of the save requests (issue #100 / PR #102)
BREAKING CHANGES
As we now support flexible state merger functions, ImmutableJS has completely been removed from this project! So if you're using redux-storage with ImmutableJS, you have to pass redux-storage-merger-immutablejs as second argument to
storage.reducer!Old
const reducer = storage.reducer(combineReducers(reducers));New
$ npm install --save redux-storage-merger-immutablejsimport immutableJsMerger from 'redux-storage-merger-immutablejs'; const reducer = storage.reducer(combineReducers(reducers), immutableJsMerger);Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- Flexible state merger functions (issue #93 / PR #104)
-
released this
2016-02-29 09:21:26 +00:00 | 24 commits to master since this release- Fix: Some typos
- Fix: Added
transform.envifyfor a betterbrowserifysupport
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
3.0.0 Stable
released this
2016-02-10 13:05:30 +00:00 | 30 commits to master since this releaseWhoop! 🎉 We've got time for issue #88 (PR #91) and redux-storage is now only the "management core" and all decorators and engines are distributed as own project/package on npm!
Benefits of this transition range from less code you need to download and a more explicit dependency management to a more manageable codebase (multiple small projects instead of one big) and a more open plugin/extension culture. So go ahead and build more awesome decorators/engines! Just tag them properly and both engines and decorators can easily be browsed on npm 😎
BREAKING CHANGES
- All decorators have been removed and are now available as own npm packages:
decorator.filter=>npm install --save redux-storage-decorator-filterdecorator.debounce=>npm install --save redux-storage-decorator-debouncedecorator.immutablejs=>npm install --save redux-storage-decorator-immutablejsdecorator.migrate=>npm install --save redux-storage-decorator-migrate
- All engines have been removed and are now available as own npm packge:
redux-storage/engine/reactNativeAsyncStorage=>npm install --save redux-storage-engine-reactnativeasyncstorageredux-storage/engine/localStorage=>npm install --save redux-storage-engine-localstorageredux-storage/engine/localStorageFakePromise=>npm install --save redux-storage-engine-localstoragefakepromise
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- All decorators have been removed and are now available as own npm packages:
-
released this
2016-02-09 12:27:02 +00:00 | 35 commits to master since this releasedecorators.filternow has a blacklist as optional second argument (PR #90)
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
released this
2016-02-09 10:00:44 +00:00 | 39 commits to master since this releaseDownloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
Source code (ZIP)
-
released this
2016-02-05 11:20:57 +00:00 | 45 commits to master since this release- A warm welcome to
decorators.migratethanks to @mathieudutour (PR #87) - NPM bundles now contain the raw unprocessed ES6 source
- Our
package.jsonnow has ajsnext:mainentry - rollup all the things!
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- A warm welcome to
-
released this
2016-02-02 08:51:07 +00:00 | 51 commits to master since this release- PR #85: Reject promise of
decorators.debouncewith a properErrorobject
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- PR #85: Reject promise of