You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,23 @@ All notable changes to this project are documented in this file.
4
4
5
5
The format follows Keep a Changelog and the project adheres to SemVer.
6
6
7
+
## 0.5.0 - 2026-04-18
8
+
9
+
### Added
10
+
11
+
- Add secure-storage capability metadata with `storage.getSecurityCapabilities()`.
12
+
- Add metadata-only secure key inspection with `storage.getSecureMetadata(key)` and `storage.getAllSecureMetadata()`.
13
+
- Add public `SecurityCapabilities` and `SecureStorageMetadata` types.
14
+
- Add security policy and focused docs for secure storage, React hooks, and MMKV migration.
15
+
16
+
### Changed
17
+
18
+
- Refresh README positioning, badges, platform support, security model, storage-library comparison guidance, and benchmark guidance for npm/GitHub discoverability.
19
+
- Tighten README decisioning with an at-a-glance API map, Expo plugin options, bare Android setup, migration paths, and a release checklist.
20
+
- Split detailed usage material into focused docs for API reference, React hooks, secure storage, web backends, batch/transaction/migration workflows, recipes, MMKV migration, and benchmarks.
21
+
- Expand npm package description and keywords around React Native secure storage, biometric storage, Keychain, Android Keystore, Nitro Modules, MMKV migration, Expo SecureStore, Zustand/Jotai, and IndexedDB.
22
+
- Update release tooling patches for `@swc/core`, `@types/node`, and `turbo`.
Security fixes are shipped for the latest published `0.x` release line.
6
+
7
+
| Version | Supported |
8
+
| ------- | --------- |
9
+
|`0.5.x`| Yes |
10
+
|`<0.5`| No |
11
+
12
+
## Reporting a Vulnerability
13
+
14
+
Report security issues through GitHub Security Advisories with:
15
+
16
+
- affected package version
17
+
- platform and OS version
18
+
- React Native and `react-native-nitro-modules` versions
19
+
- reproduction steps
20
+
- whether the issue affects Memory, Disk, Secure, biometric storage, web backends, or packaging
21
+
22
+
Do not publish proof-of-concept exploit details until a fix is available.
23
+
24
+
## Storage Boundary
25
+
26
+
Native Secure scope delegates encryption to platform storage APIs: iOS Keychain and Android Jetpack Security `EncryptedSharedPreferences`. Web Secure scope is API-compatible but defaults to namespaced `localStorage`; use a custom web secure backend when browser-side storage must meet a stricter threat model.
0 commit comments