File tree Expand file tree Collapse file tree 7 files changed +25
-9
lines changed Expand file tree Collapse file tree 7 files changed +25
-9
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.26.3
2
+
3
+ * Expand pub constraint to allow the latest ` analyzer ` .
4
+
1
5
## 1.26.2
2
6
3
7
* Graduate native assets from experiment to preview.
Original file line number Diff line number Diff line change 1
1
name : test
2
- version : 1.26.2
2
+ version : 1.26.3
3
3
description : >-
4
4
A full featured library for writing and running Dart tests across platforms.
5
5
repository : https://github.com/dart-lang/test/tree/master/pkgs/test
@@ -10,7 +10,7 @@ environment:
10
10
sdk : ^3.5.0
11
11
12
12
dependencies :
13
- analyzer : ' >=6.0.0 <8 .0.0'
13
+ analyzer : ' >=6.0.0 <9 .0.0'
14
14
async : ^2.5.0
15
15
boolean_selector : ^2.1.0
16
16
collection : ^1.15.0
@@ -36,8 +36,8 @@ dependencies:
36
36
stream_channel : ^2.1.0
37
37
38
38
# Use an exact version until the test_api and test_core package are stable.
39
- test_api : 0.7.6
40
- test_core : 0.6.11
39
+ test_api : 0.7.7
40
+ test_core : 0.6.12
41
41
42
42
typed_data : ^1.3.0
43
43
web_socket_channel : ' >=2.0.0 <4.0.0'
Original file line number Diff line number Diff line change
1
+ ## 0.7.7
2
+
3
+ * Expand pub constraint to allow the latest ` analyzer ` .
4
+
1
5
## 0.7.6
2
6
3
7
* Fix an assertion failure when using ` setUpAll ` or ` tearDownAll ` and running
Original file line number Diff line number Diff line change 1
1
name : test_api
2
- version : 0.7.6
2
+ version : 0.7.7
3
3
description : >-
4
4
The user facing API for structuring Dart tests and checking expectations.
5
5
repository : https://github.com/dart-lang/test/tree/master/pkgs/test_api
@@ -21,7 +21,7 @@ dependencies:
21
21
term_glyph : ^1.2.0
22
22
23
23
dev_dependencies :
24
- analyzer : ' >=6.0.0 <8 .0.0'
24
+ analyzer : ' >=6.0.0 <9 .0.0'
25
25
fake_async : ^1.2.0
26
26
glob : ^2.0.0
27
27
graphs : ^2.0.0
Original file line number Diff line number Diff line change
1
+ ## 0.6.12
2
+
3
+ * Expand pub constraint to allow the latest ` analyzer ` .
4
+
1
5
## 0.6.11
2
6
3
7
* Graduate native assets from experiment to preview.
Original file line number Diff line number Diff line change @@ -214,6 +214,8 @@ class _Parser {
214
214
Object ? skip;
215
215
for (var expression in expressions) {
216
216
if (expression is InstanceCreationExpression ) {
217
+ // Replace name2 with name when bumping min analyzer dependency
218
+ // ignore: deprecated_member_use
217
219
var className = expression.constructorName.type.name2.lexeme;
218
220
219
221
if (className == 'Timeout' ) {
@@ -348,6 +350,8 @@ class _Parser {
348
350
349
351
String ? _findConstructorNameFromInstantiation (
350
352
InstanceCreationExpression constructor, String className) {
353
+ // Replace name2 with name when bumping min analyzer dependency
354
+ // ignore: deprecated_member_use
351
355
var actualClassName = constructor.constructorName.type.name2.lexeme;
352
356
var constructorName = constructor.constructorName.name? .name;
353
357
Original file line number Diff line number Diff line change 1
1
name : test_core
2
- version : 0.6.11
2
+ version : 0.6.12
3
3
description : A basic library for writing tests and running them on the VM.
4
4
repository : https://github.com/dart-lang/test/tree/master/pkgs/test_core
5
5
issue_tracker : https://github.com/dart-lang/test/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest
@@ -9,7 +9,7 @@ environment:
9
9
sdk : ^3.5.0
10
10
11
11
dependencies :
12
- analyzer : ' >=6.0.0 <8 .0.0'
12
+ analyzer : ' >=6.0.0 <9 .0.0'
13
13
args : ^2.0.0
14
14
async : ^2.5.0
15
15
boolean_selector : ^2.1.0
@@ -28,7 +28,7 @@ dependencies:
28
28
stack_trace : ^1.10.0
29
29
stream_channel : ^2.1.0
30
30
# Use an exact version until the test_api package is stable.
31
- test_api : 0.7.6
31
+ test_api : 0.7.7
32
32
vm_service : ' >=6.0.0 <16.0.0'
33
33
yaml : ^3.0.0
34
34
You can’t perform that action at this time.
0 commit comments