Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dwds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 24.2.0-wip
## 24.2.0

- Consolidate `FrontendServerDdcStrategyProvider` and `FrontendServerRequireStrategyProvider` under a shared parent class. - [#2517](https://github.com/dart-lang/webdev/issues/2517)
- Remove `build_daemon_ddc_and_canary_evaluate_test`. - [2512](https://github.com/dart-lang/webdev/issues/2512)
Expand All @@ -12,6 +12,8 @@
when using the library bundle format does not provide a useful bundle name.
- Migrate to `package:web` v1.1.0.
- Added support for some debugging APIs with the DDC library bundle format. - [#2488](https://github.com/dart-lang/webdev/issues/2488)
- Update `package:vm_service` to '>=14.2.4 <16.0.0'.
- Update `package:vm_service_interface` to '2.0.1'.

## 24.1.0

Expand Down
146 changes: 113 additions & 33 deletions dwds/lib/src/injected/client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dwds/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions dwds/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dwds
# Every time this changes you need to run `dart run build_runner build`.
version: 24.2.0-wip
version: 24.2.0
description: >-
A service that proxies between the Chrome debug protocol and the Dart VM
service protocol.
Expand All @@ -15,7 +15,7 @@ dependencies:
collection: ^1.15.0
crypto: ^3.0.2
dds: ^4.2.5
file: ">=6.1.4 <8.0.0"
file: '>=6.1.4 <8.0.0'
http: ^1.0.0
http_multi_server: ^3.2.0
logging: ^1.0.2
Expand All @@ -33,8 +33,8 @@ dependencies:
stack_trace: ^1.10.0
sse: ^4.1.2
uuid: ^4.0.0
vm_service: ^14.2.4
vm_service_interface: 1.1.0
vm_service: '>=14.2.4 <16.0.0'
vm_service_interface: 2.0.1
web_socket_channel: '>=2.2.0 <4.0.0'
web: ^1.1.0
webkit_inspection_protocol: ^1.0.1
Expand All @@ -52,7 +52,7 @@ dev_dependencies:
graphs: ^2.1.0
frontend_server_common:
path: ../frontend_server_common
js: ">=0.6.4 <0.8.0"
js: '>=0.6.4 <0.8.0'
lints: ^4.0.0
pubspec_parse: ^1.2.0
puppeteer: ^3.1.1
Expand Down
9 changes: 0 additions & 9 deletions dwds/pubspec_overrides.yaml

This file was deleted.

6 changes: 5 additions & 1 deletion webdev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 3.7.0-wip
## 3.7.0

- Update `dwds` constraint to `24.2.0`.
- Update `package:vm_service` to `>=14.0.0 <16.0.0`.
- Update `package:vm_service_interface` to `2.0.1`.

## 3.6.0

Expand Down
8 changes: 4 additions & 4 deletions webdev/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: webdev
# Every time this changes you need to run `dart run build_runner build`.
version: 3.7.0-wip
version: 3.7.0
# We should not depend on a dev SDK before publishing.
# publish_to: none
description: >-
Expand All @@ -19,7 +19,7 @@ dependencies:
crypto: ^3.0.2
dds: ^4.1.0
# Pin DWDS to avoid dependency conflicts with vm_service:
dwds: 24.1.0
dwds: 24.2.0
http: ^1.0.0
http_multi_server: ^3.2.0
io: ^1.0.3
Expand All @@ -34,8 +34,8 @@ dependencies:
shelf_static: ^1.1.0
stack_trace: ^1.10.0
sse: ^4.1.0
vm_service: ^14.0.0
vm_service_interface: 1.1.0
vm_service: '>=14.0.0 <16.0.0'
vm_service_interface: 2.0.1
webkit_inspection_protocol: ^1.0.1
yaml: ^3.1.1

Expand Down
3 changes: 0 additions & 3 deletions webdev/pubspec_overrides.yaml

This file was deleted.

Loading