[dds/dap] Bump package:dap and the version used by DDS

DDS relies on a new class `DartInitializeRequestArguments` added to `package:dap`.

Change-Id: I25b61a3a710c6867c55a545a6f6c4646dc4ba3f1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/355180
Reviewed-by: Helin Shiah <helinx@google.com>
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Helin Shiah <helinx@google.com>
This commit is contained in:
Danny Tuppeny 2024-02-29 19:22:19 +00:00 committed by Commit Queue
parent 0329ba2ef6
commit f1a6b4025c
4 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,6 @@
# 3.3.0-unreleased
- **Breaking change:** [DAP] Several signatures in DAP debug adapter classes have been updated to use `Uri`s where they previously used `String path`s. This is to support communicating with the DAP client using URIs instead of file paths. URIs may be used only when the client sets the custom `supportsDartUris` client capability during initialization.
- Updated `package:dap` version to 1.2.0.
# 3.2.1
- Adding `unified_analytics` as a dependency and added static method `DevToolsUtils.initializeAnalytics` to create analytics instance for DevTools.

View file

@ -14,7 +14,7 @@ dependencies:
browser_launcher: ^1.0.0
collection: ^1.15.0
dds_service_extensions: ^1.6.0
dap: ^1.1.0
dap: ^1.2.0
extension_discovery: ^2.0.0
devtools_shared: ^7.0.0
http_multi_server: ^3.0.0

View file

@ -1,3 +1,7 @@
## 1.2.0
- Added `DartInitializeRequestArguments`, a subclass of `InitializeRequestArguments` that supports a custom flag `supportsDartUris` for informing the debug adapter that the client supports using URIs in places that might usually be file paths (such as `stackTraceRequest`). Setting this flag indicates that the client supports `file:` URIs _and also_ any custom-scheme URIs whose content can be provided by the analysis server from the matching Dart SDK.
## 1.1.0
- Updated all generated classes using the latest published version of the DAP spec.

View file

@ -1,5 +1,5 @@
name: dap
version: 1.1.0
version: 1.2.0
description: >-
A package of classes that are generated from the DAP specifications along with
their generating code.