expo-sqlite 15.0.1 → 15.0.3

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,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 15.0.3 — 2024-11-12
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Include the plugin under the `exports` in the package.json. ([#32780](https://github.com/expo/expo/pull/32780) by [@alanjhughes](https://github.com/alanjhughes))
18
+
19
+ ## 15.0.2 — 2024-11-07
20
+
21
+ ### 💡 Others
22
+
23
+ - Renamed `expo-sqlite/async-storage` to `expo-sqlite/kv-store`. ([#32699](https://github.com/expo/expo/pull/32699) by [@kudo](https://github.com/kudo))
24
+
13
25
  ## 15.0.1 — 2024-10-25
14
26
 
15
27
  ### 🎉 New features
@@ -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.1'
6
+ version = '15.0.3'
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.1"
56
+ versionName "15.0.3"
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.1",
3
+ "version": "15.0.3",
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,10 +11,11 @@
11
11
  "default": "./build/index.js",
12
12
  "types": "./build/index.d.ts"
13
13
  },
14
- "./async-storage": {
15
- "default": "./async-storage.js",
16
- "types": "./async-storage.d.ts"
17
- }
14
+ "./kv-store": {
15
+ "default": "./kv-store.js",
16
+ "types": "./kv-store.d.ts"
17
+ },
18
+ "./app.plugin.js": "./app.plugin.js"
18
19
  },
19
20
  "scripts": {
20
21
  "build": "expo-module build",
@@ -29,7 +30,9 @@
29
30
  "react-native",
30
31
  "expo",
31
32
  "sqlite",
32
- "sql"
33
+ "sql",
34
+ "storage",
35
+ "async-storage"
33
36
  ],
34
37
  "repository": {
35
38
  "type": "git",
@@ -58,5 +61,5 @@
58
61
  "react": "*",
59
62
  "react-native": "*"
60
63
  },
61
- "gitHead": "5ad642a63afa9190ceb4e57dd52c8bdf71d93dd8"
64
+ "gitHead": "68c2c4f5a536c4eb7db9551188c7f667d9fa53c8"
62
65
  }
File without changes
File without changes