Skip to content

Commit d0659f9

Browse files
committed
chore: upgrade to flutter 3.32.0
1 parent 06daf69 commit d0659f9

31 files changed

Lines changed: 435 additions & 463 deletions

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
flutter-version:
2828
# The version of Flutter to use should use the minimum Dart SDK version supported by the package,
2929
# refer to https://docs.flutter.dev/development/tools/sdk/releases.
30-
- "3.24.0"
30+
- "3.32.0"
3131
- "3.x"
3232
test:
3333
# E2E tests for the test command

.github/workflows/spdx_license.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: 🎯 Setup Dart
3737
uses: dart-lang/setup-dart@v1
3838
with:
39-
sdk: 3.5.0
39+
sdk: 3.8.0
4040

4141
- name: 📦 Install Dependencies
4242
run: dart pub get
@@ -71,7 +71,7 @@ jobs:
7171
- name: 🎯 Setup Dart
7272
uses: dart-lang/setup-dart@v1
7373
with:
74-
sdk: 3.5.0
74+
sdk: 3.8.0
7575

7676
- name: 📦 Install Dependencies
7777
run: dart pub get

.github/workflows/test_optimizer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build_hooks:
2323
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
2424
with:
25-
dart_sdk: 3.5.0
25+
dart_sdk: 3.8.0
2626
working_directory: bricks/test_optimizer/hooks
2727

2828
verify_bundle:

.github/workflows/very_good_cli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: subosito/flutter-action@v2.8.0
2727
with:
28-
flutter-version: 3.24.0
28+
flutter-version: 3.32.0
2929

3030
- name: Install Dependencies
3131
run: flutter pub get

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.5.1.0.yaml
1+
include: package:very_good_analysis/analysis_options.yaml
22
analyzer:
33
exclude:
44
- "**/version.dart"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.7.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.yaml
22
linter:
33
rules:
44
public_member_api_docs: false

bricks/test_optimizer/hooks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: hooks
22
publish_to: none
33

44
environment:
5-
sdk: ^3.5.0
5+
sdk: ^3.8.0
66

77
dependencies:
88
mason: ^0.1.0

e2e/analysis_options.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
include: package:very_good_analysis/analysis_options.7.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.yaml
2+
analyzer:
3+
exclude:
4+
- test/commands/test/**

e2e/helpers/command_helper.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ void Function() withRunner(
3232
Logger logger,
3333
PubUpdater pubUpdater,
3434
List<String> printLogs,
35-
) runnerFn,
35+
)
36+
runnerFn,
3637
) {
3738
return _overridePrint((printLogs) async {
3839
final logger = _MockLogger();
@@ -45,8 +46,8 @@ void Function() withRunner(
4546
environment: {'CI': 'true'},
4647
);
4748

48-
when(() => progress.complete(any())).thenAnswer((_) {
49-
final message = _.positionalArguments.elementAt(0) as String?;
49+
when(() => progress.complete(any())).thenAnswer((invocation) {
50+
final message = invocation.positionalArguments.first as String?;
5051
if (message != null) progressLogs.add(message);
5152
});
5253
when(() => logger.progress(any())).thenReturn(progress);

e2e/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.1.0+1
44
publish_to: none
55

66
environment:
7-
sdk: ^3.5.0
7+
sdk: ^3.8.0
88

99
dev_dependencies:
1010
mason: ^0.1.0

0 commit comments

Comments
 (0)