expo-sqlite 15.0.0 → 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,18 @@
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
+
19
+ ## 15.0.1 — 2024-10-25
20
+
21
+ ### 🎉 New features
22
+
23
+ - Added macOS support in expo-sqlite. ([#32181](https://github.com/expo/expo/pull/32181) by [@coolsoftwaretyler](https://github.com/coolsoftwaretyler))
24
+
13
25
  ## 15.0.0 — 2024-10-22
14
26
 
15
27
  ### 🛠 Breaking changes
@@ -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.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.0"
56
+ versionName "15.0.2"
57
57
 
58
58
  externalNativeBuild {
59
59
  cmake {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-sqlite",
3
- "platforms": ["ios", "android"],
4
- "ios": {
3
+ "platforms": ["apple", "android"],
4
+ "apple": {
5
5
  "modules": ["SQLiteModule"]
6
6
  },
7
7
  "android": {
@@ -13,7 +13,8 @@ Pod::Spec.new do |s|
13
13
  s.author = package['author']
14
14
  s.homepage = package['homepage']
15
15
  s.platforms = {
16
- :ios => '15.1'
16
+ :ios => '15.1',
17
+ :osx => '11.0'
17
18
  }
18
19
  s.source = { git: 'https://github.com/expo/expo.git' }
19
20
  s.static_framework = true
@@ -59,5 +60,5 @@ Pod::Spec.new do |s|
59
60
  }
60
61
 
61
62
  s.source_files = "**/*.{c,h,m,swift}"
62
- s.vendored_frameworks = 'crsqlite.xcframework'
63
+ s.ios.vendored_frameworks = 'crsqlite.xcframework'
63
64
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-sqlite",
3
- "version": "15.0.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
- "./async-storage": {
15
- "default": "./async-storage.js",
16
- "types": "./async-storage.d.ts"
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": "685ebb8a213326cb33c80281ca8756b374ccb63d"
63
+ "gitHead": "9c8be1c4186d8ff93433db9afa3b6a92fc5f7dcc"
62
64
  }
File without changes
File without changes