From e90868e28855a26ccedf4e17b7fa657a00e618c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 02:47:47 +0000 Subject: [PATCH 1/6] chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 Bumps [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/VeryGoodOpenSource/very_good_analysis/releases) - [Changelog](https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md) - [Commits](https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: very_good_analysis dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5f5a702..e0a99de 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,4 +15,4 @@ dependencies: dev_dependencies: test: ^1.16.0 - very_good_analysis: ^6.0.0 + very_good_analysis: ">=6.0.0 <8.0.0" From 428571e72780f438ecc502041d1d22c2237af8f2 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 20 Dec 2024 08:40:46 -0600 Subject: [PATCH 2/6] update analysis files --- analysis_options.yaml | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index bb72091..c2f4cbb 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1 +1 @@ -include: package:very_good_analysis/analysis_options.6.0.0.yaml +include: package:very_good_analysis/analysis_options.7.0.0.yaml diff --git a/pubspec.yaml b/pubspec.yaml index e0a99de..e3c523b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,4 +15,4 @@ dependencies: dev_dependencies: test: ^1.16.0 - very_good_analysis: ">=6.0.0 <8.0.0" + very_good_analysis: ^7.0.0 From 4b858ade9e5a0fb2a3e66f8f89f778455be95a92 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 20 Dec 2024 08:45:34 -0600 Subject: [PATCH 3/6] fixing analysis errors --- test/formz_test.dart | 1 + test/helpers/name_input.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/test/formz_test.dart b/test/formz_test.dart index 5a9ae97..f75730d 100644 --- a/test/formz_test.dart +++ b/test/formz_test.dart @@ -1,3 +1,4 @@ +// Not needed for test files // ignore_for_file: prefer_const_constructors import 'package:formz/formz.dart'; import 'package:test/test.dart'; diff --git a/test/helpers/name_input.dart b/test/helpers/name_input.dart index b4251e0..35990ad 100644 --- a/test/helpers/name_input.dart +++ b/test/helpers/name_input.dart @@ -21,6 +21,7 @@ class NameInputFormzMixin with FormzMixin { List> get inputs => [name]; } +// Test fixture so allowable // ignore: must_be_immutable class NameInputErrorCacheMixin extends FormzInput with FormzInputErrorCacheMixin { From 3a3607547dbdb18521eeaffd6bb6652de76d736b Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 20 Dec 2024 08:48:31 -0600 Subject: [PATCH 4/6] attempting pana fix --- .github/workflows/main.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3676fd9..cb57e72 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -66,6 +66,9 @@ jobs: - uses: actions/checkout@v4.1.1 - uses: subosito/flutter-action@v2 + with: + channel: "stable" + flutter-version: "3.25.0" #Forcing to 3.25.0 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947 - name: Install Dependencies run: | From 672b9efc7b45574e25db931617932524c1bf8260 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 20 Dec 2024 08:50:04 -0600 Subject: [PATCH 5/6] remove channel --- .github/workflows/main.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index cb57e72..ae2304a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -67,7 +67,6 @@ jobs: - uses: subosito/flutter-action@v2 with: - channel: "stable" flutter-version: "3.25.0" #Forcing to 3.25.0 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947 - name: Install Dependencies From 53a5a674665abdffddd0bbe483218125ef737665 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Fri, 20 Dec 2024 08:51:34 -0600 Subject: [PATCH 6/6] :facepalm: --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ae2304a..e14c295 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -67,7 +67,7 @@ jobs: - uses: subosito/flutter-action@v2 with: - flutter-version: "3.25.0" #Forcing to 3.25.0 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947 + flutter-version: "3.24.0" #Forcing to 3.24.0 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947 - name: Install Dependencies run: |