From 12a1ec9f80819c356415173e143e0d6425e448d2 Mon Sep 17 00:00:00 2001 From: Chace Daniels Date: Thu, 26 Jun 2025 10:30:35 -0500 Subject: [PATCH 1/3] chore: update synapase and prepare v7.1.3 --- CHANGELOG.md | 7 +++++++ packages/capacitor-plugin/package.json | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fc6f8c..5a34d61 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 +- 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.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", From a982dbbeeaf8858e0f867e7e4c1c32e9f049330f Mon Sep 17 00:00:00 2001 From: Chace Daniels Date: Thu, 26 Jun 2025 10:31:11 -0500 Subject: [PATCH 2/3] chore: run build --- packages/capacitor-plugin/package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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": { From 79b3584591d6eae0fa9f6535875091a719593271 Mon Sep 17 00:00:00 2001 From: Chace Daniels Date: Wed, 2 Jul 2025 09:02:13 -0500 Subject: [PATCH 3/3] add link to issue in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a34d61..b382302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Fixes -- **ios:** handle location watch callbacks recovery after backgrounding +- **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)