@vailix/mask 0.1.2 → 0.2.0
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 +12 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @vailix/mask
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- BREAKING CHANGE: Moved native dependencies to `peerDependencies` and relaxed version constraints to (`>=`) to ensure broad compatibility with Expo updates.
|
|
8
|
+
|
|
9
|
+
## 0.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Widened Expo peer dependency range to ">=52.0.0" to support Expo SDK 54 and newer versions.
|
|
14
|
+
|
|
3
15
|
## 0.1.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vailix/mask",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Privacy-preserving proximity tracing SDK for React Native & Expo",
|
|
5
5
|
"author": "Gil Eyni",
|
|
6
6
|
"keywords": [
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"expo": "
|
|
41
|
-
"react-native": ">=0.76.0"
|
|
40
|
+
"expo": ">=52.0.0",
|
|
41
|
+
"react-native": ">=0.76.0",
|
|
42
|
+
"react-native-quick-crypto": ">=1.0.6",
|
|
43
|
+
"expo-secure-store": ">=13.0.0",
|
|
44
|
+
"expo-sqlite": ">=14.0.0",
|
|
45
|
+
"react-native-ble-plx": ">=3.1.0"
|
|
42
46
|
},
|
|
43
47
|
"dependencies": {
|
|
44
|
-
"react-native-quick-crypto": "^1.0.6",
|
|
45
|
-
"expo-secure-store": "~15.0.8",
|
|
46
|
-
"expo-sqlite": "~16.0.10",
|
|
47
48
|
"drizzle-orm": "^0.45.1",
|
|
48
49
|
"@react-native-async-storage/async-storage": "^1.21.0",
|
|
49
|
-
"eventemitter3": "^5.0.0"
|
|
50
|
-
"react-native-ble-plx": "^3.2.1"
|
|
50
|
+
"eventemitter3": "^5.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"drizzle-kit": "^0.30.0",
|