Skip to content

Commit

Permalink
Update DAP schema versions and readme/changelog for DAP 1.65 implemen…
Browse files Browse the repository at this point in the history
…tation
  • Loading branch information
Soarex16 authored and jonahgraham committed Apr 14, 2024
1 parent 8fb07f4 commit 9f66dfd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

### v0.23.0 (TBD)

* Implemented DAP version 1.65.0

Fixed issues: <https://github.com/eclipse-lsp4j/lsp4j/milestone/34?closed=1>

* The exception handling around throwing `ResponseErrorException` has been improved to ensure that it is unwrapped to the expected `ResponseError` on the receiving side.
Expand All @@ -10,6 +12,8 @@ Fixed issues: <https://github.com/eclipse-lsp4j/lsp4j/milestone/34?closed=1>

Breaking API changes:

* DAP version 1.61 removed unused `ModulesViewDescriptor`

Nightly japicmp report: <https://download.eclipse.org/lsp4j/builds/main/japicmp-report/>

### [v0.22.0 (February 2024)](https://github.com/eclipse-lsp4j/lsp4j/releases/tag/v0.22.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -60,7 +60,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_

### Supported DAP Versions

* LSP4J 0.23.&ast; _(Next release)_ &rarr; DAP 1.60.0
* LSP4J 0.23.&ast; _(Next release)_ &rarr; DAP 1.65.0
* LSP4J 0.22.&ast; &rarr; DAP 1.60.0
* LSP4J 0.21.&ast; &rarr; DAP 1.60.0
* LSP4J 0.20.&ast; &rarr; DAP 1.58.0
Expand Down
Expand Up @@ -28,7 +28,7 @@ class DebugProtocol {
/**
* Version of Debug Protocol
*/
public static final String SCHEMA_VERSION = "1.60.0";
public static final String SCHEMA_VERSION = "1.65.0";

/**
* Refer to the Debug Adapter Protocol's
Expand Down
Expand Up @@ -47,7 +47,7 @@ public interface IDebugProtocolClient {
/**
* Version of Debug Protocol
*/
String SCHEMA_VERSION = "1.60.0";
String SCHEMA_VERSION = "1.65.0";

/**
* This event indicates that the debug adapter is ready to accept configuration
Expand Down
Expand Up @@ -91,7 +91,7 @@ public interface IDebugProtocolServer {
/**
* Version of Debug Protocol
*/
String SCHEMA_VERSION = "1.60.0";
String SCHEMA_VERSION = "1.65.0";

/**
* The 'cancel' request is used by the client in two situations:
Expand Down

0 comments on commit 9f66dfd

Please sign in to comment.