Skip to content

Commit 1eee8ba

Browse files
bkonyiCommit Queue
authored andcommitted
[ DDS ] Allow for vm_service >=14.0.0 <16.0.0 for package:dds and package:dds_service_extensions
Change-Id: I4431a05076e8b09bbf891e3a49648413281f11f6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/403880 Reviewed-by: Derek Xu <[email protected]> Auto-Submit: Ben Konyi <[email protected]> Commit-Queue: Ben Konyi <[email protected]>
1 parent 9ab2316 commit 1eee8ba

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

pkg/dds/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 5.0.0-wip
1+
# 5.0.0
22
- [DAP] The debug adapter no longer spawns its own in-process copy of DDS, instead relying on one started by the Dart VM (or `Flutter`). This means the `enableDds` and `enableAuthCodes` arguments to the `DartDebugAdapter` base class have been deprecated and have any effect. Suppressing DDS (or auth codes) should be done in launch configuration (for example using `vmAdditionalArgs` or `toolArgs` depending on the target tool).
33
- Updated the `devtools_shared` dependency to version `^11.0.0`.
44
- Made `runDartDevelopmentServiceFromCLI` pass the specified bind address
@@ -7,7 +7,7 @@
77
lifetime of instance references returned. This should avoid instances being
88
collected while execution is paused, while releasing them once execution
99
resumes.
10-
- Updated `vm_service` constraint to ^14.3.0.
10+
- Updated `vm_service` constraint to `>=14.0.0 <16.0.0`.
1111
- [DAP] Updated `dap` constraint to ^1.4.0.
1212
- [DAP] Set `supportsANSIStyling` to `true` in debug adapter capabilities to indicate that `Output` events might contain ansi color codes.
1313
- [DAP] Stack traces in more formats will be parsed and have locations attached to `OutputEvents`s.

pkg/dds/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dds
2-
version: 5.0.0-wip
2+
version: 5.0.0
33
description: >-
44
A library used to spawn the Dart Developer Service, used to communicate with
55
a Dart VM Service instance.
@@ -28,7 +28,7 @@ dependencies:
2828
shelf: ^1.0.0
2929
sse: ^4.0.0
3030
stream_channel: ^2.0.0
31-
vm_service: ^14.3.0
31+
vm_service: '>=14.0.0 <16.0.0'
3232
web_socket_channel: '>=2.0.0 <4.0.0'
3333

3434
# We use 'any' version constraints here as we get our package versions from
@@ -38,4 +38,4 @@ dependencies:
3838
dev_dependencies:
3939
lints: any
4040
test: any
41-
webdriver: any
41+
webdriver: any

pkg/dds_service_extensions/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 2.0.1
2+
- Update `vm_service` to `>=14.0.0 <16.0.0`.
3+
14
# 2.0.0
25
- Updated to DDS protocol 2.0.
36
- Added:

pkg/dds_service_extensions/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dds_service_extensions
2-
version: 2.0.0
2+
version: 2.0.1
33
description: >-
44
Extension methods for `package:vm_service`, used to make requests a
55
Dart Development Service (DDS) instance.
@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
async: ^2.4.1
1313
dap: ^1.0.0
14-
vm_service: ^14.0.0
14+
vm_service: '>=14.0.0 <16.0.0'
1515

1616
# We use 'any' version constraints here as we get our package versions from
1717
# the dart-lang/sdk repo's DEPS file. Note that this is a special case; the

0 commit comments

Comments
 (0)