expo-sqlite 15.0.1 → 15.0.2
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
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 15.0.2 — 2024-11-07
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Renamed `expo-sqlite/async-storage` to `expo-sqlite/kv-store`. ([#32699](https://github.com/expo/expo/pull/32699) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
13
19
|
## 15.0.1 — 2024-10-25
|
|
14
20
|
|
|
15
21
|
### 🎉 New features
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
3
3
|
apply plugin: 'com.android.library'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '15.0.
|
|
6
|
+
version = '15.0.2'
|
|
7
7
|
|
|
8
8
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
9
|
apply from: expoModulesCorePlugin
|
|
@@ -53,7 +53,7 @@ android {
|
|
|
53
53
|
namespace "expo.modules.sqlite"
|
|
54
54
|
defaultConfig {
|
|
55
55
|
versionCode 18
|
|
56
|
-
versionName "15.0.
|
|
56
|
+
versionName "15.0.2"
|
|
57
57
|
|
|
58
58
|
externalNativeBuild {
|
|
59
59
|
cmake {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-sqlite",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.2",
|
|
4
4
|
"description": "Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"default": "./build/index.js",
|
|
12
12
|
"types": "./build/index.d.ts"
|
|
13
13
|
},
|
|
14
|
-
"./
|
|
15
|
-
"default": "./
|
|
16
|
-
"types": "./
|
|
14
|
+
"./kv-store": {
|
|
15
|
+
"default": "./kv-store.js",
|
|
16
|
+
"types": "./kv-store.d.ts"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"react-native",
|
|
30
30
|
"expo",
|
|
31
31
|
"sqlite",
|
|
32
|
-
"sql"
|
|
32
|
+
"sql",
|
|
33
|
+
"storage",
|
|
34
|
+
"async-storage"
|
|
33
35
|
],
|
|
34
36
|
"repository": {
|
|
35
37
|
"type": "git",
|
|
@@ -58,5 +60,5 @@
|
|
|
58
60
|
"react": "*",
|
|
59
61
|
"react-native": "*"
|
|
60
62
|
},
|
|
61
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "9c8be1c4186d8ff93433db9afa3b6a92fc5f7dcc"
|
|
62
64
|
}
|
|
File without changes
|
|
File without changes
|