@capgo/capacitor-data-storage-sqlite 8.0.12 → 8.0.14

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/Package.swift CHANGED
@@ -10,7 +10,7 @@ let package = Package(
10
10
  targets: ["CapgoCapacitorDataStorageSqlitePlugin"])
11
11
  ],
12
12
  dependencies: [
13
- .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.1"),
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
14
14
  .package(url: "https://github.com/zhuorantan/SQLiteCipher.git", from: "0.0.1")
15
15
  ],
16
16
  targets: [
package/README.md CHANGED
@@ -65,6 +65,17 @@ meaning that it will not work in IE11 without additional JavaScript transformati
65
65
 
66
66
  The most complete doc is available here: https://capgo.app/docs/plugins/data-storage-sqlite/
67
67
 
68
+ ## Compatibility
69
+
70
+ | Plugin version | Capacitor compatibility | Maintained |
71
+ | -------------- | ----------------------- | ---------- |
72
+ | v8.\*.\* | v8.\*.\* | ✅ |
73
+ | v7.\*.\* | v7.\*.\* | On demand |
74
+ | v6.\*.\* | v6.\*.\* | ❌ |
75
+ | v5.\*.\* | v5.\*.\* | ❌ |
76
+
77
+ > **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
78
+
68
79
  ## Installation
69
80
 
70
81
  ```bash
@@ -11,7 +11,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
11
11
  @CapacitorPlugin(name = "CapgoCapacitorDataStorageSqlite")
12
12
  public class CapgoCapacitorDataStorageSqlitePlugin extends Plugin {
13
13
 
14
- private final String pluginVersion = "8.0.12";
14
+ private final String pluginVersion = "8.0.14";
15
15
 
16
16
  private CapgoCapacitorDataStorageSqlite implementation;
17
17
  private RetHandler rHandler = new RetHandler();
@@ -5,7 +5,7 @@ import Capacitor
5
5
  // swiftlint:disable type_body_length
6
6
  @objc(CapgoCapacitorDataStorageSqlitePlugin)
7
7
  public class CapgoCapacitorDataStorageSqlitePlugin: CAPPlugin, CAPBridgedPlugin {
8
- private let pluginVersion: String = "8.0.12"
8
+ private let pluginVersion: String = "8.0.14"
9
9
  public let identifier = "CapgoCapacitorDataStorageSqlitePlugin"
10
10
  public let jsName = "CapgoCapacitorDataStorageSqlite"
11
11
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-data-storage-sqlite",
3
- "version": "8.0.12",
3
+ "version": "8.0.14",
4
4
  "description": "SQLite Storage of key/value strings pair",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",