[various] Update flutter/plugins links (#3256)

Updates links and references to `flutter/plugins` to use `flutter/packages` instead, including making the `repository` pubspec.yaml check stricter in the repo tooling to ensure all packages are pointing to the right place.

Exceptions to the updates are:
- Changelog entries.
- Links to pull requests.

This will re-publish all the moved plugins, thus fixing the current redness of `release` (due to the current versions not being tagged in this repository).
This commit is contained in:
stuartmorgan
2023-02-22 10:45:11 -08:00
committed by GitHub
parent 2e1673307f
commit 25f0f702e5
226 changed files with 572 additions and 401 deletions

View File

@ -243,12 +243,13 @@ task:
CHANNEL: "stable" CHANNEL: "stable"
unit_test_script: unit_test_script:
- ./script/tool_runner.sh test --exclude=script/configs/dart_unit_tests_exceptions.yaml - ./script/tool_runner.sh test --exclude=script/configs/dart_unit_tests_exceptions.yaml
pathified_unit_test_script: # TODO(stuartmorgan): Re-enable once https://github.com/flutter/packages/pull/3256 lands.
#pathified_unit_test_script:
# Run tests with path-based dependencies to ensure that publishing # Run tests with path-based dependencies to ensure that publishing
# the changes won't break tests of other packages in the repository # the changes won't break tests of other packages in the repository
# that depend on it. # that depend on it.
- ./script/tool_runner.sh make-deps-path-based --target-dependencies-with-non-breaking-updates #- ./script/tool_runner.sh make-deps-path-based --target-dependencies-with-non-breaking-updates
- $PLUGIN_TOOL_COMMAND test --run-on-dirty-packages --exclude=script/configs/dart_unit_tests_exceptions.yaml #- $PLUGIN_TOOL_COMMAND test --run-on-dirty-packages --exclude=script/configs/dart_unit_tests_exceptions.yaml
- name: linux-custom_package_tests - name: linux-custom_package_tests
env: env:
PATH: $PATH:/usr/local/bin PATH: $PATH:/usr/local/bin

View File

@ -1,3 +1,7 @@
## 0.10.3+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.10.3 ## 0.10.3
* Adds back use of Optional type. * Adds back use of Optional type.

View File

@ -59,7 +59,7 @@ For web integration details, see the
### Handling Lifecycle states ### Handling Lifecycle states
As of version [0.5.0](https://github.com/flutter/plugins/blob/main/packages/camera/CHANGELOG.md#050) of the camera plugin, lifecycle changes are no longer handled by the plugin. This means developers are now responsible to control camera resources when the lifecycle state is updated. Failure to do so might lead to unexpected behavior (for example as described in issue [#39109](https://github.com/flutter/flutter/issues/39109)). Handling lifecycle changes can be done by overriding the `didChangeAppLifecycleState` method like so: As of version [0.5.0](https://github.com/flutter/packages/blob/main/packages/camera/CHANGELOG.md#050) of the camera plugin, lifecycle changes are no longer handled by the plugin. This means developers are now responsible to control camera resources when the lifecycle state is updated. Failure to do so might lead to unexpected behavior (for example as described in issue [#39109](https://github.com/flutter/flutter/issues/39109)). Handling lifecycle changes can be done by overriding the `didChangeAppLifecycleState` method like so:
<?code-excerpt "main.dart (AppLifecycle)"?> <?code-excerpt "main.dart (AppLifecycle)"?>
```dart ```dart
@ -169,6 +169,6 @@ class _CameraAppState extends State<CameraApp> {
} }
``` ```
For a more elaborate usage example see [here](https://github.com/flutter/plugins/tree/main/packages/camera/camera/example). For a more elaborate usage example see [here](https://github.com/flutter/packages/tree/main/packages/camera/camera/example).
[1]: https://pub.dev/packages/camera_web#limitations-on-the-web-platform [1]: https://pub.dev/packages/camera_web#limitations-on-the-web-platform

View File

@ -2,9 +2,9 @@ name: camera
description: A Flutter plugin for controlling the camera. Supports previewing description: A Flutter plugin for controlling the camera. Supports previewing
the camera feed, capturing images and video, and streaming image buffers to the camera feed, capturing images and video, and streaming image buffers to
Dart. Dart.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.10.3 version: 0.10.3+1
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.10.4+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.10.4 ## 0.10.4
* Temporarily fixes issue with requested video profiles being null by falling back to deprecated behavior in that case. * Temporarily fixes issue with requested video profiles being null by falling back to deprecated behavior in that case.

View File

@ -1,8 +1,8 @@
name: camera_android name: camera_android
description: Android implementation of the camera plugin. description: Android implementation of the camera plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_android repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.10.4 version: 0.10.4+1
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,6 +1,6 @@
name: camera_android_camerax name: camera_android_camerax
description: Android implementation of the camera plugin using the CameraX library. description: Android implementation of the camera plugin using the CameraX library.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_android_camerax repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_android_camerax
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
publish_to: 'none' publish_to: 'none'

View File

@ -1,3 +1,7 @@
## 0.9.11+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.9.11 ## 0.9.11
* Adds back use of Optional type. * Adds back use of Optional type.

View File

@ -8,10 +8,10 @@ Pod::Spec.new do |s|
s.description = <<-DESC s.description = <<-DESC
A Flutter plugin to use the camera from your Flutter app. A Flutter plugin to use the camera from your Flutter app.
DESC DESC
s.homepage = 'https://github.com/flutter/plugins' s.homepage = 'https://github.com/flutter/packages'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/camera_avfoundation' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/camera_avfoundation' }
s.documentation_url = 'https://pub.dev/packages/camera_avfoundation' s.documentation_url = 'https://pub.dev/packages/camera_avfoundation'
s.source_files = 'Classes/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h' s.public_header_files = 'Classes/**/*.h'

View File

@ -1,8 +1,8 @@
name: camera_avfoundation name: camera_avfoundation
description: iOS implementation of the camera plugin. description: iOS implementation of the camera plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_avfoundation repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_avfoundation
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.9.11 version: 0.9.11+1
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 2.4.1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 2.4.0 ## 2.4.0
* Allows camera to be switched while video recording. * Allows camera to be switched while video recording.

View File

@ -1,10 +1,10 @@
name: camera_platform_interface name: camera_platform_interface
description: A common platform interface for the camera plugin. description: A common platform interface for the camera plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.4.0 version: 2.4.1
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View File

@ -1,5 +1,6 @@
## NEXT ## 0.3.1+2
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 0.3.1+1 ## 0.3.1+1

View File

@ -1,8 +1,8 @@
name: camera_web name: camera_web
description: A Flutter plugin for getting information about and controlling the camera on Web. description: A Flutter plugin for getting information about and controlling the camera on Web.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_web repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.3.1+1 version: 0.3.1+2
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.2.1+5
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 0.2.1+4 ## 0.2.1+4

View File

@ -1,8 +1,8 @@
name: camera_windows name: camera_windows
description: A Flutter plugin for getting information about and controlling the camera on Windows. description: A Flutter plugin for getting information about and controlling the camera on Windows.
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_windows repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_windows
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.2.1+4 version: 0.2.1+5
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.2.0+9
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.2.0+8 ## 0.2.0+8
* Updates espresso and junit dependencies. * Updates espresso and junit dependencies.

View File

@ -1,9 +1,9 @@
name: espresso name: espresso
description: Java classes for testing Flutter apps using Espresso. description: Java classes for testing Flutter apps using Espresso.
Allows driving Flutter widgets from a native Espresso test. Allows driving Flutter widgets from a native Espresso test.
repository: https://github.com/flutter/plugins/tree/main/packages/espresso repository: https://github.com/flutter/packages/tree/main/packages/espresso
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+espresso%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+espresso%22
version: 0.2.0+8 version: 0.2.0+9
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.0.8
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.0.7 ## 2.0.7

View File

@ -30,7 +30,7 @@ This package contains a modified version of Flutter's Google Sign In example app
See it [here](https://github.com/flutter/packages/blob/main/packages/extension_google_sign_in_as_googleapis_auth/example/lib/main.dart). See it [here](https://github.com/flutter/packages/blob/main/packages/extension_google_sign_in_as_googleapis_auth/example/lib/main.dart).
The original code (and its license) can be seen [here](https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in/example/lib/main.dart). The original code (and its license) can be seen [here](https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in/example/lib/main.dart).
## Testing ## Testing

View File

@ -8,7 +8,7 @@ name: extension_google_sign_in_as_googleapis_auth
description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials. description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials.
repository: https://github.com/flutter/packages/tree/main/packages/extension_google_sign_in_as_googleapis_auth repository: https://github.com/flutter/packages/tree/main/packages/extension_google_sign_in_as_googleapis_auth
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+extension_google_sign_in_as_googleapis_auth%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+extension_google_sign_in_as_googleapis_auth%22
version: 2.0.7 version: 2.0.8
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.9.2+3
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -1,9 +1,9 @@
name: file_selector name: file_selector
description: Flutter plugin for opening and saving files, or selecting description: Flutter plugin for opening and saving files, or selecting
directories, using native file selection UI. directories, using native file selection UI.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.2+2 version: 0.9.2+3
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.5.0+3
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -9,10 +9,10 @@ Pod::Spec.new do |s|
s.description = <<-DESC s.description = <<-DESC
Displays the native iOS document picker. Displays the native iOS document picker.
DESC DESC
s.homepage = 'https://github.com/flutter/plugins/tree/main/packages/file_selector' s.homepage = 'https://github.com/flutter/packages/tree/main/packages/file_selector'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_ios' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_ios' }
s.source_files = 'Classes/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}'
s.module_map = 'Classes/FileSelectorPlugin.modulemap' s.module_map = 'Classes/FileSelectorPlugin.modulemap'
s.dependency 'Flutter' s.dependency 'Flutter'

View File

@ -1,8 +1,8 @@
name: file_selector_ios name: file_selector_ios
description: iOS implementation of the file_selector plugin. description: iOS implementation of the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_ios repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_ios
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.5.0+2 version: 0.5.0+3
environment: environment:
sdk: ">=2.14.4 <3.0.0" sdk: ">=2.14.4 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.9.1+1
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -58,10 +58,9 @@ target_link_libraries(${TEST_RUNNER} PRIVATE PkgConfig::GTK)
target_link_libraries(${TEST_RUNNER} PRIVATE gtest_main gmock) target_link_libraries(${TEST_RUNNER} PRIVATE gtest_main gmock)
include(GoogleTest) include(GoogleTest)
# TODO(stuartmorgan): Switch back to gtest_discover_tests when moving to
# flutter/plugins; it doesn't work in the FDE CI because it requires actually
# running a GTK app, which it hasn't been set up for.
gtest_add_tests(TARGET ${TEST_RUNNER}) gtest_add_tests(TARGET ${TEST_RUNNER})
# TODO(stuartmorgan): Ensure that all of the necessary steps are running under
# xvfb, and re-enable this.
#gtest_discover_tests(${TEST_RUNNER}) #gtest_discover_tests(${TEST_RUNNER})
endif() # CMake version check endif() # CMake version check
endif() # include_${PROJECT_NAME}_tests endif() # include_${PROJECT_NAME}_tests

View File

@ -1,8 +1,8 @@
name: file_selector_linux name: file_selector_linux
description: Liunx implementation of the file_selector plugin. description: Liunx implementation of the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_linux repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_linux
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.1 version: 0.9.1+1
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.9.0+5
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -9,9 +9,9 @@ Pod::Spec.new do |s|
Displays native macOS open and save panels. Displays native macOS open and save panels.
DESC DESC
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.homepage = 'https://github.com/flutter/plugins/tree/main/packages/file_selector' s.homepage = 'https://github.com/flutter/packages/tree/main/packages/file_selector'
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_macos' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_macos' }
s.source_files = 'Classes/**/*' s.source_files = 'Classes/**/*'
s.dependency 'FlutterMacOS' s.dependency 'FlutterMacOS'

View File

@ -1,8 +1,8 @@
name: file_selector_macos name: file_selector_macos
description: macOS implementation of the file_selector plugin. description: macOS implementation of the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_macos repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_macos
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.0+4 version: 0.9.0+5
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.4.1
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.4.0 ## 2.4.0

View File

@ -1,10 +1,10 @@
name: file_selector_platform_interface name: file_selector_platform_interface
description: A common platform interface for the file_selector plugin. description: A common platform interface for the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.4.0 version: 2.4.1
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.9.0+3
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 0.9.0+2 ## 0.9.0+2

View File

@ -1,8 +1,8 @@
name: file_selector_web name: file_selector_web
description: Web platform implementation of file_selector description: Web platform implementation of file_selector
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_web repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.0+2 version: 0.9.0+3
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 0.9.1+5
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -1,8 +1,8 @@
name: file_selector_windows name: file_selector_windows
description: Windows implementation of the file_selector plugin. description: Windows implementation of the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_windows repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_windows
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.1+4 version: 0.9.1+5
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.0.8
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.0.7 ## 2.0.7

View File

@ -42,4 +42,4 @@ public class MyPlugin implements FlutterPlugin, ActivityAware {
``` ```
[Feedback welcome](https://github.com/flutter/flutter/issues) and [Feedback welcome](https://github.com/flutter/flutter/issues) and
[Pull Requests](https://github.com/flutter/plugins/pulls) are most welcome! [Pull Requests](https://github.com/flutter/packages/pulls) are most welcome!

View File

@ -1,8 +1,8 @@
name: flutter_plugin_android_lifecycle name: flutter_plugin_android_lifecycle
description: Flutter plugin for accessing an Android Lifecycle within other plugins. description: Flutter plugin for accessing an Android Lifecycle within other plugins.
repository: https://github.com/flutter/plugins/tree/main/packages/flutter_plugin_android_lifecycle repository: https://github.com/flutter/packages/tree/main/packages/flutter_plugin_android_lifecycle
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_plugin_android_lifecycle%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_plugin_android_lifecycle%22
version: 2.0.7 version: 2.0.8
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.2.4
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.2.3 ## 2.2.3

View File

@ -1,8 +1,8 @@
name: google_maps_flutter name: google_maps_flutter
description: A Flutter plugin for integrating Google Maps in iOS and Android applications. description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.2.3 version: 2.2.4
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 2.4.6
* Updates links for the merge of flutter/plugins into flutter/packages.
## 2.4.5 ## 2.4.5
* Fixes Initial padding not working when map has not been created yet. * Fixes Initial padding not working when map has not been created yet.

View File

@ -1,8 +1,8 @@
name: google_maps_flutter_android name: google_maps_flutter_android
description: Android implementation of the google_maps_flutter plugin. description: Android implementation of the google_maps_flutter plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter_android 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.4.5 version: 2.4.6
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.1.14
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.1.13 ## 2.1.13

View File

@ -9,10 +9,10 @@ Pod::Spec.new do |s|
A Flutter plugin that provides a Google Maps widget. A Flutter plugin that provides a Google Maps widget.
Downloaded by pub (not CocoaPods). Downloaded by pub (not CocoaPods).
DESC DESC
s.homepage = 'https://github.com/flutter/plugins' s.homepage = 'https://github.com/flutter/packages'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter/ios' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter/ios' }
s.documentation_url = 'https://pub.dev/packages/google_maps_flutter_ios' s.documentation_url = 'https://pub.dev/packages/google_maps_flutter_ios'
s.source_files = 'Classes/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h' s.public_header_files = 'Classes/**/*.h'

View File

@ -1,8 +1,8 @@
name: google_maps_flutter_ios name: google_maps_flutter_ios
description: iOS implementation of the google_maps_flutter plugin. description: iOS implementation of the google_maps_flutter plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter_ios 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.1.13 version: 2.1.14
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.2.6
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.2.5 ## 2.2.5

View File

@ -1,10 +1,10 @@
name: google_maps_flutter_platform_interface name: google_maps_flutter_platform_interface
description: A common platform interface for the google_maps_flutter plugin. description: A common platform interface for the google_maps_flutter plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.2.5 version: 2.2.6
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View File

@ -1,5 +1,6 @@
## NEXT ## 0.4.0+6
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 0.4.0+5 ## 0.4.0+5

View File

@ -1,8 +1,8 @@
name: google_maps_flutter_web name: google_maps_flutter_web
description: Web platform implementation of google_maps_flutter description: Web platform implementation of google_maps_flutter
repository: https://github.com/flutter/plugins/tree/main/packages/google_maps_flutter/google_maps_flutter_web repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 0.4.0+5 version: 0.4.0+6
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 6.0.1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 6.0.0 ## 6.0.0
* **Breaking change** for platform `web`: * **Breaking change** for platform `web`:

View File

@ -2,10 +2,6 @@
A Flutter plugin for [Google Sign In](https://developers.google.com/identity/). A Flutter plugin for [Google Sign In](https://developers.google.com/identity/).
_Note_: This plugin is still under development, and some APIs might not be
available yet. [Feedback](https://github.com/flutter/flutter/issues) and
[Pull Requests](https://github.com/flutter/plugins/pulls) are most welcome!
| | Android | iOS | Web | | | Android | iOS | Web |
|-------------|---------|--------|-----| |-------------|---------|--------|-----|
| **Support** | SDK 16+ | iOS 9+ | Any | | **Support** | SDK 16+ | iOS 9+ | Any |
@ -148,4 +144,4 @@ Future<void> _handleSignIn() async {
## Example ## Example
Find the example wiring in the Find the example wiring in the
[Google sign-in example application](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart). [Google sign-in example application](https://github.com/flutter/packages/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart).

View File

@ -1,9 +1,9 @@
name: google_sign_in name: google_sign_in
description: Flutter plugin for Google Sign-In, a secure authentication system description: Flutter plugin for Google Sign-In, a secure authentication system
for signing in with a Google account on Android and iOS. for signing in with a Google account on Android and iOS.
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 6.0.0 version: 6.0.1
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 6.1.7
* Updates links for the merge of flutter/plugins into flutter/packages.
## 6.1.6 ## 6.1.6
* Minor implementation cleanup * Minor implementation cleanup

View File

@ -1,8 +1,8 @@
name: google_sign_in_android name: google_sign_in_android
description: Android implementation of the google_sign_in plugin. description: Android implementation of the google_sign_in plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_android repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 6.1.6 version: 6.1.7
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 5.5.2
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 5.5.1 ## 5.5.1

View File

@ -8,10 +8,10 @@ Pod::Spec.new do |s|
s.description = <<-DESC s.description = <<-DESC
Enables Google Sign-In in Flutter apps. Enables Google Sign-In in Flutter apps.
DESC DESC
s.homepage = 'https://github.com/flutter/plugins/tree/main/packages/google_sign_in' s.homepage = 'https://github.com/flutter/packages/tree/main/packages/google_sign_in'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_ios' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_ios' }
s.source_files = 'Classes/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h' s.public_header_files = 'Classes/**/*.h'
s.module_map = 'Classes/FLTGoogleSignInPlugin.modulemap' s.module_map = 'Classes/FLTGoogleSignInPlugin.modulemap'

View File

@ -1,8 +1,8 @@
name: google_sign_in_ios name: google_sign_in_ios
description: iOS implementation of the google_sign_in plugin. description: iOS implementation of the google_sign_in plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_ios repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_ios
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 5.5.1 version: 5.5.2
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.3.1
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.3.0 ## 2.3.0

View File

@ -57,7 +57,7 @@ class SignInInitParameters {
/// here takes precedence over a value specified in a configuration file. /// here takes precedence over a value specified in a configuration file.
/// See also: /// See also:
/// ///
/// * [Platform Integration](https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in#platform-integration), /// * [Platform Integration](https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in#platform-integration),
/// where you can find the details about the configuration files. /// where you can find the details about the configuration files.
final String? clientId; final String? clientId;
@ -70,7 +70,7 @@ class SignInInitParameters {
/// ///
/// See also: /// See also:
/// ///
/// * [Platform Integration](https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in#platform-integration), /// * [Platform Integration](https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in#platform-integration),
/// where you can find the details about the configuration files. /// where you can find the details about the configuration files.
final String? serverClientId; final String? serverClientId;

View File

@ -1,10 +1,10 @@
name: google_sign_in_platform_interface name: google_sign_in_platform_interface
description: A common platform interface for the google_sign_in plugin. description: A common platform interface for the google_sign_in plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.3.0 version: 2.3.1
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.11.0+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.11.0 ## 0.11.0
* **Breaking Change:** Migrates JS-interop to `package:google_identity_services_web` * **Breaking Change:** Migrates JS-interop to `package:google_identity_services_web`

View File

@ -172,19 +172,19 @@ Note that the **`serverClientId` parameter of the `GoogleSignIn` constructor is
## Example ## Example
Find the example wiring in the [Google sign-in example application](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart). Find the example wiring in the [Google sign-in example application](https://github.com/flutter/packages/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart).
## API details ## API details
See [google_sign_in.dart](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/lib/google_sign_in.dart) for more API details. See [google_sign_in.dart](https://github.com/flutter/packages/blob/main/packages/google_sign_in/google_sign_in/lib/google_sign_in.dart) for more API details.
## Contributions and Testing ## Contributions and Testing
Tests are crucial for contributions to this package. All new contributions should be reasonably tested. Tests are crucial for contributions to this package. All new contributions should be reasonably tested.
**Check the [`test/README.md` file](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in_web/test/README.md)** for more information on how to run tests on this package. **Check the [`test/README.md` file](https://github.com/flutter/packages/blob/main/packages/google_sign_in/google_sign_in_web/test/README.md)** for more information on how to run tests on this package.
Contributions to this package are welcome. Read the [Contributing to Flutter Plugins](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md) guide to get started. Contributions to this package are welcome. Read the [Contributing to Flutter Plugins](https://github.com/flutter/packages/blob/main/CONTRIBUTING.md) guide to get started.
## Issues and feedback ## Issues and feedback

View File

@ -1,9 +1,9 @@
name: google_sign_in_web name: google_sign_in_web
description: Flutter plugin for Google Sign-In, a secure authentication system description: Flutter plugin for Google Sign-In, a secure authentication system
for signing in with a Google account on Android, iOS and Web. for signing in with a Google account on Android, iOS and Web.
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_web repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 0.11.0 version: 0.11.0+1
environment: environment:
sdk: ">=2.17.0 <3.0.0" sdk: ">=2.17.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.8.6+3
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.8.6+2 ## 0.8.6+2
* Updates `NSPhotoLibraryUsageDescription` description in README. * Updates `NSPhotoLibraryUsageDescription` description in README.

View File

@ -1,9 +1,9 @@
name: image_picker name: image_picker
description: Flutter plugin for selecting images from the Android and iOS image description: Flutter plugin for selecting images from the Android and iOS image
library, and taking new pictures with the camera. library, and taking new pictures with the camera.
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.8.6+2 version: 0.8.6+3
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.8.5+7
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.8.5+6 ## 0.8.5+6
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -1,8 +1,8 @@
name: image_picker_android name: image_picker_android
description: Android implementation of the image_picker plugin. description: Android implementation of the image_picker plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_android repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.8.5+6 version: 0.8.5+7
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.1.11
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.1.10 ## 2.1.10

View File

@ -1,8 +1,8 @@
name: image_picker_for_web name: image_picker_for_web
description: Web platform implementation of image_picker description: Web platform implementation of image_picker
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_for_web repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker_for_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 2.1.10 version: 2.1.11
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.8.6+9
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.8.6+8 ## 0.8.6+8
* Fixes issue with images sometimes changing to incorrect orientation. * Fixes issue with images sometimes changing to incorrect orientation.

View File

@ -9,10 +9,10 @@ Pod::Spec.new do |s|
A Flutter plugin for picking images from the image library, and taking new pictures with the camera. A Flutter plugin for picking images from the image library, and taking new pictures with the camera.
Downloaded by pub (not CocoaPods). Downloaded by pub (not CocoaPods).
DESC DESC
s.homepage = 'https://github.com/flutter/plugins' s.homepage = 'https://github.com/flutter/packages'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/image_picker_ios' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/image_picker_ios' }
s.documentation_url = 'https://pub.dev/packages/image_picker_ios' s.documentation_url = 'https://pub.dev/packages/image_picker_ios'
s.source_files = 'Classes/**/*.{h,m}' s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = 'Classes/**/*.h' s.public_header_files = 'Classes/**/*.h'

View File

@ -1,8 +1,8 @@
name: image_picker_ios name: image_picker_ios
description: iOS implementation of the image_picker plugin. description: iOS implementation of the image_picker plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_ios repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker_ios
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.8.6+8 version: 0.8.6+9
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 2.6.3
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 2.6.2 ## 2.6.2

View File

@ -1,10 +1,10 @@
name: image_picker_platform_interface name: image_picker_platform_interface
description: A common platform interface for the image_picker plugin. description: A common platform interface for the image_picker plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.6.2 version: 2.6.3
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.1.0+5
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.1.0+4 ## 0.1.0+4
* Updates example code for `use_build_context_synchronously` lint. * Updates example code for `use_build_context_synchronously` lint.

View File

@ -1,8 +1,8 @@
name: image_picker_windows name: image_picker_windows
description: Windows platform implementation of image_picker description: Windows platform implementation of image_picker
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_windows repository: https://github.com/flutter/packages/tree/main/packages/image_picker/image_picker_windows
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.1.0+4 version: 0.1.0+5
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 3.1.5
* Updates links for the merge of flutter/plugins into flutter/packages.
## 3.1.4 ## 3.1.4
* Updates iOS minimum version in README. * Updates iOS minimum version in README.

View File

@ -10,10 +10,10 @@ which can be the App Store (on iOS and macOS) or Google Play (on Android).
| **Support** | SDK 16+ | 11.0+ | 10.15+ | | **Support** | SDK 16+ | 11.0+ | 10.15+ |
<p> <p>
<img src="https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_ios.gif?raw=true" <img src="https://github.com/flutter/packages/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_ios.gif?raw=true"
alt="An animated image of the iOS in-app purchase UI" height="400"/> alt="An animated image of the iOS in-app purchase UI" height="400"/>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
<img src="https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_android.gif?raw=true" <img src="https://github.com/flutter/packages/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_android.gif?raw=true"
alt="An animated image of the Android in-app purchase UI" height="400"/> alt="An animated image of the Android in-app purchase UI" height="400"/>
</p> </p>
@ -41,7 +41,7 @@ your app with each store. Both stores have extensive guides:
> to a particular store. > to a particular store.
For a list of steps for configuring in-app purchases in both stores, see the For a list of steps for configuring in-app purchases in both stores, see the
[example app README](https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/example/README.md). [example app README](https://github.com/flutter/packages/blob/main/packages/in_app_purchase/in_app_purchase/example/README.md).
Once you've configured your in-app purchases in their respective stores, you Once you've configured your in-app purchases in their respective stores, you
can start using the plugin. Two basic options are available: can start using the plugin. Two basic options are available:
@ -426,4 +426,4 @@ iosPlatformAddition.presentCodeRedemptionSheet();
## Contributing to this plugin ## Contributing to this plugin
If you would like to contribute to the plugin, check out our If you would like to contribute to the plugin, check out our
[contribution guide](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md). [contribution guide](https://github.com/flutter/packages/blob/main/CONTRIBUTING.md).

View File

@ -1,8 +1,8 @@
name: in_app_purchase 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. 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/plugins/tree/main/packages/in_app_purchase/in_app_purchase 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
version: 3.1.4 version: 3.1.5
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.2.4+2
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.2.4+1 ## 0.2.4+1
* Updates Google Play Billing Library to 5.1.0. * Updates Google Play Billing Library to 5.1.0.

View File

@ -21,7 +21,7 @@ editing any of the serialized data structs, rebuild the serializers by running
watch the filesystem for changes. watch the filesystem for changes.
If you would like to contribute to the plugin, check out our If you would like to contribute to the plugin, check out our
[contribution guide](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md). [contribution guide](https://github.com/flutter/packages/blob/main/CONTRIBUTING.md).
[1]: https://pub.dev/packages/in_app_purchase [1]: https://pub.dev/packages/in_app_purchase

View File

@ -46,7 +46,7 @@ class MethodCallHandlerImpl
private static final String TAG = "InAppPurchasePlugin"; private static final String TAG = "InAppPurchasePlugin";
private static final String LOAD_SKU_DOC_URL = private static final String LOAD_SKU_DOC_URL =
"https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/README.md#loading-products-for-sale"; "https://github.com/flutter/packages/blob/main/packages/in_app_purchase/in_app_purchase/README.md#loading-products-for-sale";
@Nullable private BillingClient billingClient; @Nullable private BillingClient billingClient;
private final BillingClientFactory billingClientFactory; private final BillingClientFactory billingClientFactory;

View File

@ -1,8 +1,8 @@
name: in_app_purchase_android name: in_app_purchase_android
description: An implementation for the Android platform of the Flutter `in_app_purchase` plugin. This uses the Android BillingClient APIs. description: An implementation for the Android platform of the Flutter `in_app_purchase` plugin. This uses the Android BillingClient APIs.
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_android repository: https://github.com/flutter/packages/tree/main/packages/in_app_purchase/in_app_purchase_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
version: 0.2.4+1 version: 0.2.4+2
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 1.3.3
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 1.3.2 ## 1.3.2

View File

@ -1,10 +1,10 @@
name: in_app_purchase_platform_interface name: in_app_purchase_platform_interface
description: A common platform interface for the in_app_purchase plugin. description: A common platform interface for the in_app_purchase plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_platform_interface repository: https://github.com/flutter/packages/tree/main/packages/in_app_purchase/in_app_purchase_platform_interface
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22 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 # 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 # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 1.3.2 version: 1.3.3
environment: environment:
sdk: ">=2.12.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 0.3.6+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.3.6 ## 0.3.6
* Updates minimum Flutter version to 3.3 and iOS 11. * Updates minimum Flutter version to 3.3 and iOS 11.

View File

@ -21,7 +21,7 @@ editing any of the serialized data structs, rebuild the serializers by running
watch the filesystem for changes. watch the filesystem for changes.
If you would like to contribute to the plugin, check out our If you would like to contribute to the plugin, check out our
[contribution guide](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md). [contribution guide](https://github.com/flutter/packages/blob/main/CONTRIBUTING.md).
[1]: ../in_app_purchase [1]: ../in_app_purchase

View File

@ -9,10 +9,10 @@ Pod::Spec.new do |s|
A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store. A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store.
Downloaded by pub (not CocoaPods). Downloaded by pub (not CocoaPods).
DESC DESC
s.homepage = 'https://github.com/flutter/plugins' s.homepage = 'https://github.com/flutter/packages'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_storekit' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/in_app_purchase/in_app_purchase_storekit' }
# TODO(mvanbeusekom): update URL when in_app_purchase_storekit package is published. # TODO(mvanbeusekom): update URL when in_app_purchase_storekit package is published.
# Updating it before the package is published will cause a lint error and block the tree. # Updating it before the package is published will cause a lint error and block the tree.
s.documentation_url = 'https://pub.dev/packages/in_app_purchase' s.documentation_url = 'https://pub.dev/packages/in_app_purchase'

View File

@ -1,8 +1,8 @@
name: in_app_purchase_storekit name: in_app_purchase_storekit
description: An implementation for the iOS and macOS platforms of the Flutter `in_app_purchase` plugin. This uses the StoreKit Framework. description: An implementation for the iOS and macOS platforms of the Flutter `in_app_purchase` plugin. This uses the StoreKit Framework.
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_storekit repository: https://github.com/flutter/packages/tree/main/packages/in_app_purchase/in_app_purchase_storekit
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
version: 0.3.6 version: 0.3.6+1
environment: environment:
sdk: '>=2.18.0 <3.0.0' sdk: '>=2.18.0 <3.0.0'

View File

@ -1,3 +1,7 @@
## 0.2.2+1
* Updates links for the merge of flutter/plugins into flutter/packages.
## 0.2.2 ## 0.2.2
* Updates minimum version to iOS 11. * Updates minimum version to iOS 11.

View File

@ -10,10 +10,10 @@ Pod::Spec.new do |s|
A Flutter plugin to share images between Flutter and iOS. A Flutter plugin to share images between Flutter and iOS.
Downloaded by pub (not CocoaPods). Downloaded by pub (not CocoaPods).
DESC DESC
s.homepage = 'https://github.com/flutter/plugins' s.homepage = 'https://github.com/flutter/packages'
s.license = { :type => 'BSD', :file => '../LICENSE' } s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/ios_platform_images' } s.source = { :http => 'https://github.com/flutter/packages/tree/main/packages/ios_platform_images' }
s.documentation_url = 'https://pub.dev/packages/ios_platform_images' s.documentation_url = 'https://pub.dev/packages/ios_platform_images'
s.source_files = 'Classes/**/*' s.source_files = 'Classes/**/*'
s.dependency 'Flutter' s.dependency 'Flutter'

View File

@ -1,8 +1,8 @@
name: ios_platform_images name: ios_platform_images
description: A plugin to share images between Flutter and iOS in add-to-app setups. description: A plugin to share images between Flutter and iOS in add-to-app setups.
repository: https://github.com/flutter/plugins/tree/main/packages/ios_platform_images repository: https://github.com/flutter/packages/tree/main/packages/ios_platform_images
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+ios_platform_images%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+ios_platform_images%22
version: 0.2.2 version: 0.2.2+1
environment: environment:
sdk: '>=2.18.0 <3.0.0' sdk: '>=2.18.0 <3.0.0'

View File

@ -1,3 +1,7 @@
## 2.1.5
* Updates links for the merge of flutter/plugins into flutter/packages.
## 2.1.4 ## 2.1.4
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -1,9 +1,9 @@
name: local_auth name: local_auth
description: Flutter plugin for Android and iOS devices to allow local description: Flutter plugin for Android and iOS devices to allow local
authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern. authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern.
repository: https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth 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 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
version: 2.1.4 version: 2.1.5
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,3 +1,7 @@
## 1.0.19
* Updates links for the merge of flutter/plugins into flutter/packages.
## 1.0.18 ## 1.0.18
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.

View File

@ -1,8 +1,8 @@
name: local_auth_android name: local_auth_android
description: Android implementation of the local_auth plugin. description: Android implementation of the local_auth plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_android repository: https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
version: 1.0.18 version: 1.0.19
environment: environment:
sdk: ">=2.14.0 <3.0.0" sdk: ">=2.14.0 <3.0.0"

View File

@ -1,5 +1,6 @@
## NEXT ## 1.0.13
* Updates links for the merge of flutter/plugins into flutter/packages.
* Updates minimum Flutter version to 3.0. * Updates minimum Flutter version to 3.0.
## 1.0.12 ## 1.0.12

Some files were not shown because too many files have changed in this diff Show More