@capgo/background-geolocation 8.0.15 → 8.0.17

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: ["CapgoBackgroundGeolocationPlugin"])
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
  ],
15
15
  targets: [
16
16
  .target(
package/README.md CHANGED
@@ -110,6 +110,17 @@ function guessLocation(callback, timeout) {
110
110
 
111
111
  The most complete doc is available here: https://capgo.app/docs/plugins/background-geolocation/
112
112
 
113
+ ## Compatibility
114
+
115
+ | Plugin version | Capacitor compatibility | Maintained |
116
+ | -------------- | ----------------------- | ---------- |
117
+ | v8.\*.\* | v8.\*.\* | ✅ |
118
+ | v7.\*.\* | v7.\*.\* | On demand |
119
+ | v6.\*.\* | v6.\*.\* | ❌ |
120
+ | v5.\*.\* | v5.\*.\* | ❌ |
121
+
122
+ > **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.
123
+
113
124
  ## Installation
114
125
 
115
126
  This plugin supports Capacitor v7:
@@ -38,7 +38,7 @@ func formatLocation(_ location: CLLocation) -> PluginCallResultData {
38
38
  @objc(BackgroundGeolocation)
39
39
  // swiftlint:disable:next type_body_length
40
40
  public class BackgroundGeolocation: CAPPlugin, CLLocationManagerDelegate, CAPBridgedPlugin {
41
- private let pluginVersion: String = "8.0.15"
41
+ private let pluginVersion: String = "8.0.17"
42
42
  public let identifier = "BackgroundGeolocationPlugin"
43
43
  public let jsName = "BackgroundGeolocation"
44
44
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/background-geolocation",
3
- "version": "8.0.15",
3
+ "version": "8.0.17",
4
4
  "description": "Receive accurate geolocation updates even while the app is in the background.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",