diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fc6f8c..b382302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.3](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/geolocation@7.1.3...@capacitor/geolocation@7.1.2) (2025-06-26) + +### Fixes + +- **ios:** handle location watch callbacks recovery after backgrounding. More info [here](https://github.com/ionic-team/capacitor-geolocation/issues/19). +- Set dependency on @capacitor/synapse to 1.0.3 to fix ssr environments + # [7.1.2](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/geolocation@7.1.2...@capacitor/geolocation@7.1.1) (2025-02-21) ### Fixes diff --git a/packages/capacitor-plugin/package-lock.json b/packages/capacitor-plugin/package-lock.json index c5f38ca..c7fbd26 100644 --- a/packages/capacitor-plugin/package-lock.json +++ b/packages/capacitor-plugin/package-lock.json @@ -1,15 +1,15 @@ { "name": "@capacitor/geolocation", - "version": "7.1.2", + "version": "7.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@capacitor/geolocation", - "version": "7.1.2", + "version": "7.1.3", "license": "MIT", "dependencies": { - "@capacitor/synapse": "^1.0.1" + "@capacitor/synapse": "^1.0.3" }, "devDependencies": { "@capacitor/android": "next", @@ -134,9 +134,9 @@ } }, "node_modules/@capacitor/synapse": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@capacitor/synapse/-/synapse-1.0.1.tgz", - "integrity": "sha512-eLSoIccv6dqJ9GQePlQfHizE91tn9+6Ysj9ZWTi4JwV4OX4As6y505CvEYuM99MiLkdpL+Vcx3jNp8AEeQG5VA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@capacitor/synapse/-/synapse-1.0.3.tgz", + "integrity": "sha512-7gGvuQ1NlSCwnjdIMkry+/meyUxHTnsVodRxOTOerLAoAyvtSnCp1rKyLjt9kCz9Lf7Y/wUbCe+AWbAvfxL5bA==", "license": "ISC" }, "node_modules/@chevrotain/cst-dts-gen": { diff --git a/packages/capacitor-plugin/package.json b/packages/capacitor-plugin/package.json index fd9ad50..b62b56b 100644 --- a/packages/capacitor-plugin/package.json +++ b/packages/capacitor-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor/geolocation", - "version": "7.1.2", + "version": "7.1.3", "description": "The Geolocation API provides simple methods for getting and tracking the current position of the device using GPS, along with altitude, heading, and speed information if available.", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js", @@ -46,7 +46,7 @@ "prepublishOnly": "npm run build" }, "dependencies": { - "@capacitor/synapse": "^1.0.1" + "@capacitor/synapse": "^1.0.3" }, "devDependencies": { "@capacitor/android": "next",