mirror of
https://github.com/flutter/packages.git
synced 2025-06-28 13:47:29 +08:00
[ci/various] Update for 3.19 stable (#6147)
Does the steps from https://github.com/flutter/flutter/wiki/Updating-Packages-repo-for-a-stable-release to account for stable now being 3.19, and N-2 (and thus our minimum supported min version) being 3.13. These changes are version-bump-exempt [by repo policy](https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#version).
This commit is contained in:
8
.ci.yaml
8
.ci.yaml
@ -295,10 +295,10 @@ targets:
|
|||||||
timeout: 30
|
timeout: 30
|
||||||
properties:
|
properties:
|
||||||
target_file: analyze_legacy.yaml
|
target_file: analyze_legacy.yaml
|
||||||
channel: "3.13.9"
|
channel: "3.16.9"
|
||||||
env_variables: >-
|
env_variables: >-
|
||||||
{
|
{
|
||||||
"CHANNEL": "3.13.9"
|
"CHANNEL": "3.16.9"
|
||||||
}
|
}
|
||||||
|
|
||||||
- name: Linux analyze_legacy N-2
|
- name: Linux analyze_legacy N-2
|
||||||
@ -306,10 +306,10 @@ targets:
|
|||||||
timeout: 30
|
timeout: 30
|
||||||
properties:
|
properties:
|
||||||
target_file: analyze_legacy.yaml
|
target_file: analyze_legacy.yaml
|
||||||
channel: "3.10.6"
|
channel: "3.13.9"
|
||||||
env_variables: >-
|
env_variables: >-
|
||||||
{
|
{
|
||||||
"CHANNEL": "3.10.6"
|
"CHANNEL": "3.13.9"
|
||||||
}
|
}
|
||||||
|
|
||||||
- name: Linux_android custom_package_tests master
|
- name: Linux_android custom_package_tests master
|
||||||
|
@ -19,7 +19,7 @@ tasks:
|
|||||||
script: .ci/scripts/tool_runner.sh
|
script: .ci/scripts/tool_runner.sh
|
||||||
args:
|
args:
|
||||||
- "pubspec-check"
|
- "pubspec-check"
|
||||||
- "--min-min-flutter-version=3.10.0"
|
- "--min-min-flutter-version=3.13.0"
|
||||||
- "--allow-dependencies=script/configs/allowed_unpinned_deps.yaml"
|
- "--allow-dependencies=script/configs/allowed_unpinned_deps.yaml"
|
||||||
- "--allow-pinned-dependencies=script/configs/allowed_pinned_deps.yaml"
|
- "--allow-pinned-dependencies=script/configs/allowed_pinned_deps.yaml"
|
||||||
always: true
|
always: true
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
# the change if it doesn't.
|
# the change if it doesn't.
|
||||||
run: |
|
run: |
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.16.6 _flutter
|
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.19.0 _flutter
|
||||||
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
|
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
|
||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
# Checks out a copy of the repo.
|
# Checks out a copy of the repo.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.0.11
|
## 2.0.11
|
||||||
|
|
||||||
* Fixes new lint warnings.
|
* Fixes new lint warnings.
|
||||||
|
@ -6,8 +6,8 @@ publish_to: none
|
|||||||
version: 0.0.1
|
version: 0.0.1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
animations:
|
animations:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
||||||
* Clients on versions of Flutter that still support iOS 11 can continue to use this
|
* Clients on versions of Flutter that still support iOS 11 can continue to use this
|
||||||
package with iOS 11, but will not receive any further updates to the iOS implementation.
|
package with iOS 11, but will not receive any further updates to the iOS implementation.
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the camera plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
camera:
|
camera:
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.10.5+9
|
version: 0.10.5+9
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 0.10.8+16
|
## 0.10.8+16
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the camera plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
camera_android:
|
camera_android:
|
||||||
|
@ -6,8 +6,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.10.8+16
|
version: 0.10.8+16
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.5.0+32
|
## 0.5.0+32
|
||||||
|
|
||||||
* Removes all remaining `unawaited` calls to fix potential race conditions and updates the
|
* Removes all remaining `unawaited` calls to fix potential race conditions and updates the
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the camera_android_camerax plugin.
|
|||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
camera_android_camerax:
|
camera_android_camerax:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.5.0+32
|
version: 0.5.0+32
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.7.3
|
## 2.7.3
|
||||||
|
|
||||||
* Adds documentation to clarify that platform implementations of the plugin use
|
* Adds documentation to clarify that platform implementations of the plugin use
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.7.3
|
version: 2.7.3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cross_file: ^0.3.1
|
cross_file: ^0.3.1
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.3.2+4
|
## 0.3.2+4
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -2,8 +2,8 @@ name: camera_web_integration_tests
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
camera_platform_interface: ^2.1.0
|
camera_platform_interface: ^2.1.0
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.2.1+9
|
## 0.2.1+9
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the camera_windows plugin.
|
|||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
camera_platform_interface: ^2.1.2
|
camera_platform_interface: ^2.1.2
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.2.1+9
|
version: 0.2.1+9
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.3.3+8
|
## 0.3.3+8
|
||||||
|
|
||||||
* Now supports `dart2wasm` compilation.
|
* Now supports `dart2wasm` compilation.
|
||||||
|
@ -3,7 +3,7 @@ description: Demonstrates how to use cross files.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cross_file:
|
cross_file:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 1.1.4
|
## 1.1.4
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 1.1.4
|
version: 1.1.4
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.0.1+1
|
## 0.0.1+1
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ publish_to: 'none'
|
|||||||
version: 1.0.0+1
|
version: 1.0.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cupertino_icons: ^1.0.5
|
cupertino_icons: ^1.0.5
|
||||||
|
@ -7,8 +7,8 @@ repository: https://github.com/flutter/packages/tree/main/packages/dynamic_layou
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 0.3.0+7
|
## 0.3.0+7
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the espresso plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -6,8 +6,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.3.0+7
|
version: 0.3.0+7
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.0.12
|
## 2.0.12
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -3,8 +3,8 @@ description: Example of Google Sign-In plugin and googleapis.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
extension_google_sign_in_as_googleapis_auth:
|
extension_google_sign_in_as_googleapis_auth:
|
||||||
|
@ -11,8 +11,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.0.12
|
version: 2.0.12
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
|
|
||||||
* Fixes a typo in documentation comments.
|
* Fixes a typo in documentation comments.
|
||||||
|
@ -5,8 +5,8 @@ publish_to: none
|
|||||||
version: 1.0.0+1
|
version: 1.0.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector:
|
file_selector:
|
||||||
|
@ -6,8 +6,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 1.0.3
|
version: 1.0.3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 0.5.0+7
|
## 0.5.0+7
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the file_selector_android plugin.
|
|||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector_android:
|
file_selector_android:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.5.0+7
|
version: 0.5.0+7
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.9.2+1
|
## 0.9.2+1
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ publish_to: 'none'
|
|||||||
version: 1.0.0+1
|
version: 1.0.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector_linux:
|
file_selector_linux:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.9.2+1
|
version: 0.9.2+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.9.3+3
|
## 0.9.3+3
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ publish_to: 'none'
|
|||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector_macos:
|
file_selector_macos:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.9.3+3
|
version: 0.9.3+3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.6.2
|
## 2.6.2
|
||||||
|
|
||||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.6.2
|
version: 2.6.2
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cross_file: ^0.3.0
|
cross_file: ^0.3.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.9.3
|
## 0.9.3
|
||||||
|
|
||||||
|
@ -2,8 +2,8 @@ name: file_selector_web_integration_tests
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector_platform_interface: ^2.6.0
|
file_selector_platform_interface: ^2.6.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.9.3+1
|
## 0.9.3+1
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ publish_to: 'none'
|
|||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
file_selector_platform_interface: ^2.6.0
|
file_selector_platform_interface: ^2.6.0
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.9.3+1
|
version: 0.9.3+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.1.8
|
## 0.1.8
|
||||||
|
|
||||||
* Adds `transitionDuration` parameter for specifying how long the animation should be.
|
* Adds `transitionDuration` parameter for specifying how long the animation should be.
|
||||||
|
@ -4,8 +4,8 @@ publish_to: 'none'
|
|||||||
version: 0.0.1
|
version: 0.0.1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
repository: https://github.com/flutter/packages/tree/main/packages/flutter_adaptive_scaffold
|
repository: https://github.com/flutter/packages/tree/main/packages/flutter_adaptive_scaffold
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 4.1.11
|
## 4.1.11
|
||||||
|
|
||||||
* Replaces deprecated loadBuffer API usage.
|
* Replaces deprecated loadBuffer API usage.
|
||||||
|
@ -6,8 +6,8 @@ publish_to: "none"
|
|||||||
version: 1.0.0+1
|
version: 1.0.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cupertino_icons: ^1.0.2
|
cupertino_icons: ^1.0.2
|
||||||
|
@ -6,8 +6,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 4.1.11
|
version: 4.1.11
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ description: A project that showcases how to enable the recommended lints for Fl
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
# Add the latest version of `package:flutter_lints` as a dev_dependency. The
|
# Add the latest version of `package:flutter_lints` as a dev_dependency. The
|
||||||
# lint set provided by this package is activated in the `analysis_options.yaml`
|
# lint set provided by this package is activated in the `analysis_options.yaml`
|
||||||
|
@ -5,7 +5,7 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 3.0.1
|
version: 3.0.1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.0.0
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
lints: ^3.0.0
|
lints: ^3.0.0
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.6.19
|
## 0.6.19
|
||||||
|
|
||||||
* Replaces `RichText` with `Text.rich` so the widget can work with `SelectionArea` when `selectable` is set to false.
|
* Replaces `RichText` with `Text.rich` so the widget can work with `SelectionArea` when `selectable` is set to false.
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the flutter_markdown package.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.6.19
|
version: 0.6.19
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.0.1+3
|
## 0.0.1+3
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
args: ^2.3.1
|
args: ^2.3.1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
|
||||||
|
|
||||||
## 2.0.17
|
## 2.0.17
|
||||||
|
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the flutter_plugin_android_lifecycle plugin
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.0.17
|
version: 2.0.17
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 4.2.1
|
## 4.2.1
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 4.2.1
|
version: 4.2.1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
topics:
|
topics:
|
||||||
- assets
|
- assets
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 13.2.0
|
## 13.2.0
|
||||||
|
|
||||||
- Exposes full `Uri` on `GoRouterState` in `GoRouterRedirect`
|
- Exposes full `Uri` on `GoRouterState` in `GoRouterRedirect`
|
||||||
|
@ -4,8 +4,8 @@ version: 3.0.1
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
adaptive_navigation: ^0.0.4
|
adaptive_navigation: ^0.0.4
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates dependencies to require `analyzer` 5.2.0 or later.
|
* Updates dependencies to require `analyzer` 5.2.0 or later.
|
||||||
|
|
||||||
## 2.4.1
|
## 2.4.1
|
||||||
|
@ -3,7 +3,7 @@ description: go_router_builder examples
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
collection: ^1.15.0
|
collection: ^1.15.0
|
||||||
|
@ -7,7 +7,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/go_router_bui
|
|||||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router_builder%22
|
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router_builder%22
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
analyzer: ">=5.2.0 <7.0.0"
|
analyzer: ">=5.2.0 <7.0.0"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.5.3
|
## 2.5.3
|
||||||
|
|
||||||
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the google_maps_flutter plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cupertino_icons: ^1.0.5
|
cupertino_icons: ^1.0.5
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.5.3
|
version: 2.5.3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 2.6.2
|
## 2.6.2
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the google_maps_flutter plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
cupertino_icons: ^1.0.5
|
cupertino_icons: ^1.0.5
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.6.2
|
version: 2.6.2
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.4.3
|
## 2.4.3
|
||||||
|
|
||||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.4.3
|
version: 2.4.3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
collection: ^1.15.0
|
collection: ^1.15.0
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 0.5.4+3
|
## 0.5.4+3
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -3,8 +3,8 @@ publish_to: none
|
|||||||
|
|
||||||
# Tests require flutter beta or greater to run.
|
# Tests require flutter beta or greater to run.
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 6.1.21
|
## 6.1.21
|
||||||
|
@ -3,8 +3,8 @@ description: Example of Google Sign-In plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 6.1.21
|
version: 6.1.21
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 2.4.5
|
## 2.4.5
|
||||||
|
|
||||||
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
* Updates minimum required plugin_platform_interface version to 2.1.7.
|
||||||
|
@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 2.4.5
|
version: 2.4.5
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
|
||||||
* Clients on versions of Flutter that still support iOS 11 can continue to use this
|
* Clients on versions of Flutter that still support iOS 11 can continue to use this
|
||||||
package with iOS 11, but will not receive any further updates to the iOS implementation.
|
package with iOS 11, but will not receive any further updates to the iOS implementation.
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the image_picker plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -6,8 +6,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 1.0.7
|
version: 1.0.7
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
* Updates compileSdk version to 34.
|
* Updates compileSdk version to 34.
|
||||||
|
|
||||||
## 0.8.9+3
|
## 0.8.9+3
|
||||||
|
@ -3,8 +3,8 @@ description: Demonstrates how to use the image_picker plugin.
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
|
|||||||
version: 0.8.9+3
|
version: 0.8.9+3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
plugin:
|
plugin:
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
## NEXT
|
||||||
|
|
||||||
|
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
|
||||||
|
|
||||||
## 3.0.2
|
## 3.0.2
|
||||||
|
|
||||||
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
|
||||||
|
@ -2,8 +2,8 @@ name: image_picker_for_web_integration_tests
|
|||||||
publish_to: none
|
publish_to: none
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ^3.1.0
|
||||||
flutter: ">=3.10.0"
|
flutter: ">=3.13.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user