Skip to content

Commit 922b1a0

Browse files
NikolasKomonenfbricon
authored andcommitted
Update CHANGELOG for 0.10.0
Signed-off-by: Nikolas Komonen <[email protected]>
1 parent 9f32fc1 commit 922b1a0

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG.md

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

3+
## [0.10.0](https://github.com/angelozerr/lsp4xml/milestone/11?closed=1) (December 11, 2019)
4+
5+
### Enhancements
6+
7+
* (Experimental) Ability to edit start/end tag simultaneously under `xml.mirrorCursorOnMatchingTag` preference. Can be toggled on/off on Windows/Linux through `ctrl+shift+f2` and on Mac `cmd+shift+f2`. See [#130](https://github.com/redhat-developer/vscode-xml/issues/130).
8+
* Allows File Associations to be used without Workspace. See [#202](https://github.com/redhat-developer/vscode-xml/issues/202).
9+
* CodeAction for missing root end tag. See [#lsp4xml/595](https://github.com/angelozerr/lsp4xml/pull/595).
10+
* DTD hover/completion support for documentation. See [#lsp4xml/592](https://github.com/angelozerr/lsp4xml/pull/592).
11+
* CodeAction for similar looking element names if it doesn't match the schema. See [#lsp4xml/591](https://github.com/angelozerr/lsp4xml/pull/591).
12+
* Navigation and intellisense for xs:include-ed types. See [#lsp4xml/579](https://github.com/angelozerr/lsp4xml/pull/579).
13+
* Contribute to completion, hover .. with external JAR. See [#193](https://github.com/redhat-developer/vscode-xml/pull/193).
14+
* Added documentation on how to contribute extensions to the XML LS. See [#197](https://github.com/redhat-developer/vscode-xml/pull/197).
15+
16+
17+
### Bug Fixes
18+
19+
* xs:import code action was inserting inside the tag name. See [#lsp4xml/593](https://github.com/angelozerr/lsp4xml/pull/593).
20+
* Prolog attribute completion was providing invalid values. See [#lsp4xml/587](https://github.com/angelozerr/lsp4xml/pull/587).
21+
* getCurrentAttribute method was not returning the correct attribute name. See [#lsp4xml/584](https://github.com/angelozerr/lsp4xml/pull/584).
22+
* Hover was not returning all hover responses. See [#lsp4xml/582](https://github.com/angelozerr/lsp4xml/pull/582).
23+
* cvc-pattern error range fix. See [#lsp4xml/580](https://github.com/angelozerr/lsp4xml/pull/580).
24+
325
## [0.9.1](https://github.com/redhat-developer/vscode-xml/milestone/11?closed=1) (October 17, 2019)
426

527
### Bug Fixes

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,17 @@ The following settings are supported:
7171
* `xml.validation.schema`: Set to `false` to disable schema validation. Defaults to `true`.
7272
* `xml.validation.noGrammar`: The message severity when a document has no associated grammar. Defaults to `hint`.
7373
* `xml.server.workDir`: Set an absolute path for all cached schemas to be stored. Defaults to `~/.lsp4xml`.
74-
75-
Since 0.8.0:
7674
* `xml.codeLens.enabled`: Enable/disable XML CodeLens. Default is `false`.
7775
* `xml.symbols.excluded`: Disable document symbols (Outline) for the given file name patterns. Updating file name patterns does not automatically reload the Outline view for the relevant file(s). Each file must either be reopened or changed, in order to trigger an Outline view reload.
7876

7977
Since 0.9.1:
8078
* `xml.validation.disallowDocTypeDecl`: Enable/disable if a fatal error is thrown if the incoming document contains a DOCTYPE declaration. Default is `false`.
8179
* `xml.validation.resolveExternalEntities`: Enable/disable resolve of external entities. Default is `false`.
80+
81+
Since 0.10.0:
82+
* `xml.mirrorCursorOnMatchingTag`: (Experimental) Enable/disable ability to simultaneously edit the start and end tag of an element. Default is `true`. Can be toggled on/off on Windows/Linux through `ctrl+shift+f2` and on Mac `cmd+shift+f2`.
83+
* **Note**: XML tag name completion is currently not working with mirror cursors on.
84+
* **Note**: In a multi-root workspace, cursors do not immediately enable or disable when editing XML files located in separate workspace folders.
8285

8386
## Custom XML Extensions
8487

0 commit comments

Comments
 (0)