From 0b3d384b237166b5ccbf93411192fce53f98c75b Mon Sep 17 00:00:00 2001 From: Bastian Doetsch Date: Tue, 9 Apr 2024 08:52:13 +0200 Subject: [PATCH] chore: bump LS Protocol version to 11 [IDE-236] --- CHANGELOG.md | 3 +++ src/snyk/common/constants/languageServer.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d2efc90..80f7e6bc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Snyk Security Changelog +## [2.3.11] +- update LS protocol version to support global ignore commands + ## [2.3.10] ### Added - Added the [ Ignored ] text if the finding should be marked as ignored. diff --git a/src/snyk/common/constants/languageServer.ts b/src/snyk/common/constants/languageServer.ts index 94230e378..60ecd3320 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 = 10; +export const PROTOCOL_VERSION = 11; // LS protocol methods (needed for not having to rely on vscode dependencies in testing) export const DID_CHANGE_CONFIGURATION_METHOD = 'workspace/didChangeConfiguration';