Skip to content

Commit db6b8bd

Browse files
NikolasKomonenfbricon
authored andcommitted
Changelog for Client v 0.3.0
Signed-off-by: Nikolas <[email protected]>
1 parent 27ea297 commit db6b8bd

File tree

1 file changed

+37
-26
lines changed

1 file changed

+37
-26
lines changed

CHANGELOG.md

Lines changed: 37 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,71 @@
11
# Change Log
22

3-
4-
## 0.0.2 (November 8, 2018)
3+
## [0.3.0](https://github.com/redhat-developer/vscode-xml/milestone/3?closed=1) (January 28, 2019)
54

65
### Enhancements
76

7+
* Added ability to format DTD/DOCTYPE content. See [lsp4xml#268](https://github.com/angelozerr/lsp4xml/issues/268).
8+
* Added outline for DTD elements. See [lsp4xml#226](https://github.com/angelozerr/lsp4xml/issues/226).
9+
* XML completion based on internal DTD. See [lsp4xml#251](https://github.com/angelozerr/lsp4xml/issues/251).
10+
* Add `xml.validation.noGrammar` preference, to indicate document won't be validated. See [#89](https://github.com/redhat-developer/vscode-xml/issues/89).
11+
* Provide automatic completion/validation in catalog files. See [#204](https://github.com/redhat-developer/vscode-xml/issues/204).
12+
* Hover for XSI attributes. See [lsp4xml#164](https://github.com/angelozerr/lsp4xml/issues/164).
13+
* Show attribute value completion based on XML Schema/DTD. See [lsp4xml#242](https://github.com/angelozerr/lsp4xml/issues/242).
14+
* Added `xml.format.spaceBeforeEmptyCloseTag` preference to insert whitespace before closing empty end-tag. See [#84](https://github.com/redhat-developer/vscode-xml/issues/84).
15+
* Completion for XSI attributes. See [lsp4xml#163](https://github.com/angelozerr/lsp4xml/issues/163).
16+
* Changing the content of catalog.xml refreshes the catalogs and triggers validation. See [lsp4xml#212](https://github.com/angelozerr/lsp4xml/issues/212).
17+
* Added preference to enable/disable validation `xml.validation.enabled` and `xml.validation.schema`. See [#100](https://github.com/redhat-developer/vscode-xml/pull/100).
18+
* XML completion based on external DTD. See [lsp4xml#106](https://github.com/angelozerr/lsp4xml/issues/106).
19+
* Completion for DTD <!ELEMENT, <!ATTRIBUTE, ... . See [lsp4xml#232](https://github.com/angelozerr/lsp4xml/issues/232).
820

9-
* Prolog completion on first line, by typing: ```<?xml...``` . See [#85](https://github.com/angelozerr/lsp4xml/issues/85).
21+
### Bug Fixes
1022

11-
* Documentation on hover for schema defined attributes. See [#146](https://github.com/angelozerr/lsp4xml/issues/146).
23+
* Formatting unclosed tag would be in wrong location. See [lsp4xml#269](https://github.com/angelozerr/lsp4xml/issues/269).
24+
* Infinite loop when `<` was typed into an empty DTD file. See [lsp4xml#266](https://github.com/angelozerr/lsp4xml/issues/266).
25+
* Formatting malformed xml removed content. See [#227](https://github.com/redhat-developer/vscode-xml/issues/227).
26+
* Misplace diagnostic for cvc-elt.3.1. See [#241](https://github.com/redhat-developer/vscode-xml/issues/241).
27+
* Adjust range for DTD validation errors. See [#88](https://github.com/redhat-developer/vscode-xml/issues/88).
28+
* XML Schema completion prefix did not work in some cases. See [lsp4xml#214](https://github.com/angelozerr/lsp4xml/issues/214).
29+
* Problems with npm run build-server on Windows. See [#86](https://github.com/redhat-developer/vscode-xml/issues/86).
30+
* XML catalog support apparently not working. See [#78](https://github.com/redhat-developer/vscode-xml/issues/78).
31+
* Formatting removes DOCTYPE's public declaration. See [lsp4xml#250](https://github.com/angelozerr/lsp4xml/issues/250).
32+
* Adjust range error for internal DTD declaration. See [lsp4xml#225](https://github.com/angelozerr/lsp4xml/issues/225).
33+
* Don't add sibling element when completion items is filled with grammar. See [lsp4xml#211](https://github.com/angelozerr/lsp4xml/issues/211).
34+
* Validation needs additional `<uri>` catalog entry. See [lsp4xml#217](https://github.com/angelozerr/lsp4xml/issues/217).
35+
* Support rootUri for XML catalog configuration. See [lsp4xml#206](https://github.com/angelozerr/lsp4xml/issues/206).
36+
* CacheResourcesManager keeps trying to download unavailable resources. See [lsp4xml#201](https://github.com/angelozerr/lsp4xml/issues/201).
1237

13-
* Faster schema loading. See [#159](https://github.com/angelozerr/lsp4xml/issues/159).
1438

15-
* Autocompletion for XSD's. See [#111](https://github.com/angelozerr/lsp4xml/issues/111).
1639

17-
* Expose server VM arguments in preferences (can configure proxy). See [#169](https://github.com/angelozerr/lsp4xml/issues/169).
40+
## 0.2.0 (November 8, 2018)
1841

19-
* Auto closing tags preference handled with conflicting preference. See [#62](https://github.com/redhat-developer/vscode-xml/pull/62).
42+
### Enhancements
2043

44+
* Prolog completion on first line, by typing: ```<?xml...``` . See [#85](https://github.com/angelozerr/lsp4xml/issues/85).
45+
* Documentation on hover for schema defined attributes. See [#146](https://github.com/angelozerr/lsp4xml/issues/146).
46+
* Faster schema loading. See [#159](https://github.com/angelozerr/lsp4xml/issues/159).
47+
* Autocompletion for XSD's. See [#111](https://github.com/angelozerr/lsp4xml/issues/111).
48+
* Expose server VM arguments in preferences (can configure proxy). See [#169](https://github.com/angelozerr/lsp4xml/issues/169).
49+
* Auto closing tags preference handled with conflicting preference. See [#62](https://github.com/redhat-developer/vscode-xml/pull/62).
2150
* Auto indentation when hitting enter inside an element. See [#52](https://github.com/redhat-developer/vscode-xml/issues/52).
22-
2351
* Document Link support added. See [#56](https://github.com/angelozerr/lsp4xml/issues/56).
24-
2552
* Support for XSL. See [#189](https://github.com/angelozerr/lsp4xml/issues/189).
26-
2753
* Support for completion requests from empty character. See [#112](https://github.com/angelozerr/lsp4xml/issues/112).
2854

29-
3055
### Bug Fixes
3156

3257
* Formatting splitAttributes indentation fix. See [#59](https://github.com/redhat-developer/vscode-xml/issues/59).
33-
3458
* XML content fully preserved on format xml.format.joinContentLines. See [#152](https://github.com/angelozerr/lsp4xml/issues/152).
35-
3659
* Node completion was not working in nested elements. See [#66](https://github.com/redhat-developer/vscode-xml/issues/66).
37-
3860
* End tag completion on empty character. See [#23](https://github.com/redhat-developer/vscode-xml/issues/23).
39-
4061
* Formatting was removing DTD content. See [#198](https://github.com/angelozerr/lsp4xml/issues/198).
41-
4262
* Code action to insert attribute snippet was incorrect. See [#185](https://github.com/angelozerr/lsp4xml/issues/185).
43-
4463
* Completion for XSD was cached too aggressively. See [#194](https://github.com/angelozerr/lsp4xml/issues/194).
45-
4664
* Hover doesnt work when xs:annotation is declared in type. See [#182](https://github.com/angelozerr/lsp4xml/issues/182).
47-
4865
* Incomplete autocompletion for xsl documents. See [#165](https://github.com/angelozerr/lsp4xml/issues/165).
49-
5066
* Validation of non-empty nodes required to be empty shows misplaced diagnostics. See [#147](https://github.com/angelozerr/lsp4xml/issues/147).
51-
5267
* Validation of empty required node shows misplaced diagnostics. See [#145](https://github.com/angelozerr/lsp4xml/issues/145).
53-
5468
* File association should support relative path for systemId. See [#142](https://github.com/angelozerr/lsp4xml/issues/142).
55-
5669
* Code completion is sometimes "one off". See [#80](https://github.com/redhat-developer/vscode-xml/issues/80).
57-
5870
* DTD validation problems not refreshing correctly. See [#79](https://github.com/redhat-developer/vscode-xml/issues/79).
59-
6071
* No validation when referencing a schema in the same directory. See [#144](https://github.com/angelozerr/lsp4xml/issues/144)

0 commit comments

Comments
 (0)