Skip to content

Commit 134e3a2

Browse files
committed
(GH-567) Update Editor Services and Editor Syntax components
This commit updates the Editor Services to 0.22.0 and Editor Syntax to 1.3.4, and the relevant ChangeLog entries. This commit also adds the puppet.editorService.formatOnType.enable setting, which is introduced as part of Editor Services 0.22.0.
1 parent d810a30 commit 134e3a2

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,24 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9+
### Added
10+
11+
- ([GH-181](https://github.com/lingua-pupuli/puppet-editor-services/issues/181)) [puppet-editor-services-0.22.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.22.0) Added completion for resource-like class ([Julio Sueiras](https://github.com/juliosueiras))
12+
- ([GH-177](https://github.com/lingua-pupuli/puppet-editor-services/issues/177)) [puppet-editor-services-0.22.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.22.0) Add auto-align hash rocket formatter
13+
- ([GH-174](https://github.com/lingua-pupuli/puppet-editor-services/issues/174)) [puppet-editor-services-0.22.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.22.0) Understand Puppet Data Types and hover provider support
14+
15+
### Changed
16+
17+
- (maint) Convert gulp build script to psake
18+
19+
### Fixed
20+
21+
- ([GH-169](https://github.com/lingua-pupuli/puppet-editor-services/issues/169)) [puppet-editor-services-0.22.0](https://github.com/lingua-pupuli/puppet-editor-services/releases/tag/0.22.0) Respond to protocol dependant messages correctly
22+
- ([GH-48](https://github.com/lingua-pupuli/puppet-editor-syntax/issues/48)) [puppet-editor-syntax-1.3.4](https://github.com/lingua-pupuli/puppet-editor-syntax/releases/tag/1.3.4) Correctly tokenise if-else
23+
24+
### Removed
25+
926
- ([GH-557](https://github.com/lingua-pupuli/puppet-vscode/issues/557)) Remove Docker Connection Handler
10-
- [maint] Convert gulp build script to psake
1127

1228
## [0.20.0] - 2019-08-30
1329

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "0.20.0",
66
"editorComponents": {
77
"editorServices": {
8-
"release": "0.21.0"
8+
"release": "0.22.0"
99
},
1010
"editorSyntax": {
11-
"release": "1.3.3"
11+
"release": "1.3.4"
1212
}
1313
},
1414
"publisher": "jpogran",
@@ -335,6 +335,11 @@
335335
"default": [],
336336
"description": "An array of strings of experimental features to enable in the Puppet Editor Service"
337337
},
338+
"puppet.editorService.formatOnType.enable": {
339+
"type": "boolean",
340+
"default": false,
341+
"description": "Enable/disable the Puppet document on-type formatter, for example hashrocket alignment"
342+
},
338343
"puppet.editorService.hover.showMetadataInfo": {
339344
"type": "boolean",
340345
"default": true,

0 commit comments

Comments
 (0)