diff --git a/dwds/CHANGELOG.md b/dwds/CHANGELOG.md index b68cb16c9..c738cb733 100644 --- a/dwds/CHANGELOG.md +++ b/dwds/CHANGELOG.md @@ -1,3 +1,5 @@ +## 24.4.0-wip + ## 24.3.0 - Update to be forward compatible with changes to `package:shelf_web_socket`. diff --git a/dwds/debug_extension/web/chrome_api.dart b/dwds/debug_extension/web/chrome_api.dart index e15e92537..3e004446f 100644 --- a/dwds/debug_extension/web/chrome_api.dart +++ b/dwds/debug_extension/web/chrome_api.dart @@ -2,6 +2,8 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/cider_connection.dart b/dwds/debug_extension/web/cider_connection.dart index 8d64a1544..6c90eb9e2 100644 --- a/dwds/debug_extension/web/cider_connection.dart +++ b/dwds/debug_extension/web/cider_connection.dart @@ -6,6 +6,8 @@ library; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/copier.dart b/dwds/debug_extension/web/copier.dart index 5289904c8..0134cb21c 100644 --- a/dwds/debug_extension/web/copier.dart +++ b/dwds/debug_extension/web/copier.dart @@ -5,6 +5,8 @@ @JS() library; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/debug_info.dart b/dwds/debug_extension/web/debug_info.dart index 9f2f3142a..f8e5943ff 100644 --- a/dwds/debug_extension/web/debug_info.dart +++ b/dwds/debug_extension/web/debug_info.dart @@ -6,7 +6,11 @@ library; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js'; import 'package:dwds/data/debug_info.dart'; diff --git a/dwds/debug_extension/web/detector.dart b/dwds/debug_extension/web/detector.dart index 3b9aa4184..1d1ec0f68 100644 --- a/dwds/debug_extension/web/detector.dart +++ b/dwds/debug_extension/web/detector.dart @@ -6,7 +6,11 @@ library; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:dwds/data/debug_info.dart'; diff --git a/dwds/debug_extension/web/devtools.dart b/dwds/debug_extension/web/devtools.dart index 299b6e7a4..6318ddffa 100644 --- a/dwds/debug_extension/web/devtools.dart +++ b/dwds/debug_extension/web/devtools.dart @@ -5,6 +5,8 @@ @JS() library; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:dwds/data/debug_info.dart'; diff --git a/dwds/debug_extension/web/messaging.dart b/dwds/debug_extension/web/messaging.dart index 68bba19eb..7a4d139b5 100644 --- a/dwds/debug_extension/web/messaging.dart +++ b/dwds/debug_extension/web/messaging.dart @@ -7,6 +7,8 @@ library; import 'dart:async'; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/panel.dart b/dwds/debug_extension/web/panel.dart index 039a3f649..2c1b6ffbf 100644 --- a/dwds/debug_extension/web/panel.dart +++ b/dwds/debug_extension/web/panel.dart @@ -7,6 +7,8 @@ library; import 'dart:async'; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:dwds/data/debug_info.dart'; diff --git a/dwds/debug_extension/web/popup.dart b/dwds/debug_extension/web/popup.dart index 747886ab2..de6fbed08 100644 --- a/dwds/debug_extension/web/popup.dart +++ b/dwds/debug_extension/web/popup.dart @@ -7,6 +7,8 @@ library; import 'dart:async'; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:dwds/data/debug_info.dart'; diff --git a/dwds/debug_extension/web/storage.dart b/dwds/debug_extension/web/storage.dart index 13855560f..52dd65faa 100644 --- a/dwds/debug_extension/web/storage.dart +++ b/dwds/debug_extension/web/storage.dart @@ -7,6 +7,8 @@ library; import 'dart:async'; import 'dart:convert'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/utils.dart b/dwds/debug_extension/web/utils.dart index 589a870d3..9ef92887f 100644 --- a/dwds/debug_extension/web/utils.dart +++ b/dwds/debug_extension/web/utils.dart @@ -6,6 +6,8 @@ library; import 'dart:async'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:js/js.dart'; diff --git a/dwds/debug_extension/web/web_api.dart b/dwds/debug_extension/web/web_api.dart index 97c4f13c7..1a7d61664 100644 --- a/dwds/debug_extension/web/web_api.dart +++ b/dwds/debug_extension/web/web_api.dart @@ -1,7 +1,12 @@ // Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. + +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js_util' as js_util; import 'package:js/js.dart'; diff --git a/dwds/lib/src/version.dart b/dwds/lib/src/version.dart index 6b900ac62..588ff7d61 100644 --- a/dwds/lib/src/version.dart +++ b/dwds/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '24.3.0'; +const packageVersion = '24.4.0-wip'; diff --git a/dwds/pubspec.yaml b/dwds/pubspec.yaml index 4a0295416..b3b8392af 100644 --- a/dwds/pubspec.yaml +++ b/dwds/pubspec.yaml @@ -1,6 +1,6 @@ name: dwds # Every time this changes you need to run `dart run build_runner build`. -version: 24.3.0 +version: 24.4.0-wip description: >- A service that proxies between the Chrome debug protocol and the Dart VM service protocol. diff --git a/example/web/main.dart b/example/web/main.dart index 151775b88..4d2637c60 100644 --- a/example/web/main.dart +++ b/example/web/main.dart @@ -5,6 +5,8 @@ import 'dart:async'; import 'dart:convert'; import 'dart:developer'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; void main() { diff --git a/fixtures/_experimentSound/web/main.dart b/fixtures/_experimentSound/web/main.dart index a9f87f0bc..09827fd9b 100644 --- a/fixtures/_experimentSound/web/main.dart +++ b/fixtures/_experimentSound/web/main.dart @@ -4,6 +4,8 @@ import 'dart:async'; import 'dart:core'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; void main() { diff --git a/fixtures/_testCircular2Sound/web/main.dart b/fixtures/_testCircular2Sound/web/main.dart index 03fcf7969..9c4b46056 100644 --- a/fixtures/_testCircular2Sound/web/main.dart +++ b/fixtures/_testCircular2Sound/web/main.dart @@ -4,6 +4,8 @@ import 'dart:async'; import 'dart:core'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:_test_circular1_sound/library1.dart'; diff --git a/fixtures/_testHotRestart2Sound/web/main.dart b/fixtures/_testHotRestart2Sound/web/main.dart index d17b154a0..090ea673d 100644 --- a/fixtures/_testHotRestart2Sound/web/main.dart +++ b/fixtures/_testHotRestart2Sound/web/main.dart @@ -3,6 +3,8 @@ // BSD-style license that can be found in the LICENSE file. import 'dart:core'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:_test_hot_restart1/library1.dart'; diff --git a/fixtures/_testPackageSound/web/main.dart b/fixtures/_testPackageSound/web/main.dart index edc59ac65..96f3785a5 100644 --- a/fixtures/_testPackageSound/web/main.dart +++ b/fixtures/_testPackageSound/web/main.dart @@ -6,6 +6,8 @@ import 'dart:async'; import 'dart:convert'; import 'dart:core'; import 'dart:developer'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; import 'package:_test_package_sound/test_library.dart'; diff --git a/fixtures/_testSound/example/append_body/main.dart b/fixtures/_testSound/example/append_body/main.dart index 021576381..c9000e381 100644 --- a/fixtures/_testSound/example/append_body/main.dart +++ b/fixtures/_testSound/example/append_body/main.dart @@ -4,6 +4,8 @@ import 'dart:async'; import 'dart:developer'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; void main() { diff --git a/fixtures/_testSound/example/hello_world/main.dart b/fixtures/_testSound/example/hello_world/main.dart index 8223bfbaf..cca39c9ce 100644 --- a/fixtures/_testSound/example/hello_world/main.dart +++ b/fixtures/_testSound/example/hello_world/main.dart @@ -6,7 +6,11 @@ import 'dart:async'; import 'dart:collection'; import 'dart:convert'; import 'dart:developer'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:js'; import 'package:intl/intl.dart'; diff --git a/fixtures/_webdevSoundSmoke/web/main.dart b/fixtures/_webdevSoundSmoke/web/main.dart index 907bfdbba..a8be53f93 100644 --- a/fixtures/_webdevSoundSmoke/web/main.dart +++ b/fixtures/_webdevSoundSmoke/web/main.dart @@ -5,6 +5,8 @@ import 'dart:async'; import 'dart:convert'; import 'dart:developer'; +// TODO: https://github.com/dart-lang/webdev/issues/2508 +// ignore: deprecated_member_use import 'dart:html'; void main() {