From ac74e5ba57b1a6dcf119a8ba764a488f95240af1 Mon Sep 17 00:00:00 2001 From: Joachim Ansorg Date: Wed, 8 Jan 2025 10:30:08 +0100 Subject: [PATCH] Update DAP version to 1.69.0 --- CHANGELOG.md | 2 ++ README.md | 2 +- .../src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend | 2 +- .../org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java | 2 +- .../org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e072763..4f2830deb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### v0.24.0 (TBD) +* Implemented DAP version 1.69.0 + Fixed issues: Breaking API changes: diff --git a/README.md b/README.md index c1d8186b2..00daa3544 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ The Maven Repositories, p2 Update Sites, and the Snapshots contain _signed jars_ ### Supported DAP Versions - * LSP4J 0.24.* _(Next release)_ → DAP 1.65.0 + * LSP4J 0.24.* _(Next release)_ → DAP 1.69.0 * LSP4J 0.23.* → DAP 1.65.0 * LSP4J 0.22.* → DAP 1.60.0 * LSP4J 0.21.* → DAP 1.60.0 diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend index 8868d8407..3124c5408 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/DebugProtocol.xtend @@ -28,7 +28,7 @@ class DebugProtocol { /** * Version of Debug Protocol */ - public static final String SCHEMA_VERSION = "1.65.0"; + public static final String SCHEMA_VERSION = "1.69.0"; /** * Refer to the Debug Adapter Protocol's diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java index 404050acf..06b17817a 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolClient.java @@ -47,7 +47,7 @@ public interface IDebugProtocolClient { /** * Version of Debug Protocol */ - String SCHEMA_VERSION = "1.65.0"; + String SCHEMA_VERSION = "1.69.0"; /** * This event indicates that the debug adapter is ready to accept configuration diff --git a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java index 62943c3a6..7d99f2643 100644 --- a/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java +++ b/org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java @@ -93,7 +93,7 @@ public interface IDebugProtocolServer { /** * Version of Debug Protocol */ - String SCHEMA_VERSION = "1.65.0"; + String SCHEMA_VERSION = "1.69.0"; /** * The 'cancel' request is used by the client in two situations: