mirror of
https://github.com/flutter/packages.git
synced 2025-06-03 17:48:10 +08:00
Re-land: Enable prefer_mixin and bump plugin_platform_interface to 2.1.7 (#5841)
This reverts commit 5aef49b1c1
, except for the Flutter version pin, thus re-landing https://github.com/flutter/packages/pull/5793. Now that the tree is fixed, it can be re-landed for auto-publishing.
This commit is contained in:
@ -164,7 +164,7 @@ linter:
|
||||
- prefer_is_not_empty
|
||||
- prefer_is_not_operator
|
||||
- prefer_iterable_whereType
|
||||
# - prefer_mixin # DIFFERENT FROM FLUTTER/FLUTTER: enable when v2.1.7 of plugin_platform_interface is the oldest supported version (which makes MockPlatformInterfaceMixin a mixin class)
|
||||
- prefer_mixin
|
||||
# - prefer_null_aware_method_calls # "call()" is confusing to people new to the language since it's not documented anywhere
|
||||
- prefer_null_aware_operators
|
||||
- prefer_relative_imports
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 0.10.5+9
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 0.10.5+8
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -4,7 +4,7 @@ description: A Flutter plugin for controlling the camera. Supports previewing
|
||||
Dart.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
|
||||
version: 0.10.5+8
|
||||
version: 0.10.5+9
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -33,7 +33,7 @@ dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- camera
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.7.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.7.1
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/camera/camera
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
|
||||
# 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: 2.7.1
|
||||
version: 2.7.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -14,7 +14,7 @@ dependencies:
|
||||
cross_file: ^0.3.1
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
stream_transform: ^2.0.0
|
||||
|
||||
dev_dependencies:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.0.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.0.1
|
||||
|
@ -3,7 +3,7 @@ description: Flutter plugin for opening and saving files, or selecting
|
||||
directories, using native file selection UI.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
|
||||
version: 1.0.1
|
||||
version: 1.0.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -39,7 +39,7 @@ dependencies:
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.3
|
||||
|
||||
topics:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 0.5.0+6
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 0.5.0+5
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -2,7 +2,7 @@ name: file_selector_android
|
||||
description: Android implementation of the file_selector package.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_android
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
|
||||
version: 0.5.0+5
|
||||
version: 0.5.0+6
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -21,7 +21,7 @@ dependencies:
|
||||
file_selector_platform_interface: ^2.5.0
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.2
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.1.4
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 2.6.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 2.6.1
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/file_selector
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
|
||||
# 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: 2.6.1
|
||||
version: 2.6.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -15,7 +15,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
http: ">=0.13.0 <2.0.0"
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.5.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.5.1
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -2,7 +2,7 @@ name: google_maps_flutter
|
||||
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
|
||||
version: 2.5.1
|
||||
version: 2.5.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -29,7 +29,7 @@ dependencies:
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
stream_transform: ^2.0.0
|
||||
|
||||
topics:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.6.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.6.1
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -2,7 +2,7 @@ name: google_maps_flutter_android
|
||||
description: Android implementation of the google_maps_flutter plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_android
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
|
||||
version: 2.6.1
|
||||
version: 2.6.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -28,7 +28,7 @@ dev_dependencies:
|
||||
async: ^2.5.0
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- google-maps
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.3.5
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.3.4
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -2,7 +2,7 @@ name: google_maps_flutter_ios
|
||||
description: iOS implementation of the google_maps_flutter plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_ios
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
|
||||
version: 2.3.4
|
||||
version: 2.3.5
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -26,7 +26,7 @@ dev_dependencies:
|
||||
async: ^2.5.0
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- google-maps
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.4.3
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.4.2
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/google_maps_f
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
|
||||
# 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: 2.4.2
|
||||
version: 2.4.3
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -14,7 +14,7 @@ dependencies:
|
||||
collection: ^1.15.0
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
stream_transform: ^2.0.0
|
||||
|
||||
dev_dependencies:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.4.5
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.4.4
|
||||
|
||||
* Updates `clearAuthCache` override to match base class declaration.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/google_sign_i
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
|
||||
# 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: 2.4.4
|
||||
version: 2.4.5
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 1.0.7
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 1.0.6
|
||||
|
||||
* Fixes new lint warnings.
|
||||
|
@ -3,7 +3,7 @@ description: Flutter plugin for selecting images from the Android and iOS image
|
||||
library, and taking new pictures with the camera.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -42,7 +42,7 @@ dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- camera
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.9.3
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.9.2
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/image_picker/
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
|
||||
# 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: 2.9.2
|
||||
version: 2.9.3
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -15,7 +15,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
http: ">=0.13.0 <2.0.0"
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 3.1.13
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 3.1.12
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -2,7 +2,7 @@ name: in_app_purchase
|
||||
description: A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/in_app_purchase/in_app_purchase
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
|
||||
version: 3.1.12
|
||||
version: 3.1.13
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -30,7 +30,7 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.0
|
||||
|
||||
topics:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.3.7
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.3.6
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/in_app_purcha
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
|
||||
# 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: 1.3.6
|
||||
version: 1.3.7
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.1.8
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.1.7
|
||||
|
||||
* Adds pub topics to package metadata.
|
||||
|
@ -3,7 +3,7 @@ description: Flutter plugin for Android and iOS devices to allow local
|
||||
authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
|
||||
version: 2.1.7
|
||||
version: 2.1.8
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -33,7 +33,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.1.2
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- authentication
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 1.0.10
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 1.0.9
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/local_auth/lo
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
|
||||
# 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: 1.0.9
|
||||
version: 1.0.10
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.2
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 2.1.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 2.1.1
|
||||
|
@ -2,7 +2,7 @@ name: path_provider
|
||||
description: Flutter plugin for getting commonly used locations on host platform file systems, such as the temp and app data directories.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/path_provider/path_provider
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+path_provider%22
|
||||
version: 2.1.1
|
||||
version: 2.1.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -36,7 +36,7 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.0
|
||||
|
||||
topics:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 2.1.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 2.1.1
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/path_provider
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+path_provider%22
|
||||
# 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: 2.1.1
|
||||
version: 2.1.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -14,7 +14,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
platform: ^3.0.0
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 0.10.0+1
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 0.10.0
|
||||
|
||||
* Initial release.
|
||||
|
@ -2,7 +2,7 @@ name: pointer_interceptor_ios
|
||||
description: iOS implementation of the pointer_interceptor plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/pointer_interceptor/pointer_interceptor_ios
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apointer_interceptor
|
||||
version: 0.10.0
|
||||
version: 0.10.0+1
|
||||
|
||||
environment:
|
||||
sdk: '>=3.1.0 <4.0.0'
|
||||
@ -19,7 +19,7 @@ flutter:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.6
|
||||
plugin_platform_interface: ^2.1.7
|
||||
pointer_interceptor_platform_interface: ^0.10.0
|
||||
|
||||
dev_dependencies:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 0.10.0+1
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 0.10.0
|
||||
|
||||
* Initial release from migration to federated architecture.
|
||||
|
@ -3,7 +3,7 @@ description: "A common platform interface for the pointer_interceptor plugin."
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/pointer_interceptor/pointer_interceptor_platform_interface
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pointer_interceptor%22
|
||||
|
||||
version: 0.10.0
|
||||
version: 0.10.0+1
|
||||
|
||||
environment:
|
||||
sdk: '>=3.1.0 <4.0.0'
|
||||
@ -12,7 +12,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 0.10.1+1
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 0.10.1
|
||||
|
||||
* Uses `HtmlElementView.fromTagName` instead of custom factories.
|
||||
|
@ -2,7 +2,7 @@ name: pointer_interceptor_web
|
||||
description: Web implementation of the pointer_interceptor plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/pointer_interceptor/pointer_interceptor_web
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apointer_interceptor
|
||||
version: 0.10.1
|
||||
version: 0.10.1+1
|
||||
|
||||
environment:
|
||||
sdk: ^3.2.0
|
||||
@ -21,7 +21,7 @@ dependencies:
|
||||
sdk: flutter
|
||||
flutter_web_plugins:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.6
|
||||
plugin_platform_interface: ^2.1.7
|
||||
pointer_interceptor_platform_interface: ^0.10.0
|
||||
web: '>=0.3.0 <0.5.0'
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.0.7
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.0.6
|
||||
|
@ -3,7 +3,7 @@ description: Flutter plugin for creating shortcuts on home screen, also known as
|
||||
Quick Actions on iOS and App Shortcuts on Android.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/quick_actions/quick_actions
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+quick_actions%22
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -30,7 +30,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- quick-actions
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.0.10
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.0.9
|
||||
|
@ -2,7 +2,7 @@ name: quick_actions_android
|
||||
description: An implementation for the Android platform of the Flutter `quick_actions` plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/quick_actions/quick_actions_android
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
|
||||
version: 1.0.9
|
||||
version: 1.0.10
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -28,7 +28,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
pigeon: ^11.0.1
|
||||
plugin_platform_interface: ^2.1.2
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- quick-actions
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.0.9
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.0.8
|
||||
|
@ -2,7 +2,7 @@ name: quick_actions_ios
|
||||
description: An implementation for the iOS platform of the Flutter `quick_actions` plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/quick_actions/quick_actions_ios
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
|
||||
version: 1.0.8
|
||||
version: 1.0.9
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -27,7 +27,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
pigeon: ^12.0.1
|
||||
plugin_platform_interface: ^2.1.2
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- quick-actions
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 1.0.6
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 1.0.5
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/quick_actions
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+quick_actions%22
|
||||
# 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: 1.0.5
|
||||
version: 1.0.6
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 2.3.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 2.3.1
|
||||
|
@ -2,7 +2,7 @@ name: shared_preferences_platform_interface
|
||||
description: A common platform interface for the shared_preferences plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/shared_preferences/shared_preferences_platform_interface
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+shared_preferences%22
|
||||
version: 2.3.1
|
||||
version: 2.3.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -11,7 +11,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 6.2.3
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 6.2.2
|
||||
|
||||
* Adds a link about web limitations to the `url_launcher_web` package in the
|
||||
|
@ -25,7 +25,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
|
@ -3,7 +3,7 @@ description: Flutter plugin for launching a URL. Supports
|
||||
web, phone, SMS, and email schemes.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
|
||||
version: 6.2.2
|
||||
version: 6.2.3
|
||||
|
||||
environment:
|
||||
sdk: ">=3.1.0 <4.0.0"
|
||||
@ -42,7 +42,7 @@ dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.3
|
||||
|
||||
topics:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 6.2.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 6.2.1
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -24,7 +24,7 @@ dev_dependencies:
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
|
@ -2,7 +2,7 @@ name: url_launcher_android
|
||||
description: Android implementation of the url_launcher plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_android
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
|
||||
version: 6.2.1
|
||||
version: 6.2.2
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
flutter: ">=3.10.0"
|
||||
@ -26,7 +26,7 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
pigeon: ^10.0.0
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.3
|
||||
|
||||
topics:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 6.2.3
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 6.2.2
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -23,7 +23,7 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
integration_test:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
|
@ -2,7 +2,7 @@ name: url_launcher_ios
|
||||
description: iOS implementation of the url_launcher plugin.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_ios
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
|
||||
version: 6.2.2
|
||||
version: 6.2.3
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -27,7 +27,7 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
pigeon: ^11.0.1
|
||||
plugin_platform_interface: ^2.0.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
test: ^1.16.3
|
||||
|
||||
topics:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.3.1
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.3.0
|
||||
* Adds `InAppBrowserConfiguration` parameter to `LaunchOptions`, to configure in-app browser views, such as Android Custom Tabs or `SFSafariViewController`.
|
||||
* Adds `showTitle` parameter to `InAppBrowserConfiguration` in order to control web-page title visibility.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
|
||||
# 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: 2.3.0
|
||||
version: 2.3.1
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,5 +1,6 @@
|
||||
## NEXT
|
||||
## 6.2.2
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
||||
## 6.2.1
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/video_player/
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
|
||||
# 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: 6.2.1
|
||||
version: 6.2.2
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -13,7 +13,7 @@ environment:
|
||||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 4.4.4
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 4.4.3
|
||||
|
||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||
|
@ -2,7 +2,7 @@ name: webview_flutter
|
||||
description: A Flutter plugin that provides a WebView widget on Android and iOS.
|
||||
repository: https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
|
||||
version: 4.4.3
|
||||
version: 4.4.4
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -28,7 +28,7 @@ dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
mockito: 5.4.4
|
||||
plugin_platform_interface: ^2.1.3
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
topics:
|
||||
- html
|
||||
|
@ -1,3 +1,7 @@
|
||||
## 2.9.1
|
||||
|
||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||
|
||||
## 2.9.0
|
||||
|
||||
* Adds support to show JavaScript dialog. See `PlatformWebViewController.setOnJavaScriptAlertDialog`, `PlatformWebViewController.setOnJavaScriptConfirmDialog` and `PlatformWebViewController.setOnJavaScriptTextInputDialog`.
|
||||
|
@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/webview_flutt
|
||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview_flutter%22
|
||||
# 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: 2.9.0
|
||||
version: 2.9.1
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
@ -14,7 +14,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
meta: ^1.7.0
|
||||
plugin_platform_interface: ^2.1.0
|
||||
plugin_platform_interface: ^2.1.7
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.1.8
|
||||
|
Reference in New Issue
Block a user