From 452fe981131d8a4c2d30765b0a7ba5c6f844e638 Mon Sep 17 00:00:00 2001 From: Cristian Zazo Date: Mon, 2 Oct 2023 09:58:43 +0200 Subject: [PATCH] (`geolocator_platform_interface`): Update dependencies (#1347) * (chore): Update dependencies * Fix analyzer * Revert `geolocator` * Revert `geolocator_android` * Revert `geolocator_apple` * Revert `geolocator_linux` * Revert `geolocator_web` * Revert `geolocator_windows` * Missing plugin revert * Downgrade `geolocator_platform_interface` version * Update geolocator_platform_interface/CHANGELOG.md Co-authored-by: Maurits van Beusekom --------- Co-authored-by: Maurits van Beusekom --- README.md | 8 ++++---- geolocator_platform_interface/CHANGELOG.md | 4 ++++ geolocator_platform_interface/pubspec.yaml | 14 +++++++------- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 74ed23e8..f34b0d4e 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ The Flutter geolocator plugin is built following the federated plugin architectu 1. [`geolocator`][1]: the app facing package. This is the package users depend on to use the plugin in their project. For details on how to use the [`geolocator`][1] plugin you can refer to its [README.md][2] file. 2. [`geolocator_android`][3]: this package contains the endorsed Android implementation of the geolocator_platform_interface and adds Android support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][4] file; -2. [`geolocator_apple`][5]: this package contains the endorsed iOS and macOS implementations of the geolocator_platform_interface and adds iOS and macOS support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][6] file; -2. [`geolocator_web`][7]: this package contains the endorsed web implementation of the geolocator_platform_interface and adds web support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][8] file; -2. [`geolocator_windows`][9]: this package contains the endorsed Windows implementation of the geolocator_platform_interface and adds Windows support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][10] file; -3. [`geolocator_platform_interface`][11]: this package declares the interface which all platform packages must implement to support the app-facing package. Instructions on how to implement a platform package can be found in the [README.md][12] of the [`geolocator_platform_interface`][11] package. +3. [`geolocator_apple`][5]: this package contains the endorsed iOS and macOS implementations of the geolocator_platform_interface and adds iOS and macOS support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][6] file; +4. [`geolocator_web`][7]: this package contains the endorsed web implementation of the geolocator_platform_interface and adds web support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][8] file; +5. [`geolocator_windows`][9]: this package contains the endorsed Windows implementation of the geolocator_platform_interface and adds Windows support to the [`geolocator`][1] app facing package. More information can be found in its [README.md][10] file; +6. [`geolocator_platform_interface`][11]: this package declares the interface which all platform packages must implement to support the app-facing package. Instructions on how to implement a platform package can be found in the [README.md][12] of the [`geolocator_platform_interface`][11] package. [1]: ./geolocator [2]: ./geolocator/README.md diff --git a/geolocator_platform_interface/CHANGELOG.md b/geolocator_platform_interface/CHANGELOG.md index ff1d9cec..fb4ff66b 100644 --- a/geolocator_platform_interface/CHANGELOG.md +++ b/geolocator_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.1.1 + +- Updates dependencies to latest versions to prevent conflicts with other packages. + ## 4.1.0 - Includes `altitudeAccuracy` and `headingAccuracy` in `Position`. diff --git a/geolocator_platform_interface/pubspec.yaml b/geolocator_platform_interface/pubspec.yaml index f638e5b6..82489c08 100644 --- a/geolocator_platform_interface/pubspec.yaml +++ b/geolocator_platform_interface/pubspec.yaml @@ -3,22 +3,22 @@ description: A common platform interface for the geolocator plugin. repository: https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_platform_interface # NOTE: We strongly prefer non-breaking changes, even at the expense of a # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes -version: 4.1.0 +version: 4.1.1 dependencies: flutter: sdk: flutter - plugin_platform_interface: ^2.1.1 - vector_math: ^2.1.0 - meta: ^1.3.0 + plugin_platform_interface: ^2.1.6 + vector_math: ^2.1.4 + meta: ^1.9.1 dev_dependencies: - async: ^2.8.1 + async: ^2.11.0 flutter_test: sdk: flutter - flutter_lints: ^1.0.4 - mockito: ^5.0.0-nullsafety.7 + flutter_lints: ^2.0.3 + mockito: ^5.4.2 environment: sdk: ">=2.15.0 <4.0.0"