Skip to content

Commit 788b666

Browse files
Update the repo for the 3.22 stable release (flutter#6730)
Does all of the steps of https://github.com/flutter/flutter/wiki/Updating-Packages-repo-for-a-stable-release other than the first (which is flutter#6727).
1 parent 0870dc8 commit 788b666

File tree

206 files changed

+439
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+439
-281
lines changed

.ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,21 +292,21 @@ targets:
292292
timeout: 30
293293
properties:
294294
target_file: analyze_legacy.yaml
295-
channel: "3.16.9"
295+
channel: "3.22.0"
296296
env_variables: >-
297297
{
298-
"CHANNEL": "3.16.9"
298+
"CHANNEL": "3.22.0"
299299
}
300300
301301
- name: Linux analyze_legacy N-2
302302
recipe: packages/packages
303303
timeout: 30
304304
properties:
305305
target_file: analyze_legacy.yaml
306-
channel: "3.13.9"
306+
channel: "3.16.9"
307307
env_variables: >-
308308
{
309-
"CHANNEL": "3.13.9"
309+
"CHANNEL": "3.16.9"
310310
}
311311
312312
- name: Linux_android custom_package_tests master

.ci/targets/repo_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tasks:
1919
script: .ci/scripts/tool_runner.sh
2020
args:
2121
- "pubspec-check"
22-
- "--min-min-flutter-version=3.13.0"
22+
- "--min-min-flutter-version=3.16.0"
2323
- "--allow-dependencies=script/configs/allowed_unpinned_deps.yaml"
2424
- "--allow-pinned-dependencies=script/configs/allowed_pinned_deps.yaml"
2525
always: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# the change if it doesn't.
3232
run: |
3333
cd $HOME
34-
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.19.0 _flutter
34+
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.22.0 _flutter
3535
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
3636
cd $GITHUB_WORKSPACE
3737
# Checks out a copy of the repo.

packages/animations/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## NEXT
22

3-
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
3+
* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.
44

55
## 2.0.11
66

packages/animations/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publish_to: none
66
version: 0.0.1
77

88
environment:
9-
sdk: ^3.1.0
10-
flutter: ">=3.13.0"
9+
sdk: ^3.2.0
10+
flutter: ">=3.16.0"
1111

1212
dependencies:
1313
animations:

packages/camera/camera/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.
4+
15
## 0.11.0
26

37
* **Breaking Change** Changes the Android implementation of the camera plugin from `camera_android`

packages/camera/camera/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Demonstrates how to use the camera plugin.
33
publish_to: none
44

55
environment:
6-
sdk: ^3.1.0
7-
flutter: ">=3.13.0"
6+
sdk: ^3.2.0
7+
flutter: ">=3.16.0"
88

99
dependencies:
1010
camera:

packages/camera/camera_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.
4+
15
## 0.10.9+2
26

37
* Updates `README.md` to reflect the fact that the `camera_android_camerax` camera plugin implementation

packages/camera/camera_android/example/lib/camera_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ class Optional<T> extends IterableBase<T> {
494494
if (_value == null) {
495495
throw StateError('value called on absent Optional.');
496496
}
497-
return _value!;
497+
return _value;
498498
}
499499

500500
/// Executes a function if the Optional value is present.

packages/camera/camera_android/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Demonstrates how to use the camera plugin.
33
publish_to: none
44

55
environment:
6-
sdk: ^3.1.0
7-
flutter: ">=3.13.0"
6+
sdk: ^3.2.0
7+
flutter: ">=3.16.0"
88

99
dependencies:
1010
camera_android:

0 commit comments

Comments
 (0)