Skip to content

Commit a347fa0

Browse files
author
Anna Gringauze
authored
Update vm_service to version 10.0.0 (#1917)
* Update vm_service to version 10.0.0 * Format * Update vm_service constraints
1 parent 4dd29a5 commit a347fa0

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

dwds/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Make hot restart atomic to prevent races on simultaneous execution.
1919
- Return error on expression evaluation if expression evaluator stopped.
2020
- Update SDK constraint to `>=3.0.0-134.0.dev <4.0.0`.
21+
- Update `package:vm_service` constraint to `>=10.1.0 <12.0.0`.
2122

2223
**Breaking changes**
2324
- Include an optional param to `Dwds.start` to indicate whether it is running

dwds/lib/src/services/chrome_proxy_service.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,12 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
562562

563563
@override
564564
Future<InstanceSet> getInstances(
565-
String isolateId, String classId, int limit) {
565+
String isolateId,
566+
String classId,
567+
int limit, {
568+
bool? includeImplementers,
569+
bool? includeSubclasses,
570+
}) {
566571
return _rpcNotSupportedFuture('getInstances');
567572
}
568573

dwds/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies:
3434
stack_trace: ^1.10.0
3535
sse: ^4.1.2
3636
uuid: ^3.0.6
37-
vm_service: ^9.0.0
37+
vm_service: ">=10.1.0 <12.0.0"
3838
web_socket_channel: ^2.2.0
3939
webkit_inspection_protocol: ^1.0.1
4040

webdev/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Add `--enable-experiment` flag to webdev commands and pass it
44
to the build runner and the expression compiler service.
55
- Update SDK constraint to `>=3.0.0-134.0.dev <4.0.0`.
6+
- Update `package:vm_service` constraint to `>=10.1.0 <12.0.0`.
67

78
**Breaking changes**
89

webdev/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies:
3535
shelf_static: ^1.1.0
3636
stack_trace: ^1.10.0
3737
sse: ^4.1.0
38-
vm_service: ^9.0.0
38+
vm_service: ">=10.1.0 <12.0.0"
3939
webkit_inspection_protocol: ^1.0.1
4040
yaml: ^3.1.1
4141

0 commit comments

Comments
 (0)