Skip to content

Commit ca3cea2

Browse files
sigurdmCommit Queue
authored andcommitted
Bump language version for pkg/dds_*
Extracted from https://dart-review.googlesource.com/c/sdk/+/397164 Which migrates the sdk to resolve as a pub workspace Pub workspaces requires a language version of 3.5. Change-Id: I74abaac7dec6b88bc0453ef799748c4cbc3026e2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/412084 Auto-Submit: Sigurd Meldgaard <[email protected]> Reviewed-by: Daco Harkes <[email protected]> Commit-Queue: Sigurd Meldgaard <[email protected]>
1 parent 1ca5b1d commit ca3cea2

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

pkg/dds/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 5.0.1-wip
22

33
- Widen the dependency on `package:shelf_web_socket`.
4+
- Require Dart SDK v. 3.5.0 or higher.
45

56
# 5.0.0
67
- [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).

pkg/dds/lib/src/dds_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ class DartDevelopmentServiceImpl implements DartDevelopmentService {
388388
// If DDS is serving DevTools, install the DevTools handlers and
389389
// forward any unhandled HTTP requests to the VM service.
390390
final String buildDir =
391-
_devToolsConfiguration!.customBuildDirectoryPath.toFilePath();
391+
_devToolsConfiguration.customBuildDirectoryPath.toFilePath();
392392
return defaultHandler(
393393
dds: this,
394394
buildDir: buildDir,

pkg/dds/pubspec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ description: >-
66
repository: https://github.com/dart-lang/sdk/tree/main/pkg/dds
77

88
environment:
9-
sdk: '>=3.0.0 <4.0.0'
9+
sdk: ^3.5.0
10+
1011

1112
dependencies:
1213
args: ^2.0.0

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.2-wip
2+
- Require dart sdk v. 3.5.0 or higher.
3+
14
# 2.0.1
25
- Update `vm_service` to `>=14.0.0 <16.0.0`.
36

pkg/dds_service_extensions/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: dds_service_extensions
2-
version: 2.0.1
2+
version: 2.0.2-wip
33
description: >-
44
Extension methods for `package:vm_service`, used to make requests a
55
Dart Development Service (DDS) instance.
66
repository: https://github.com/dart-lang/sdk/tree/main/pkg/dds_service_extensions
77

88
environment:
9-
sdk: ^3.0.0
9+
sdk: ^3.5.0
10+
1011

1112
dependencies:
1213
async: ^2.4.1

0 commit comments

Comments
 (0)