Skip to content

Commit ed2a2d5

Browse files
chore(deps): bump very_good_analysis from 5.1.0 to 6.0.0 in /examples/todos/packages/todos_data_source (#1418)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <[email protected]>
1 parent 5165bbe commit ed2a2d5

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

examples/todos/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.6.0.0.yaml
22
analyzer:
33
exclude:
44
- build/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.5.1.0.yaml
1+
include: package:very_good_analysis/analysis_options.6.0.0.yaml

examples/todos/packages/in_memory_todos_data_source/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.1.0 <4.0.0"
7+
sdk: ">=3.4.0 <4.0.0"
88

99
dependencies:
1010
todos_data_source:
@@ -14,4 +14,4 @@ dependencies:
1414
dev_dependencies:
1515
mocktail: ^1.0.0
1616
test: ^1.25.0
17-
very_good_analysis: ^5.1.0
17+
very_good_analysis: ^6.0.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.5.1.0.yaml
1+
include: package:very_good_analysis/analysis_options.6.0.0.yaml

examples/todos/packages/todos_data_source/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.1.0 <4.0.0"
7+
sdk: ">=3.4.0 <4.0.0"
88

99
dependencies:
1010
equatable: ^2.0.3
@@ -16,4 +16,4 @@ dev_dependencies:
1616
json_serializable: ^6.3.1
1717
mocktail: ^1.0.0
1818
test: ^1.25.0
19-
very_good_analysis: ^5.1.0
19+
very_good_analysis: ^6.0.0

examples/todos/pubspec.yaml

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

66
environment:
7-
sdk: ">=3.0.0 <4.0.0"
7+
sdk: ">=3.4.0 <4.0.0"
88

99
dependencies:
1010
dart_frog: ^1.0.0

examples/todos/test/routes/todos/index_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ void main() {
3939
when(() => context.request).thenReturn(request);
4040
when(() => request.uri).thenReturn(uri);
4141
when(() => uri.resolve(any())).thenAnswer(
42-
(_) => Uri.parse('http://localhost/todos${_.positionalArguments.first}'),
42+
(answer) => Uri.parse(
43+
'http://localhost/todos${answer.positionalArguments.first}',
44+
),
4345
);
4446
when(() => uri.queryParameters).thenReturn({});
4547
});

0 commit comments

Comments
 (0)