From 4a300edba5f738c8a5b9c7e730c6b784c1f1e56c Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Wed, 9 Sep 2020 12:14:19 -0700 Subject: [PATCH 1/3] Update package:vm_service dependency --- pkgs/test_core/CHANGELOG.md | 4 ++++ pkgs/test_core/pubspec.yaml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/test_core/CHANGELOG.md b/pkgs/test_core/CHANGELOG.md index 36c4c05ae..3bdc7a3c1 100644 --- a/pkgs/test_core/CHANGELOG.md +++ b/pkgs/test_core/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.12-nullsafety.4 + +* Support latest `package:vm_service`. + ## 0.3.12-nullsafety.3 * Clean up `--help` output. diff --git a/pkgs/test_core/pubspec.yaml b/pkgs/test_core/pubspec.yaml index f383b39d2..20b3c883c 100644 --- a/pkgs/test_core/pubspec.yaml +++ b/pkgs/test_core/pubspec.yaml @@ -1,5 +1,5 @@ name: test_core -version: 0.3.12-nullsafety.3 +version: 0.3.12-nullsafety.4 description: A basic library for writing tests and running them on the VM. homepage: https://github.com/dart-lang/test/blob/master/pkgs/test_core @@ -26,7 +26,7 @@ dependencies: source_span: '>=1.8.0-nullsafety <1.8.0' stack_trace: '>=1.10.0-nullsafety <1.10.0' stream_channel: ">=2.1.0-nullsafety <2.1.0" - vm_service: '>=1.0.0 <5.0.0' + vm_service: '>=1.0.0 <6.0.0' yaml: ^2.0.0 # matcher is tightly constrained by test_api matcher: any From 9fec79cb60043c48867f00c571429c083ee132d5 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Wed, 9 Sep 2020 14:07:04 -0700 Subject: [PATCH 2/3] Update pubspec.yaml --- pkgs/test/pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/test/pubspec.yaml b/pkgs/test/pubspec.yaml index 09cf166f9..7478b9226 100644 --- a/pkgs/test/pubspec.yaml +++ b/pkgs/test/pubspec.yaml @@ -1,5 +1,5 @@ name: test -version: 1.16.0-nullsafety.3 +version: 1.16.0-nullsafety.4 description: A full featured library for writing and running Dart tests. homepage: https://github.com/dart-lang/test/blob/master/pkgs/test @@ -34,7 +34,7 @@ dependencies: yaml: ^2.0.0 # Use an exact version until the test_api and test_core package are stable. test_api: 0.2.19-nullsafety - test_core: 0.3.12-nullsafety.3 + test_core: 0.3.12-nullsafety.4 dev_dependencies: fake_async: ^1.0.0 From d8686da2c3c1fd3b7617ebb5e912afb1077153f5 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Wed, 9 Sep 2020 14:07:40 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- pkgs/test/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/test/CHANGELOG.md b/pkgs/test/CHANGELOG.md index 810b8c7ce..9406b9753 100644 --- a/pkgs/test/CHANGELOG.md +++ b/pkgs/test/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.16.0-nullsafety.4 + +* Depend on the latest test_core. + ## 1.16.0-nullsafety.3 * Clean up `--help` output.