Skip to content

Commit a5bc03f

Browse files
chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 (#67)
* 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](VeryGoodOpenSource/very_good_analysis@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] <support@github.com> * update analysis files * fix analysis warnings * fixing analysis errors * update generated file --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <tarra3@gmail.com>
1 parent f4eaf5a commit a5bc03f

7 files changed

Lines changed: 11 additions & 7 deletions

File tree

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml

build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ targets:
44
source_gen|combining_builder:
55
options:
66
ignore_for_file:
7+
- document_ignores
78
- implicit_dynamic_parameter
89
- cast_nullable_to_non_nullable
910
- require_trailing_commas

lib/src/models/package_info.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ dev_dependencies:
1919
json_serializable: ^6.8.0
2020
mocktail: ^1.0.4
2121
test: ^1.25.8
22-
very_good_analysis: ^6.0.0
22+
very_good_analysis: ^7.0.0

test/fixtures/pre_release_package_info_response.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Generated test file so these don't apply
12
// ignore_for_file: prefer_single_quotes, lines_longer_than_80_chars
23
// Generated from: https://pub.dev/api/packages/mason
34

test/fixtures/valid_package_info_response.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Generated test file so these don't apply
12
// ignore_for_file: prefer_single_quotes, lines_longer_than_80_chars
23
// Generated from: https://pub.dev/api/packages/very_good_cli
34

test/pub_update_test.dart

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not required for test files
12
// ignore_for_file: prefer_const_constructors
23
import 'dart:io';
34

@@ -100,7 +101,7 @@ void main() {
100101
packageName: 'very_good_cli',
101102
currentVersion: '0.3.3',
102103
);
103-
} catch (_) {}
104+
} on Exception catch (_) {}
104105

105106
verify(
106107
() => client.get(
@@ -121,7 +122,7 @@ void main() {
121122
packageName: 'very_good_cli',
122123
currentVersion: '0.3.3',
123124
);
124-
} catch (_) {}
125+
} on Exception catch (_) {}
125126

126127
verify(
127128
() => client.get(
@@ -230,7 +231,7 @@ void main() {
230231

231232
try {
232233
await pubUpdater.getLatestVersion('very_good_cli');
233-
} catch (_) {}
234+
} on Exception catch (_) {}
234235

235236
verify(
236237
() => client.get(
@@ -248,7 +249,7 @@ void main() {
248249

249250
try {
250251
await pubUpdater.getLatestVersion('very_good_cli');
251-
} catch (_) {}
252+
} on Exception catch (_) {}
252253

253254
verify(
254255
() => client.get(

0 commit comments

Comments
 (0)