Skip to content

Commit c2f19b4

Browse files
authored
Allow latest pkg:analyzer, bump min SDK to stable release (#2418)
Prepare for releases
1 parent 8a07bee commit c2f19b4

File tree

15 files changed

+136
-132
lines changed

15 files changed

+136
-132
lines changed

.github/workflows/dart.yml

Lines changed: 106 additions & 106 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: regression_tests
22
publish_to: none
33
environment:
4-
sdk: ^3.5.0-311.0.dev
4+
sdk: ^3.5.0
55
resolution: workspace
66
dependencies:
77
test: any

integration_tests/spawn_hybrid/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: spawn_hybrid
22
publish_to: none
33
environment:
4-
sdk: ^3.5.0-311.0.dev
4+
sdk: ^3.5.0
55
resolution: workspace
66
dependencies:
77
async: ^2.9.0

integration_tests/wasm/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: wasm_tests
22
publish_to: none
33
environment:
4-
sdk: ^3.5.0-311.0.dev
4+
sdk: ^3.5.0
55
resolution: workspace
66
dev_dependencies:
77
test: any

pkgs/checks/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Add `containsMatchingInOrder` and `containsEqualInOrder` to replace the
99
combined functionality in `containsInOrder`.
1010
- Replace `pairwiseComparesTo` with `pairwiseMatches`.
11+
- Increase SDK constraint to ^3.5.0.
1112

1213
## 0.3.0
1314

pkgs/checks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/test/tree/master/pkgs/checks
77
resolution: workspace
88

99
environment:
10-
sdk: ^3.5.0-311.0.dev
10+
sdk: ^3.5.0
1111

1212
dependencies:
1313
async: ^2.8.0

pkgs/matcher/lib/mirror_matchers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
@Deprecated('Check properties on known types')
6-
library mirror_matchers;
6+
library;
77

88
/// The mirror matchers library provides some additional matchers that
99
/// make use of `dart:mirrors`.

pkgs/matcher/lib/src/type_matcher.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ class TypeMatcher<T> extends Matcher {
106106
final _dart2DynamicArgs = RegExp('<dynamic(, dynamic)*>');
107107

108108
/// With this expression `{}.runtimeType.toString`,
109-
/// Dart 1: "<Instance of Map>
110-
/// Dart 2: "<Instance of Map<dynamic, dynamic>>"
109+
/// Dart 1: "`<Instance of Map>`"
110+
/// Dart 2: "`<Instance of Map<dynamic, dynamic>>`"
111111
///
112112
/// This functions returns the Dart 1 output, when Dart 2 runtime semantics
113113
/// are enabled.

pkgs/test/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 1.25.9-wip
1+
## 1.25.9
22

3+
* Allow `analyzer: '>=6.0.0 <8.0.0'`
34
* Fix dart2wasm tests on windows.
4-
* Increase SDK constraint to ^3.5.0-311.0.dev.
5+
* Increase SDK constraint to ^3.5.0.
56
* Support running Node.js tests compiled with dart2wasm.
67
* Allow `firefox` or `firefox-bin` executable name on macOS.
78

pkgs/test/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: test
2-
version: 1.25.9-wip
2+
version: 1.25.9
33
description: >-
44
A full featured library for writing and running Dart tests across platforms.
55
repository: https://github.com/dart-lang/test/tree/master/pkgs/test
66
resolution: workspace
77

88
environment:
9-
sdk: ^3.5.0-311.0.dev
9+
sdk: ^3.5.0
1010

1111
dependencies:
12-
analyzer: '>=5.12.0 <7.0.0'
12+
analyzer: '>=6.0.0 <8.0.0'
1313
async: ^2.5.0
1414
boolean_selector: ^2.1.0
1515
collection: ^1.15.0
@@ -35,8 +35,8 @@ dependencies:
3535
stream_channel: ^2.1.0
3636

3737
# Use an exact version until the test_api and test_core package are stable.
38-
test_api: 0.7.4-wip
39-
test_core: 0.6.6-wip
38+
test_api: 0.7.4
39+
test_core: 0.6.6
4040

4141
typed_data: ^1.3.0
4242
web_socket_channel: '>=2.0.0 <4.0.0'

pkgs/test_api/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 0.7.4-wip
1+
## 0.7.4
22

3-
* Increase SDK constraint to ^3.5.0-311.0.dev.
3+
* Allow `analyzer: '>=6.0.0 <8.0.0'`
4+
* Increase SDK constraint to ^3.5.0.
45
* Support running Node.js tests compiled with dart2wasm.
56

67
## 0.7.3

pkgs/test_api/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: test_api
2-
version: 0.7.4-wip
2+
version: 0.7.4
33
description: >-
44
The user facing API for structuring Dart tests and checking expectations.
55
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_api
66
resolution: workspace
77

88
environment:
9-
sdk: ^3.5.0-311.0.dev
9+
sdk: ^3.5.0
1010

1111
dependencies:
1212
async: ^2.5.0
@@ -20,7 +20,7 @@ dependencies:
2020
term_glyph: ^1.2.0
2121

2222
dev_dependencies:
23-
analyzer: '>=2.1.0 <7.0.0'
23+
analyzer: '>=6.0.0 <8.0.0'
2424
fake_async: ^1.2.0
2525
glob: ^2.0.0
2626
graphs: ^2.0.0

pkgs/test_core/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 0.6.6-wip
1+
## 0.6.6
22

3+
* Allow `analyzer: '>=6.0.0 <8.0.0'`
34
* Fix dart2wasm tests on windows.
4-
* Increase SDK constraint to ^3.5.0-311.0.dev.
5+
* Increase SDK constraint to ^3.5.0.
56
* Allow passing additional arguments to `dart compile wasm`.
67

78
## 0.6.5

pkgs/test_core/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: test_core
2-
version: 0.6.6-wip
2+
version: 0.6.6
33
description: A basic library for writing tests and running them on the VM.
44
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_core
55
resolution: workspace
66

77
environment:
8-
sdk: ^3.5.0-311.0.dev
8+
sdk: ^3.5.0
99

1010
dependencies:
11-
analyzer: '>=3.3.0 <7.0.0'
11+
analyzer: '>=6.0.0 <8.0.0'
1212
args: ^2.0.0
1313
async: ^2.5.0
1414
boolean_selector: ^2.1.0
@@ -27,7 +27,7 @@ dependencies:
2727
stack_trace: ^1.10.0
2828
stream_channel: ^2.1.0
2929
# Use an exact version until the test_api package is stable.
30-
test_api: 0.7.4-wip
30+
test_api: 0.7.4
3131
vm_service: ">=6.0.0 <15.0.0"
3232
yaml: ^3.0.0
3333

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: test_workspace
22
publish_to: none
33
environment:
4-
sdk: ^3.5.0-311.0.dev # Must be ^3.5.0 or later for workspace to be allowed
4+
sdk: ^3.5.0
55
workspace:
66
- integration_tests/regression
77
- integration_tests/spawn_hybrid

0 commit comments

Comments
 (0)