Skip to content

Commit 19df4f0

Browse files
committed
Release '0.15.0'
Signed-off-by: Yevhen Vydolob <yvydolob@redhat.com>
1 parent 57024ea commit 19df4f0

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1+
### 0.15.0
2+
3+
- Fix: Array new line ending with no indent [#384](https://github.com/redhat-developer/yaml-language-server/pull/384)
4+
- Fix: Code Completion with defaultSnippet and markdown [#385](https://github.com/redhat-developer/yaml-language-server/pull/385)
5+
- Fix: Test yaml-schema package [#386](https://github.com/redhat-developer/yaml-language-server/pull/386)
6+
- Fix: Completion with default snippet when node is array [#387](https://github.com/redhat-developer/yaml-language-server/pull/387)
7+
- Auto formatting for list, with `onTypeFormatting` implementation [#179](https://github.com/redhat-developer/vscode-yaml/issues/179)
8+
- Fix: Completion array anyOf [#390](https://github.com/redhat-developer/yaml-language-server/pull/390)
9+
- Fix CodeCompletion with defaultSnippet and markdown [#393](https://github.com/redhat-developer/yaml-language-server/pull/393)
10+
- Fix: Services initialization [#399](https://github.com/redhat-developer/yaml-language-server/pull/399)
11+
- Update kubernetes schema to 1.18.1 [#401](https://github.com/redhat-developer/yaml-language-server/pull/401)
12+
- Fix: Folding misbehaves in version 0.14.0 [#400](https://github.com/redhat-developer/yaml-language-server/issues/400)
13+
- Use mocha bdd interface for all tests [#403](https://github.com/redhat-developer/yaml-language-server/pull/403)
14+
15+
Thanks to Petr Spacek and tonypai
16+
117
### 0.14.0
18+
219
- yaml-language-server use a non-standard LSP request to resolve schemas content on client [#359](https://github.com/redhat-developer/yaml-language-server/pull/359)
320
- Fix error on completion 'null' value [#360](https://github.com/redhat-developer/yaml-language-server/pull/360)
421
- Select schemas based off on their priority [#362](https://github.com/redhat-developer/yaml-language-server/pull/362)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ The following settings are supported:
4343
- `editor.tabSize`: the number of spaces to use when autocompleting. Default is 2.
4444
- `http.proxy`: The URL of the proxy server that will be used when attempting to download a schema. If it is not set or it is undefined no proxy server will be used.
4545
- `http.proxyStrictSSL`: If true the proxy server certificate should be verified against the list of supplied CAs. Default is false.
46+
- `[yaml].editor.formatOnType`: Enable/disable on type indent and auto formatting array
4647

4748
##### Adding custom tags
4849

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
{
22
"name": "yaml-language-server",
33
"description": "YAML language server",
4-
"version": "0.14.0",
4+
"version": "0.15.0",
55
"author": "Gorkem Ercan (Red Hat)",
66
"license": "MIT",
77
"contributors": [
88
{
99
"name": "Joshua Pinkney",
1010
"email": "joshpinkney@gmail.com"
1111
},
12+
{
13+
"name": "Yevhen Vydolob",
14+
"email": "yvydolob@redhat.com"
15+
},
1216
{
1317
"name": "Google LLC"
1418
}

0 commit comments

Comments
 (0)