Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 004af7f

Browse files
[ci] Run analyze with minimum resolved packages (#6207)
1 parent 4219332 commit 004af7f

File tree

17 files changed

+124
-18
lines changed

17 files changed

+124
-18
lines changed

.cirrus.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@ task:
171171
# Only analyze lib/; non-client code doesn't need to work on
172172
# all supported legacy version.
173173
- ./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
174182
- name: readme_excerpts
175183
env:
176184
CIRRUS_CLONE_SUBMODULES: true

packages/image_picker/image_picker_android/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.8.5+2
2+
3+
* Updates `image_picker_platform_interface` constraint to the correct minimum
4+
version.
5+
16
## 0.8.5+1
27

38
* Switches to an internal method channel implementation.

packages/image_picker/image_picker_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: image_picker_android
22
description: Android implementation of the image_picker plugin.
33
repository: https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker_android
44
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
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"
@@ -21,7 +21,7 @@ dependencies:
2121
flutter:
2222
sdk: flutter
2323
flutter_plugin_android_lifecycle: ^2.0.1
24-
image_picker_platform_interface: ^2.3.0
24+
image_picker_platform_interface: ^2.5.0
2525

2626
dev_dependencies:
2727
flutter_test:

packages/local_auth/local_auth_android/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.10
2+
3+
* Updates `local_auth_platform_interface` constraint to the correct minimum
4+
version.
5+
16
## 1.0.9
27

38
* Updates androidx.fragment version to 1.5.1.

packages/local_auth/local_auth_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: local_auth_android
22
description: Android implementation of the local_auth plugin.
33
repository: https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_android
44
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
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"
@@ -22,7 +22,7 @@ dependencies:
2222
sdk: flutter
2323
flutter_plugin_android_lifecycle: ^2.0.1
2424
intl: ^0.17.0
25-
local_auth_platform_interface: ^1.0.0
25+
local_auth_platform_interface: ^1.0.1
2626

2727
dev_dependencies:
2828
flutter_test:

packages/local_auth/local_auth_ios/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.8
2+
3+
* Updates `local_auth_platform_interface` constraint to the correct minimum
4+
version.
5+
16
## 1.0.7
27

38
* Updates references to the obsolete master branch.

packages/local_auth/local_auth_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: local_auth_ios
22
description: iOS implementation of the local_auth plugin.
33
repository: https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_ios
44
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
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"
@@ -20,7 +20,7 @@ dependencies:
2020
flutter:
2121
sdk: flutter
2222
intl: ^0.17.0
23-
local_auth_platform_interface: ^1.0.0
23+
local_auth_platform_interface: ^1.0.1
2424

2525
dev_dependencies:
2626
flutter_test:

packages/local_auth/local_auth_windows/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.2
2+
3+
* Updates `local_auth_platform_interface` constraint to the correct minimum
4+
version.
5+
16
## 1.0.1
27

38
* Updates references to the obsolete master branch.

packages/local_auth/local_auth_windows/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: local_auth_windows
22
description: Windows implementation of the local_auth plugin.
33
repository: https://github.com/flutter/plugins/tree/main/packages/local_auth/local_auth_windows
44
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
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"
@@ -19,7 +19,7 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
local_auth_platform_interface: ^1.0.0
22+
local_auth_platform_interface: ^1.0.1
2323

2424
dev_dependencies:
2525
flutter_test:

packages/url_launcher/url_launcher_web/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.0.13
2+
3+
* Updates `url_launcher_platform_interface` constraint to the correct minimum
4+
version.
5+
16
## 2.0.12
27

38
* Fixes call to `setState` after dispose on the `Link` widget.

0 commit comments

Comments
 (0)