We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b704d1 commit 6c2f004Copy full SHA for 6c2f004
2 files changed
CHANGELOG.md
@@ -1,7 +1,13 @@
1
# Snyk Security Changelog
2
3
+
4
## [2.1.0] - Unreleased
5
6
+### Changes
7
+- bumped the LS protocol version to 11 to support new commands introduced for global ignores
8
9
+## [2.1.0] - v20240313.174439
10
11
### Fixes
12
13
- shortened plugin name to just Snyk Security
plugin/src/main/java/io/snyk/eclipse/plugin/utils/LsMetadataResponseHandler.java
@@ -14,7 +14,7 @@ public LsMetadataResponseHandler() {
14
15
@Override
16
public String handleResponse(HttpResponse httpResponse) {
17
- String latestCliSupportingLSProtocolVersion = "10";
+ String latestCliSupportingLSProtocolVersion = "11";
18
InputStream inputStream;
19
try {
20
inputStream = httpResponse.getEntity().getContent();
0 commit comments