From 697fcf722d6bc9b54d060907a6e64d8bd139d17e Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 17 Jan 2025 00:34:50 +0000 Subject: [PATCH] Drop reference to legacy communication protocol Cleanup following #2065 The support for legacy test suite communication was dropped in #2099 but I missed a change in this comment which still describes the difference. --- pkgs/test/CHANGELOG.md | 2 ++ pkgs/test/pubspec.yaml | 2 +- pkgs/test/tool/host.dart | 8 ++------ 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/test/CHANGELOG.md b/pkgs/test/CHANGELOG.md index ed126365f..8a6e13f8a 100644 --- a/pkgs/test/CHANGELOG.md +++ b/pkgs/test/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.25.15-wip + ## 1.25.14 * Use secure random for url secrets. diff --git a/pkgs/test/pubspec.yaml b/pkgs/test/pubspec.yaml index 1c796523b..c9d2641ec 100644 --- a/pkgs/test/pubspec.yaml +++ b/pkgs/test/pubspec.yaml @@ -1,5 +1,5 @@ name: test -version: 1.25.14 +version: 1.25.15-wip description: >- A full featured library for writing and running Dart tests across platforms. repository: https://github.com/dart-lang/test/tree/master/pkgs/test diff --git a/pkgs/test/tool/host.dart b/pkgs/test/tool/host.dart index dc3e5ab0f..ebe434097 100644 --- a/pkgs/test/tool/host.dart +++ b/pkgs/test/tool/host.dart @@ -191,12 +191,8 @@ MultiChannel _connectToServer() { /// the key 'exception' set to true and details in the value for 'data' (coming /// from `dart.js` due to a load exception). /// -/// Legacy bootstrap implementations send a `{'ready': true}` message as a -/// signal for this host to create a [MessageChannel] and send the port through -/// the frame's `window.onMessage` channel. -/// -/// Upcoming bootstrap implementations will send the string 'port' and include a -/// port for a prepared [MessageChannel]. +/// Bootstrap implementations send the string 'port' and include a port for a +/// prepared [MessageChannel]. /// /// Returns a [StreamChannel] which will be connected to the frame once the /// message channel port is active.