Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-04-27 14:07:15 +0000
committerAlexander Kurtakov2021-04-27 15:42:51 +0000
commit26bae82b8d738e243d0c544d640c74876844dbf9 (patch)
treefadf78e76943b5a70cc714b08c348ea38aa345d7
parent71581514958c344448b22fda037fb1dd007158b5 (diff)
downloadorg.eclipse.linuxtools-26bae82b8d738e243d0c544d640c74876844dbf9.tar.gz
org.eclipse.linuxtools-26bae82b8d738e243d0c544d640c74876844dbf9.tar.xz
org.eclipse.linuxtools-26bae82b8d738e243d0c544d640c74876844dbf9.zip
Update docker ls to 0.4.1
License score: 88 https://clearlydefined.io/definitions/npm/npmjs/-/dockerfile-language-server-nodejs/0.4.1 Changes since version we use: ## [0.4.1] - 2021-04-12 ### Fixed - textDocument/publishDiagnostics - fixed a regression that caused the internal state of configurations to be stale which mean editors would not immediately be notified of changed diagnostics based on configuration changes ([#256](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/256)) ## [0.4.0] - 2021-04-11 ### Added - settings - docker.languageserver.formatter.ignoreMultilineInstructions? ([#255](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/255)) - value = ( true | false ) - this will make the formatter ignore instructions that span multiple lines - textDocument/completion - suggest working directories if editing the last argument of ADD and COPY instructions that aren't written in JSON ([rcjsuen/dockerfile-language-service#77](https://github.com/rcjsuen/dockerfile-language-service/issues/77)) - textDocument/publishDiagnostics - allow multiple arguments to be defined for ARG instructions to support Docker Engine 20.10 ([rcjsuen/dockerfile-utils#92](https://github.com/rcjsuen/dockerfile-utils/issues/92)) - textDocument/formatting - allow the formatter to skip formatting of instructions that span multiple lines ([#255](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/255)) - textDocument/onTypeFormatting - optimized on type formatting so that it does not return unnecessary edits ([rcjsuen/dockerfile-language-service#82](https://github.com/rcjsuen/dockerfile-language-service/issues/82)) - allow the formatter to skip formatting of instructions that span multiple lines ([#255](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/255)) - textDocument/rangeFormatting - optimized range formatting so that it does not return unnecessary edits ([rcjsuen/dockerfile-language-service#81](https://github.com/rcjsuen/dockerfile-language-service/issues/81)) - allow the formatter to skip formatting of instructions that span multiple lines ([#255](https://github.com/rcjsuen/dockerfile-language-server-nodejs/issues/255)) ### Fixed - textDocument/publishDiagnostics - do not validate variable substitutions if found in CMD and ENTRYPOINT ([rcjsuen/dockerfile-utils#89](https://github.com/rcjsuen/dockerfile-utils/issues/89)) - do not flag `?` as an invalid modifier in variable substitutions ([rcjsuen/dockerfile-utils#91](https://github.com/rcjsuen/dockerfile-utils/issues/91)) - prevent false positive by improving the parsing of an escape character and newline that immediately follows a label definition ([rcjsuen/dockerfile-utils#95](https://github.com/rcjsuen/dockerfile-utils/issues/95)) - textDocument/semanticTokens - fix infinite loop issue when calculating semantic tokens for ARG or ENV instructions with nested comments ([rcjsuen/dockerfile-language-service#74](https://github.com/rcjsuen/dockerfile-language-service/issues/74)) Change-Id: If2d0c13bfcd69263ca2cb6011b150b73e70ab572 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/c/linuxtools/org.eclipse.linuxtools/+/179877 Tested-by: Linux Tools Bot <linuxtools-bot@eclipse.org>
-rw-r--r--containers/org.eclipse.linuxtools.docker.editor.ls/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.editor.ls/pom.xml b/containers/org.eclipse.linuxtools.docker.editor.ls/pom.xml
index 50eaea99f8..97e9aece5c 100644
--- a/containers/org.eclipse.linuxtools.docker.editor.ls/pom.xml
+++ b/containers/org.eclipse.linuxtools.docker.editor.ls/pom.xml
@@ -40,7 +40,7 @@
<arguments>
<arg>install</arg>
<arg>--no-bin-links</arg>
- <arg>dockerfile-language-server-nodejs@0.3.0</arg>
+ <arg>dockerfile-language-server-nodejs@0.4.1</arg>
</arguments>
<workingDirectory>language-server/</workingDirectory>
</configuration>

Back to the top