This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 17 files changed +124
-18
lines changed
image_picker/image_picker_android
url_launcher/url_launcher_web
webview_flutter/webview_flutter_wkwebview Expand file tree Collapse file tree 17 files changed +124
-18
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,14 @@ task:
171
171
# Only analyze lib/; non-client code doesn't need to work on
172
172
# all supported legacy version.
173
173
- ./script/tool_runner.sh analyze --lib-only --skip-if-not-supporting-flutter-version="$CHANNEL" --custom-analysis=script/configs/custom_analysis.yaml
174
+ # Does a sanity check that plugins pass analysis with the lowest possible
175
+ # versions of all dependencies. This is to catch cases where we add use of
176
+ # new APIs but forget to update minimum versions of dependencies to when
177
+ # those APIs are introduced.
178
+ - name : downgraded_analyze
179
+ depends_on : analyze
180
+ analyze_script :
181
+ - ./script/tool_runner.sh analyze --downgrade
174
182
- name : readme_excerpts
175
183
env :
176
184
CIRRUS_CLONE_SUBMODULES : true
Original file line number Diff line number Diff line change
1
+ ## 0.8.5+2
2
+
3
+ * Updates ` image_picker_platform_interface ` constraint to the correct minimum
4
+ version.
5
+
1
6
## 0.8.5+1
2
7
3
8
* Switches to an internal method channel implementation.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: image_picker_android
2
2
description : Android implementation of the image_picker plugin.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_android
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
5
- version : 0.8.5+1
5
+ version : 0.8.5+2
6
6
7
7
environment :
8
8
sdk : " >=2.14.0 <3.0.0"
@@ -21,7 +21,7 @@ dependencies:
21
21
flutter :
22
22
sdk : flutter
23
23
flutter_plugin_android_lifecycle : ^2.0.1
24
- image_picker_platform_interface : ^2.3 .0
24
+ image_picker_platform_interface : ^2.5 .0
25
25
26
26
dev_dependencies :
27
27
flutter_test :
Original file line number Diff line number Diff line change
1
+ ## 1.0.10
2
+
3
+ * Updates ` local_auth_platform_interface ` constraint to the correct minimum
4
+ version.
5
+
1
6
## 1.0.9
2
7
3
8
* Updates androidx.fragment version to 1.5.1.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: local_auth_android
2
2
description : Android implementation of the local_auth plugin.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_android
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
5
- version : 1.0.9
5
+ version : 1.0.10
6
6
7
7
environment :
8
8
sdk : " >=2.14.0 <3.0.0"
@@ -22,7 +22,7 @@ dependencies:
22
22
sdk : flutter
23
23
flutter_plugin_android_lifecycle : ^2.0.1
24
24
intl : ^0.17.0
25
- local_auth_platform_interface : ^1.0.0
25
+ local_auth_platform_interface : ^1.0.1
26
26
27
27
dev_dependencies :
28
28
flutter_test :
Original file line number Diff line number Diff line change
1
+ ## 1.0.8
2
+
3
+ * Updates ` local_auth_platform_interface ` constraint to the correct minimum
4
+ version.
5
+
1
6
## 1.0.7
2
7
3
8
* Updates references to the obsolete master branch.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: local_auth_ios
2
2
description : iOS implementation of the local_auth plugin.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_ios
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
5
- version : 1.0.7
5
+ version : 1.0.8
6
6
7
7
environment :
8
8
sdk : " >=2.14.0 <3.0.0"
@@ -20,7 +20,7 @@ dependencies:
20
20
flutter :
21
21
sdk : flutter
22
22
intl : ^0.17.0
23
- local_auth_platform_interface : ^1.0.0
23
+ local_auth_platform_interface : ^1.0.1
24
24
25
25
dev_dependencies :
26
26
flutter_test :
Original file line number Diff line number Diff line change
1
+ ## 1.0.2
2
+
3
+ * Updates ` local_auth_platform_interface ` constraint to the correct minimum
4
+ version.
5
+
1
6
## 1.0.1
2
7
3
8
* Updates references to the obsolete master branch.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: local_auth_windows
2
2
description : Windows implementation of the local_auth plugin.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_windows
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
5
- version : 1.0.1
5
+ version : 1.0.2
6
6
7
7
environment :
8
8
sdk : " >=2.14.0 <3.0.0"
@@ -19,7 +19,7 @@ flutter:
19
19
dependencies :
20
20
flutter :
21
21
sdk : flutter
22
- local_auth_platform_interface : ^1.0.0
22
+ local_auth_platform_interface : ^1.0.1
23
23
24
24
dev_dependencies :
25
25
flutter_test :
Original file line number Diff line number Diff line change
1
+ ## 2.0.13
2
+
3
+ * Updates ` url_launcher_platform_interface ` constraint to the correct minimum
4
+ version.
5
+
1
6
## 2.0.12
2
7
3
8
* Fixes call to ` setState ` after dispose on the ` Link ` widget.
You can’t perform that action at this time.
0 commit comments