@capgo/capacitor-fast-sql 8.0.9 → 8.0.10

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/README.md CHANGED
@@ -22,6 +22,17 @@ Traditional Capacitor plugins serialize data through the JavaScript bridge, whic
22
22
 
23
23
  The most complete doc is available here: https://capgo.app/docs/plugins/fast-sql/
24
24
 
25
+ ## Compatibility
26
+
27
+ | Plugin version | Capacitor compatibility | Maintained |
28
+ | -------------- | ----------------------- | ---------- |
29
+ | v8.\*.\* | v8.\*.\* | ✅ |
30
+ | v7.\*.\* | v7.\*.\* | On demand |
31
+ | v6.\*.\* | v6.\*.\* | ❌ |
32
+ | v5.\*.\* | v5.\*.\* | ❌ |
33
+
34
+ > **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.
35
+
25
36
  ## Install
26
37
 
27
38
  ```bash
@@ -19,7 +19,7 @@ import java.util.Map;
19
19
  @CapacitorPlugin(name = "CapgoCapacitorFastSql")
20
20
  public class CapgoCapacitorFastSqlPlugin extends Plugin {
21
21
 
22
- private final String pluginVersion = "8.0.9";
22
+ private final String pluginVersion = "8.0.10";
23
23
 
24
24
  private Map<String, SQLDatabase> databases = new HashMap<>();
25
25
  private SQLHTTPServer server;
@@ -10,7 +10,7 @@ import SQLite3
10
10
  */
11
11
  @objc(CapgoCapacitorFastSqlPlugin)
12
12
  public class CapgoCapacitorFastSqlPlugin: CAPPlugin, CAPBridgedPlugin {
13
- private let pluginVersion: String = "8.0.9"
13
+ private let pluginVersion: String = "8.0.10"
14
14
  public let identifier = "CapgoCapacitorFastSqlPlugin"
15
15
  public let jsName = "CapgoCapacitorFastSql"
16
16
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-fast-sql",
3
- "version": "8.0.9",
3
+ "version": "8.0.10",
4
4
  "description": "High-performance native SQLite plugin with custom protocol for efficient sync operations and IndexedDB replacement",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",