expo-secure-store 14.0.2-canary-20250306-d9d3e02 → 14.0.2-canary-20250320-7a205d3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/ios/SecureStoreExceptions.swift +4 -4
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
13
|
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
14
|
+
- [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate))
|
|
14
15
|
|
|
15
16
|
## 14.0.1 - 2025-01-10
|
|
16
17
|
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import ExpoModulesCore
|
|
2
2
|
|
|
3
|
-
internal class InvalidKeyException: Exception {
|
|
3
|
+
internal final class InvalidKeyException: Exception {
|
|
4
4
|
override var reason: String {
|
|
5
5
|
"Invalid key"
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
internal class MissingPlistKeyException: Exception {
|
|
9
|
+
internal final class MissingPlistKeyException: Exception {
|
|
10
10
|
override var reason: String {
|
|
11
11
|
"You must set `NSFaceIDUsageDescription` in your Info.plist file to use the `requireAuthentication` option"
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
internal class SecAccessControlError: GenericException<Int?> {
|
|
15
|
+
internal final class SecAccessControlError: GenericException<Int?> {
|
|
16
16
|
override var reason: String {
|
|
17
17
|
return "Unable to construct SecAccessControl: \(param.map { "code " + String($0) } ?? "unknown error")"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
internal class KeyChainException: GenericException<OSStatus> {
|
|
21
|
+
internal final class KeyChainException: GenericException<OSStatus> {
|
|
22
22
|
override var reason: String {
|
|
23
23
|
switch param {
|
|
24
24
|
case errSecUnimplemented:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-secure-store",
|
|
3
|
-
"version": "14.0.2-canary-
|
|
3
|
+
"version": "14.0.2-canary-20250320-7a205d3",
|
|
4
4
|
"description": "Provides a way to encrypt and securely store key-value pairs locally on the device.",
|
|
5
5
|
"main": "build/SecureStore.js",
|
|
6
6
|
"types": "build/SecureStore.d.ts",
|
|
@@ -37,10 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "4.0.5-canary-
|
|
40
|
+
"expo-module-scripts": "4.0.5-canary-20250320-7a205d3"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"expo": "53.0.0-canary-
|
|
44
|
-
}
|
|
45
|
-
"gitHead": "d9d3e024d8742099c307754673f17117a20c1dea"
|
|
43
|
+
"expo": "53.0.0-canary-20250320-7a205d3"
|
|
44
|
+
}
|
|
46
45
|
}
|