From c60509ff86fd76ee5f2551e5da70fa8c5ceea0c5 Mon Sep 17 00:00:00 2001 From: Abdelrahman Shawki Hassan Date: Thu, 9 Jan 2025 15:41:44 +0100 Subject: [PATCH] chore: bump ls protocol version to 18 --- src/snyk/common/constants/languageServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snyk/common/constants/languageServer.ts b/src/snyk/common/constants/languageServer.ts index 4ab1e3e12..a4187beaa 100644 --- a/src/snyk/common/constants/languageServer.ts +++ b/src/snyk/common/constants/languageServer.ts @@ -2,7 +2,7 @@ // Language Server name, used e.g. for the output channel export const SNYK_LANGUAGE_SERVER_NAME = 'Snyk Language Server'; // The internal language server protocol version for custom messages and configuration -export const PROTOCOL_VERSION = 17; +export const PROTOCOL_VERSION = 18; // LS protocol methods (needed for not having to rely on vscode dependencies in testing) export const DID_CHANGE_CONFIGURATION_METHOD = 'workspace/didChangeConfiguration';