File tree 2 files changed +24
-18
lines changed 2 files changed +24
-18
lines changed Original file line number Diff line number Diff line change @@ -6,29 +6,28 @@ publish_to: none
6
6
7
7
dependencies :
8
8
args : ^2.1.0
9
- async : ^2.6.1
10
- collection : ^1.15 .0
9
+ async : ^2.10.0
10
+ collection : ^1.17 .0
11
11
colorize : ^3.0.0
12
- file : ^6.1.0
13
- # Pin git to 2.0.x until dart >=2.18 is legacy
14
- git : ' >=2.0.0 <2.1.0'
15
- http : ' >=0.13.3 <2.0.0'
12
+ file : ^7.0.1
13
+ git : ^2.0.0
14
+ http : ^1.0.0
16
15
http_multi_server : ^3.0.1
17
- meta : ^1.3 .0
18
- path : ^1.8.0
19
- platform : ^3.0.0
16
+ meta : ^1.10 .0
17
+ path : ^1.8.3
18
+ platform : ^3.0.2
20
19
pub_semver : ^2.0.0
21
- pubspec_parse : ^1.0.0
20
+ pubspec_parse : ^1.2.2
22
21
quiver : ^3.0.1
23
- test : ^1.17.3
24
- uuid : ^3.0.4
22
+ test : ^1.24.0
23
+ uuid : ^4.5.1
25
24
yaml : ^3.1.0
26
25
yaml_edit : ^2.0.2
27
26
28
27
dev_dependencies :
29
- build_runner : ^2.0.3
30
- matcher : ^0.12.10
28
+ build_runner : ^2.2.1
29
+ matcher : ^0.12.15
31
30
mockito : ^5.4.4
32
31
33
32
environment :
34
- sdk : ' >=3.0.0 <4.0.0 '
33
+ sdk : ^3.1.0
Original file line number Diff line number Diff line change @@ -244,20 +244,27 @@ class MockGitDir extends _i1.Mock implements _i4.GitDir {
244
244
_i6.Future <_i10.ProcessResult > runCommand (
245
245
Iterable <String >? args, {
246
246
bool ? throwOnError = true ,
247
+ bool ? echoOutput = false ,
247
248
}) =>
248
249
(super .noSuchMethod (
249
250
Invocation .method (
250
251
#runCommand,
251
252
[args],
252
- {#throwOnError: throwOnError},
253
+ {
254
+ #throwOnError: throwOnError,
255
+ #echoOutput: echoOutput,
256
+ },
253
257
),
254
258
returnValue: _i6.Future <_i10.ProcessResult >.value (
255
259
_i5.dummyValue< _i10.ProcessResult > (
256
260
this ,
257
261
Invocation .method (
258
262
#runCommand,
259
263
[args],
260
- {#throwOnError: throwOnError},
264
+ {
265
+ #throwOnError: throwOnError,
266
+ #echoOutput: echoOutput,
267
+ },
261
268
),
262
269
)),
263
270
) as _i6.Future <_i10.ProcessResult >);
@@ -274,7 +281,7 @@ class MockGitDir extends _i1.Mock implements _i4.GitDir {
274
281
@override
275
282
_i6.Future <_i2.Commit ?> updateBranch (
276
283
String ? branchName,
277
- _i6.Future <dynamic > Function (_i10.Directory )? populater,
284
+ _i6.Future <void > Function (_i10.Directory )? populater,
278
285
String ? commitMessage,
279
286
) =>
280
287
(super .noSuchMethod (
You can’t perform that action at this time.
0 commit comments