Skip to content

Releases: zewish/redux-remember

2.0.3

01 Jul 08:55
Compare
Choose a tag to compare
Fix demo

2.0.1

30 Jun 15:47
Compare
Choose a tag to compare
Cleanup

2.0.0

30 Jun 15:23
Compare
Choose a tag to compare

What's new?

  • Library no longer patches redux functions - it uses standard way to provide new functionality to the store (A "root reducer" and an "enhancer");
  • loadedKey option is now removed as it can be quite easy to replicate this functionality with a simple reducer;
  • serialize and unserialize options are now available and they allow you to specify your own serializer/unserializer that's different from JSON.stringify and JSON.parse. This would be quite helpful if your storage driver does the serialization for you;
  • persistThrottle option is now available and is defaulted to 100 milliseconds;
  • persistWholeStore option is now available and is defaulted to false. If you set this to true you have to make sure your storage driver's setItem() function can save the whole store in a single key. There are limitations on most browsers and AsyncStorage, so don't set this to true unless you know what you're doing.

1.0.14

07 Dec 08:08
Compare
Choose a tag to compare
Fix a typo

1.0.13

07 Dec 08:05
Compare
Choose a tag to compare
Add a cleaner example

1.0.12

05 Sep 09:11
Compare
Choose a tag to compare
Update license to proper date

1.0.11

18 Jun 14:58
Compare
Choose a tag to compare
Update keywords and dependencies

1.0.10

16 Jun 14:51
Compare
Choose a tag to compare
Update readme and demo build script.

1.0.9

05 Jun 10:37
Compare
Choose a tag to compare
Allow detection of rehydration inside reducers.

1.0.8

01 Jun 07:12
Compare
Choose a tag to compare
Call reducers when rehydrating