Skip to content

Commit 345223a

Browse files
NikolasKomonenfbricon
authored andcommitted
v5 Changelog
Signed-off-by: Nikolas Komonen <[email protected]>
1 parent 95bd6ff commit 345223a

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Change Log
22

3+
## [0.5.0](https://github.com/redhat-developer/vscode-xml/milestone/5?closed=1) (April 05, 2019)
4+
5+
### Enhancements
6+
7+
* More detailed completion for prolog. See [lsp4xml#155](https://github.com/angelozerr/lsp4xml/issues/155).
8+
* Added completion for xmlns attribute. See [lsp4xml#208](https://github.com/angelozerr/lsp4xml/issues/208).
9+
* Have value completion for `xmlns:xsi`. See [lsp4xml#326](https://github.com/angelozerr/lsp4xml/issues/326).
10+
* Disabled ParentProcessWatcher on Windows. See [#116](https://github.com/redhat-developer/vscode-xml/pull/116).
11+
* Autoclose self-closing tags. See [#113](https://github.com/redhat-developer/vscode-xml/pull/113).
12+
* Don't autoclose tag if the closing tag already exists. See [#113](https://github.com/redhat-developer/vscode-xml/pull/113).
13+
* Changing the content of an XML Schema triggers validation. See [lsp4xml#213](https://github.com/angelozerr/lsp4xml/issues/213).
14+
* Preference `xml.server.workDir` to set schema cache folder. See [lsp4xml#222](https://github.com/angelozerr/lsp4xml/issues/222).
15+
* Code action to close missing quotes for attributes. See [lsp4xml#137](https://github.com/angelozerr/lsp4xml/issues/137).
16+
* Hover for attribute value documentation from XSD's. See [lsp4xml#12](https://github.com/angelozerr/lsp4xml/issues/12).
17+
* Autocompletion for `xsi:nil` values. See [lsp4xml#247](https://github.com/angelozerr/lsp4xml/issues/247).
18+
19+
### Bug Fixes
20+
21+
* `textDocument/publishDiagnostics` failed with message: Illegal argument: line must be non-negative. See [lsp4xml#157](https://github.com/angelozerr/lsp4xml/pull/157).
22+
* XSI completion item messages were incorrect. See [lsp4xml#296](https://github.com/angelozerr/lsp4xml/issues/296).
23+
* Removed trailing whitespace from normalized strings on format. See [lsp4xml#300](https://github.com/angelozerr/lsp4xml/pull/300).
24+
* Formatting an attribute without value loses data. See [lsp4xml#294](https://github.com/angelozerr/lsp4xml/issues/294).
25+
* Fixed error range of cvc-type.3.1.2. See [lsp4xml#318](https://github.com/angelozerr/lsp4xml/issues/318).
26+
* Fixed error range of ETagUnterminated. See [lsp4xml#317](https://github.com/angelozerr/lsp4xml/issues/317).
27+
* Fixed error range of cvc-elt.3.2.1. See [lsp4xml#321](https://github.com/angelozerr/lsp4xml/issues/321).
28+
* Multiple `'insert required attribute'` code actions shown when multiple attributes are missing. See [lsp4xml#209](https://github.com/angelozerr/lsp4xml/issues/209).
29+
* Self closing tag causes NPE in `cvc_complex_type_2_1CodeAction.doCodeAction`. See [lsp4xml#339](https://github.com/angelozerr/lsp4xml/issues/339).
30+
* Formatting removes xml-stylesheet processing instruction attributes. See [#115](https://github.com/redhat-developer/vscode-xml/issues/115).
31+
* Prevent rejected Promise during tag autoclose call. See [#117](https://github.com/redhat-developer/vscode-xml/issues/117).
32+
333
## [0.4.0](https://github.com/redhat-developer/vscode-xml/milestone/4?closed=1) (March 07, 2019)
434

535
### Enhancements

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,12 @@ The following settings are supported:
6363
* `xml.validation.schema`: Set to `false` to disable schema validation. Defaults to `true`.
6464
* `xml.validation.noGrammar`: The message severity when a document has no associated grammar. Defaults to `hint`.
6565
* `xml.format.spaceBeforeEmptyCloseTag`: Set to `true` to insert space before the end of a self closing tag. Defaults to `true`.
66-
67-
Since 0.4.0:
6866
* `xml.format.quotations`: Set to `doubleQuotes` to format and only use `"`, or `singleQuotes` to format and only use `'`. Defaults to `doubleQuotes`.
6967
* `xml.format.preserveEmptyContent`: Set to `true` to preserve standalone whitespace content in an element. Defaults to `false`.
7068

69+
Since 0.5.0:
70+
* `xml.server.workDir`: Set an absolute path for all cached schemas to be stored. Defaults to `~/.lsp4xml`.
71+
7172
More detailed info in the [Wiki](https://github.com/redhat-developer/vscode-xml/wiki/Preferences).
7273

7374
## Contributing

0 commit comments

Comments
 (0)