Skip to content

Releases: ammarahm-ed/react-native-mmkv-storage

v12.0.1

04 Dec 05:26

Choose a tag to compare

What's Changed

Full Changelog: v12.0.0...v12.0.1

v12.0.0

25 Aug 19:32

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.11.0...v12.0.0

v0.11.0

03 Nov 09:58

Choose a tag to compare

What's Changed

Full Changelog: v0.10.3...v0.11.0

v0.10.3

21 Aug 17:49

Choose a tag to compare

What's New

  • Upgrade to MMKV v1.3.9
  • Upgrade example app to react-native 0.75.2
  • Added useMMKVRef hook

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.10.3

v0.9.0

10 Mar 15:06

Choose a tag to compare

Breaking Change

  • Works only on react native 0.71.x and above.

What's Changed

New Contributors

Full Changelog: v0.8.0...v0.9.0

v0.8.0

28 Jul 10:47

Choose a tag to compare

What's Changed

Flipper Support 🎉

Thanks to pnthach95 flipper plugin is finally here. https://github.com/pnthach95/flipper-plugin-react-native-mmkv-storage. It supports logging and manipulating storage values on the fly.

You can install it directly from plugin manager:

BREAKING CHANGE

The default iOS keychain accessibility level has been changed to AFTER_FIRST_UNLOCK from WHEN_UNLOCKED. You can read more about why this change was made here #263 #246 & #195. If your app functionality depends on WHEN_UNLOCKED accessibility level. You must set it manually:

export const encryptedStorage = new MMKVLoader()
  .setAccessibleIOS(IOSAccessibleStates.WHEN_UNLOCKED)
  .withInstanceID('encrypted')
  .withEncryption()
  .initialize();

New Contributors

Full Changelog: v0.7.6...v0.8.0

v0.7.6

22 May 09:14

Choose a tag to compare

What's Changed

  • Fix useMMKVStorage typings and falsy values persistance by @douugbr in #254
  • Added support for RN 0.69

New Contributors

  • @douugbr made their first contribution in #254

Full Changelog: v0.7.5...v0.7.6

v0.7.5

11 May 19:12

Choose a tag to compare

Fix: set defaultValue parameter in useMMKVStorage hook optional

v0.7.4

11 May 11:03

Choose a tag to compare

What's Changed

  • Fix: check for undefined on pathname when checking for chrome debugger by @hosseintalebi in #250
  • Use RCTBridgeModule's bridge property instead of [RCTBridge currentBridge] by @cltnschlosser in #249
  • Fix removeItem breaking useMMKVStorage hook #252
  • Fix useMMKVStorage hook not returning same default value as get/set functions #252

New Contributors

Full Changelog: v0.7.3...v0.7.4

v0.7.3

08 May 15:35

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.2...v0.7.3