puppet-editor-services 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +510 -0
- data/CODEOWNERS +2 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/CONTRIBUTING.md +54 -0
- data/Gemfile +53 -0
- data/LICENSE +201 -0
- data/README.md +308 -0
- data/Rakefile +185 -0
- data/bin/puppet-debugserver +8 -0
- data/bin/puppet-languageserver +7 -0
- data/bin/puppet-languageserver-sidecar +7 -0
- data/lib/dsp/dsp.rb +7 -0
- data/lib/dsp/dsp_base.rb +62 -0
- data/lib/dsp/dsp_protocol.rb +4619 -0
- data/lib/lsp/lsp.rb +10 -0
- data/lib/lsp/lsp_base.rb +63 -0
- data/lib/lsp/lsp_custom.rb +170 -0
- data/lib/lsp/lsp_enums.rb +143 -0
- data/lib/lsp/lsp_protocol.rb +2785 -0
- data/lib/lsp/lsp_protocol_callhierarchy.proposed.rb +239 -0
- data/lib/lsp/lsp_protocol_colorprovider.rb +100 -0
- data/lib/lsp/lsp_protocol_configuration.rb +82 -0
- data/lib/lsp/lsp_protocol_declaration.rb +73 -0
- data/lib/lsp/lsp_protocol_foldingrange.rb +129 -0
- data/lib/lsp/lsp_protocol_implementation.rb +75 -0
- data/lib/lsp/lsp_protocol_progress.rb +200 -0
- data/lib/lsp/lsp_protocol_selectionrange.rb +79 -0
- data/lib/lsp/lsp_protocol_sematictokens.proposed.rb +340 -0
- data/lib/lsp/lsp_protocol_typedefinition.rb +75 -0
- data/lib/lsp/lsp_protocol_workspacefolders.rb +174 -0
- data/lib/lsp/lsp_types.rb +1534 -0
- data/lib/puppet-debugserver/debug_session/break_points.rb +137 -0
- data/lib/puppet-debugserver/debug_session/flow_control.rb +161 -0
- data/lib/puppet-debugserver/debug_session/hook_handlers.rb +295 -0
- data/lib/puppet-debugserver/debug_session/puppet_session_run_mode.rb +66 -0
- data/lib/puppet-debugserver/debug_session/puppet_session_state.rb +122 -0
- data/lib/puppet-debugserver/hooks.rb +132 -0
- data/lib/puppet-debugserver/message_handler.rb +277 -0
- data/lib/puppet-debugserver/puppet_debug_session.rb +541 -0
- data/lib/puppet-debugserver/puppet_monkey_patches.rb +118 -0
- data/lib/puppet-languageserver/client_session_state.rb +119 -0
- data/lib/puppet-languageserver/crash_dump.rb +50 -0
- data/lib/puppet-languageserver/epp/validation_provider.rb +34 -0
- data/lib/puppet-languageserver/facter_helper.rb +25 -0
- data/lib/puppet-languageserver/global_queues/sidecar_queue.rb +205 -0
- data/lib/puppet-languageserver/global_queues/single_instance_queue.rb +126 -0
- data/lib/puppet-languageserver/global_queues/validation_queue.rb +102 -0
- data/lib/puppet-languageserver/global_queues.rb +16 -0
- data/lib/puppet-languageserver/manifest/completion_provider.rb +331 -0
- data/lib/puppet-languageserver/manifest/definition_provider.rb +99 -0
- data/lib/puppet-languageserver/manifest/document_symbol_provider.rb +228 -0
- data/lib/puppet-languageserver/manifest/folding_provider.rb +226 -0
- data/lib/puppet-languageserver/manifest/format_on_type_provider.rb +143 -0
- data/lib/puppet-languageserver/manifest/hover_provider.rb +221 -0
- data/lib/puppet-languageserver/manifest/signature_provider.rb +169 -0
- data/lib/puppet-languageserver/manifest/validation_provider.rb +127 -0
- data/lib/puppet-languageserver/message_handler.rb +462 -0
- data/lib/puppet-languageserver/providers.rb +18 -0
- data/lib/puppet-languageserver/puppet_helper.rb +108 -0
- data/lib/puppet-languageserver/puppet_lexer_helper.rb +55 -0
- data/lib/puppet-languageserver/puppet_monkey_patches.rb +39 -0
- data/lib/puppet-languageserver/puppet_parser_helper.rb +212 -0
- data/lib/puppet-languageserver/puppetfile/validation_provider.rb +185 -0
- data/lib/puppet-languageserver/server_capabilities.rb +48 -0
- data/lib/puppet-languageserver/session_state/document_store.rb +272 -0
- data/lib/puppet-languageserver/session_state/language_client.rb +239 -0
- data/lib/puppet-languageserver/session_state/object_cache.rb +162 -0
- data/lib/puppet-languageserver/sidecar_protocol.rb +532 -0
- data/lib/puppet-languageserver/uri_helper.rb +46 -0
- data/lib/puppet-languageserver-sidecar/cache/base.rb +36 -0
- data/lib/puppet-languageserver-sidecar/cache/filesystem.rb +111 -0
- data/lib/puppet-languageserver-sidecar/cache/null.rb +27 -0
- data/lib/puppet-languageserver-sidecar/facter_helper.rb +41 -0
- data/lib/puppet-languageserver-sidecar/puppet_environment_monkey_patches.rb +52 -0
- data/lib/puppet-languageserver-sidecar/puppet_helper.rb +281 -0
- data/lib/puppet-languageserver-sidecar/puppet_modulepath_monkey_patches.rb +146 -0
- data/lib/puppet-languageserver-sidecar/puppet_monkey_patches.rb +9 -0
- data/lib/puppet-languageserver-sidecar/puppet_parser_helper.rb +77 -0
- data/lib/puppet-languageserver-sidecar/puppet_strings_helper.rb +399 -0
- data/lib/puppet-languageserver-sidecar/puppet_strings_monkey_patches.rb +16 -0
- data/lib/puppet-languageserver-sidecar/sidecar_protocol_extensions.rb +16 -0
- data/lib/puppet-languageserver-sidecar/workspace.rb +89 -0
- data/lib/puppet_debugserver.rb +164 -0
- data/lib/puppet_editor_services/connection/base.rb +62 -0
- data/lib/puppet_editor_services/connection/stdio.rb +25 -0
- data/lib/puppet_editor_services/connection/tcp.rb +34 -0
- data/lib/puppet_editor_services/handler/base.rb +16 -0
- data/lib/puppet_editor_services/handler/debug_adapter.rb +63 -0
- data/lib/puppet_editor_services/handler/json_rpc.rb +133 -0
- data/lib/puppet_editor_services/logging.rb +45 -0
- data/lib/puppet_editor_services/protocol/base.rb +27 -0
- data/lib/puppet_editor_services/protocol/debug_adapter.rb +135 -0
- data/lib/puppet_editor_services/protocol/debug_adapter_messages.rb +171 -0
- data/lib/puppet_editor_services/protocol/json_rpc.rb +241 -0
- data/lib/puppet_editor_services/protocol/json_rpc_messages.rb +200 -0
- data/lib/puppet_editor_services/server/base.rb +42 -0
- data/lib/puppet_editor_services/server/stdio.rb +85 -0
- data/lib/puppet_editor_services/server/tcp.rb +349 -0
- data/lib/puppet_editor_services/server.rb +15 -0
- data/lib/puppet_editor_services/version.rb +36 -0
- data/lib/puppet_editor_services.rb +8 -0
- data/lib/puppet_languageserver.rb +263 -0
- data/lib/puppet_languageserver_sidecar.rb +361 -0
- data/puppet-debugserver +11 -0
- data/puppet-editor-services.gemspec +29 -0
- data/puppet-languageserver +15 -0
- data/puppet-languageserver-sidecar +14 -0
- metadata +240 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 944afab7081ce0438e7a1e311772e6f6d9032e15247b1264a081dd3e5237e51f
|
|
4
|
+
data.tar.gz: e390b5eb4bd16b3928bef9c0a55a0f983db25ae6892c9cbad8cf20795e1f8cdb
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 926c54e85ef6b2e564a6f23dce007329a6d996acd275a12e7c9827d83a1df04f5d9dbb8f9256f06bd4f4a95466227ad91976402bf3435ac8f8e80265d5119eae
|
|
7
|
+
data.tar.gz: 6eb37b49fb9937e911b41cfad6287db1c6c41904c7be1d962d14660782c6fafca19ca686024b0cfb9c6d5849d9091019d0d6f39d5091bf37d9a868520db15f40
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,510 @@
|
|
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
|
2
|
+
# Changelog
|
|
3
|
+
|
|
4
|
+
All notable changes to this project will be documented in this file.
|
|
5
|
+
|
|
6
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
|
7
|
+
|
|
8
|
+
## [v2.0.4](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.4) - 2024-04-24
|
|
9
|
+
|
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v2.0.3...v2.0.4)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- CAT-1670 - Fix onTypeFormatting due to undefined variable json_rpc_handler [#376](https://github.com/puppetlabs/puppet-editor-services/pull/376) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
15
|
+
|
|
16
|
+
## [v2.0.3](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.3) - 2024-04-17
|
|
17
|
+
|
|
18
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v2.0.2...v2.0.3)
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- (bug) - Add synchronization to Dir.chdir in init_puppet_lint [#374](https://github.com/puppetlabs/puppet-editor-services/pull/374) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
23
|
+
|
|
24
|
+
## [v2.0.2](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.2) - 2024-04-15
|
|
25
|
+
|
|
26
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v2.0.1...v2.0.2)
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- (CAT-1669) - Add trailing comma to completion item [#372](https://github.com/puppetlabs/puppet-editor-services/pull/372) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
31
|
+
|
|
32
|
+
## [v2.0.1](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.1) - 2024-02-14
|
|
33
|
+
|
|
34
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v2.0.0...v2.0.1)
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- (Dependencies) - Upgrade puppet-lint to v4.2.4 & puppet-strings to v4.1.2 [#370](https://github.com/puppetlabs/puppet-editor-services/pull/370) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
39
|
+
|
|
40
|
+
## [v2.0.0](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.0) - 2023-11-27
|
|
41
|
+
|
|
42
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v1.3.1...v2.0.0)
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
- (CAT-1430) - Drop ruby 2.5 Support & Add Ruby 3.x Support [#348](https://github.com/puppetlabs/puppet-editor-services/pull/348) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- (maint) - Write file type definitions to tempfile [#359](https://github.com/puppetlabs/puppet-editor-services/pull/359) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
50
|
+
- (CAT-1595) - Remove diagnostic on textDoucment onDidClose [#356](https://github.com/puppetlabs/puppet-editor-services/pull/356) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
51
|
+
- (CAT-1493) - Fix missing file resource type parameters [#353](https://github.com/puppetlabs/puppet-editor-services/pull/353) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
52
|
+
|
|
53
|
+
## [v1.3.1](https://github.com/puppetlabs/puppet-editor-services/tree/v1.3.1) - 2023-03-15
|
|
54
|
+
|
|
55
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.3.0...v1.3.1)
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- GH-318 Used a realpath for load dependencies. [#326](https://github.com/puppetlabs/puppet-editor-services/pull/326) ([bit0rez](https://github.com/bit0rez))
|
|
60
|
+
- Fix `NoMethodError` in puppet_strings_helper.rb [#322](https://github.com/puppetlabs/puppet-editor-services/pull/322) ([scoiatael](https://github.com/scoiatael))
|
|
61
|
+
- (GH-320) Handle @param tags for non-existent params [#321](https://github.com/puppetlabs/puppet-editor-services/pull/321) ([h4l](https://github.com/h4l))
|
|
62
|
+
|
|
63
|
+
## [1.3.0](https://github.com/puppetlabs/puppet-editor-services/tree/1.3.0) - 2021-09-30
|
|
64
|
+
|
|
65
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.2.0...1.3.0)
|
|
66
|
+
|
|
67
|
+
### Fixed
|
|
68
|
+
|
|
69
|
+
- (GH-311) Explicitly require Facter [#312](https://github.com/puppetlabs/puppet-editor-services/pull/312) ([da-ar](https://github.com/da-ar))
|
|
70
|
+
|
|
71
|
+
### Other
|
|
72
|
+
|
|
73
|
+
- (GH-313) Prepare 1.3.0 Release [#314](https://github.com/puppetlabs/puppet-editor-services/pull/314) ([da-ar](https://github.com/da-ar))
|
|
74
|
+
|
|
75
|
+
## [1.2.0](https://github.com/puppetlabs/puppet-editor-services/tree/1.2.0) - 2021-05-28
|
|
76
|
+
|
|
77
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.1.0...1.2.0)
|
|
78
|
+
|
|
79
|
+
### Added
|
|
80
|
+
|
|
81
|
+
- (maint) Add port 9000 for dev. container [#307](https://github.com/puppetlabs/puppet-editor-services/pull/307) ([glennsarti](https://github.com/glennsarti))
|
|
82
|
+
- (GH-306) Add a syntax aware code folding provider [#302](https://github.com/puppetlabs/puppet-editor-services/pull/302) ([glennsarti](https://github.com/glennsarti))
|
|
83
|
+
|
|
84
|
+
### Fixed
|
|
85
|
+
|
|
86
|
+
- (GH-300) Return nil for bad hover requests [#301](https://github.com/puppetlabs/puppet-editor-services/pull/301) ([glennsarti](https://github.com/glennsarti))
|
|
87
|
+
- (GH-298) Fix tests for Facter 4.0.52 gem [#299](https://github.com/puppetlabs/puppet-editor-services/pull/299) ([glennsarti](https://github.com/glennsarti))
|
|
88
|
+
|
|
89
|
+
### Other
|
|
90
|
+
|
|
91
|
+
- (GH-309) Prepare 1.2.0 release [#308](https://github.com/puppetlabs/puppet-editor-services/pull/308) ([glennsarti](https://github.com/glennsarti))
|
|
92
|
+
- Fix small typo in README.md [#305](https://github.com/puppetlabs/puppet-editor-services/pull/305) ([vStone](https://github.com/vStone))
|
|
93
|
+
|
|
94
|
+
## [1.1.0](https://github.com/puppetlabs/puppet-editor-services/tree/1.1.0) - 2021-01-27
|
|
95
|
+
|
|
96
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.0.1...1.1.0)
|
|
97
|
+
|
|
98
|
+
### Other
|
|
99
|
+
|
|
100
|
+
- (GH-293) Prepare for 1.1.0 release [#294](https://github.com/puppetlabs/puppet-editor-services/pull/294) ([glennsarti](https://github.com/glennsarti))
|
|
101
|
+
- (GH-189) Fix module root for validation [#291](https://github.com/puppetlabs/puppet-editor-services/pull/291) ([glennsarti](https://github.com/glennsarti))
|
|
102
|
+
- (GH-289) Make Format On Type file size configurable [#290](https://github.com/puppetlabs/puppet-editor-services/pull/290) ([glennsarti](https://github.com/glennsarti))
|
|
103
|
+
- (maint) Use GitHub actions instead of Travis and Appveyor CI [#288](https://github.com/puppetlabs/puppet-editor-services/pull/288) ([glennsarti](https://github.com/glennsarti))
|
|
104
|
+
- (GH-189) Reset PuppetLint configuration for each call [#286](https://github.com/puppetlabs/puppet-editor-services/pull/286) ([glennsarti](https://github.com/glennsarti))
|
|
105
|
+
- (maint) Add codeowners file [#283](https://github.com/puppetlabs/puppet-editor-services/pull/283) ([jpogran](https://github.com/jpogran))
|
|
106
|
+
- (GH-282) Add Puppet 7 to CI testing [#281](https://github.com/puppetlabs/puppet-editor-services/pull/281) ([glennsarti](https://github.com/glennsarti))
|
|
107
|
+
|
|
108
|
+
## [1.0.1](https://github.com/puppetlabs/puppet-editor-services/tree/1.0.1) - 2020-11-04
|
|
109
|
+
|
|
110
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.0.0...1.0.1)
|
|
111
|
+
|
|
112
|
+
### Other
|
|
113
|
+
|
|
114
|
+
- (GH-279) Prepare for 1.0.1 release [#280](https://github.com/puppetlabs/puppet-editor-services/pull/280) ([glennsarti](https://github.com/glennsarti))
|
|
115
|
+
|
|
116
|
+
## [1.0.0](https://github.com/puppetlabs/puppet-editor-services/tree/1.0.0) - 2020-07-25
|
|
117
|
+
|
|
118
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.26.1...1.0.0)
|
|
119
|
+
|
|
120
|
+
### Other
|
|
121
|
+
|
|
122
|
+
- (GH-274) Release 1.0.0 [#275](https://github.com/puppetlabs/puppet-editor-services/pull/275) ([glennsarti](https://github.com/glennsarti))
|
|
123
|
+
- (GH-272) Puppet Lint and document symbol sometimes not working [#273](https://github.com/puppetlabs/puppet-editor-services/pull/273) ([glennsarti](https://github.com/glennsarti))
|
|
124
|
+
- (GH-269) Fix Workspace Symbol Provider [#271](https://github.com/puppetlabs/puppet-editor-services/pull/271) ([glennsarti](https://github.com/glennsarti))
|
|
125
|
+
- (maint) Update Puppetfile Resolver to 0.3.0 [#268](https://github.com/puppetlabs/puppet-editor-services/pull/268) ([glennsarti](https://github.com/glennsarti))
|
|
126
|
+
- (maint) Document removal of Puppet 4 [#265](https://github.com/puppetlabs/puppet-editor-services/pull/265) ([glennsarti](https://github.com/glennsarti))
|
|
127
|
+
- (GH-262) Merge 1.0 into master [#264](https://github.com/puppetlabs/puppet-editor-services/pull/264) ([glennsarti](https://github.com/glennsarti))
|
|
128
|
+
- (GH-262) Prepare 1.0 to be merged into master [#263](https://github.com/puppetlabs/puppet-editor-services/pull/263) ([glennsarti](https://github.com/glennsarti))
|
|
129
|
+
- (GH-256) Add acceptance tests for puppetfile resolver request [#260](https://github.com/puppetlabs/puppet-editor-services/pull/260) ([glennsarti](https://github.com/glennsarti))
|
|
130
|
+
|
|
131
|
+
## [0.26.1](https://github.com/puppetlabs/puppet-editor-services/tree/0.26.1) - 2020-06-05
|
|
132
|
+
|
|
133
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.26.0...0.26.1)
|
|
134
|
+
|
|
135
|
+
### Added
|
|
136
|
+
|
|
137
|
+
- (GH-256) Puppetfile dependency endpoint [#255](https://github.com/puppetlabs/puppet-editor-services/pull/255) ([jpogran](https://github.com/jpogran))
|
|
138
|
+
|
|
139
|
+
### Fixed
|
|
140
|
+
|
|
141
|
+
- (maint) Pin Rubocop to < 0.84.0 [#253](https://github.com/puppetlabs/puppet-editor-services/pull/253) ([glennsarti](https://github.com/glennsarti))
|
|
142
|
+
|
|
143
|
+
### Other
|
|
144
|
+
|
|
145
|
+
- (maint) Remove vendored gems [#251](https://github.com/puppetlabs/puppet-editor-services/pull/251) ([glennsarti](https://github.com/glennsarti))
|
|
146
|
+
- (maint) Mergeup master into 1.0 [#250](https://github.com/puppetlabs/puppet-editor-services/pull/250) ([glennsarti](https://github.com/glennsarti))
|
|
147
|
+
- (GH-252) Remove puppetstrings featureflag and remove support for Puppet 4 [#247](https://github.com/puppetlabs/puppet-editor-services/pull/247) ([glennsarti](https://github.com/glennsarti))
|
|
148
|
+
|
|
149
|
+
## [0.26.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.26.0) - 2020-04-29
|
|
150
|
+
|
|
151
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.25.0...0.26.0)
|
|
152
|
+
|
|
153
|
+
### Added
|
|
154
|
+
|
|
155
|
+
- (GH-245) Use object cache for fact data [#246](https://github.com/puppetlabs/puppet-editor-services/pull/246) ([glennsarti](https://github.com/glennsarti))
|
|
156
|
+
- GH 242 facts endpoint [#243](https://github.com/puppetlabs/puppet-editor-services/pull/243) ([jpogran](https://github.com/jpogran))
|
|
157
|
+
- (GH-209) Refactor the session state to be a class and pass that instead of global modules [#210](https://github.com/puppetlabs/puppet-editor-services/pull/210) ([glennsarti](https://github.com/glennsarti))
|
|
158
|
+
|
|
159
|
+
### Fixed
|
|
160
|
+
|
|
161
|
+
- (GH-238) Monkey patch Facter for minimal resets [#239](https://github.com/puppetlabs/puppet-editor-services/pull/239) ([glennsarti](https://github.com/glennsarti))
|
|
162
|
+
|
|
163
|
+
### Other
|
|
164
|
+
|
|
165
|
+
- Revert "(GH-238) Monkey patch Facter for minimal resets" [#241](https://github.com/puppetlabs/puppet-editor-services/pull/241) ([jpogran](https://github.com/jpogran))
|
|
166
|
+
- (maint) Update rubocop to 0.80.x [#234](https://github.com/puppetlabs/puppet-editor-services/pull/234) ([glennsarti](https://github.com/glennsarti))
|
|
167
|
+
- (maint) Mergeback master into 1.0 [#233](https://github.com/puppetlabs/puppet-editor-services/pull/233) ([glennsarti](https://github.com/glennsarti))
|
|
168
|
+
- (maint) Update Bolt static data and Protocol definitions [#232](https://github.com/puppetlabs/puppet-editor-services/pull/232) ([glennsarti](https://github.com/glennsarti))
|
|
169
|
+
- (maint) Update README for new repo [#231](https://github.com/puppetlabs/puppet-editor-services/pull/231) ([glennsarti](https://github.com/glennsarti))
|
|
170
|
+
- (maint) Mergeback master into 1.0 [#230](https://github.com/puppetlabs/puppet-editor-services/pull/230) ([glennsarti](https://github.com/glennsarti))
|
|
171
|
+
- (GH-168) Add acceptance tests [#229](https://github.com/puppetlabs/puppet-editor-services/pull/229) ([glennsarti](https://github.com/glennsarti))
|
|
172
|
+
- (maint) mergeback master into 1.0 [#228](https://github.com/puppetlabs/puppet-editor-services/pull/228) ([glennsarti](https://github.com/glennsarti))
|
|
173
|
+
|
|
174
|
+
## [0.25.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.25.0) - 2020-03-26
|
|
175
|
+
|
|
176
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.24.0...0.25.0)
|
|
177
|
+
|
|
178
|
+
### Added
|
|
179
|
+
|
|
180
|
+
- (GH-221) Puppet Node Graph Response [#226](https://github.com/puppetlabs/puppet-editor-services/pull/226) ([jpogran](https://github.com/jpogran))
|
|
181
|
+
|
|
182
|
+
### Fixed
|
|
183
|
+
|
|
184
|
+
- (GH-207) Allow Qualified Resource Names in hover provider [#225](https://github.com/puppetlabs/puppet-editor-services/pull/225) ([glennsarti](https://github.com/glennsarti))
|
|
185
|
+
|
|
186
|
+
### Other
|
|
187
|
+
|
|
188
|
+
- (maint) Update puppetfile-resolver to 0.2.0 [#220](https://github.com/puppetlabs/puppet-editor-services/pull/220) ([glennsarti](https://github.com/glennsarti))
|
|
189
|
+
- (maint) Allow travis to build 1.0 branch [#219](https://github.com/puppetlabs/puppet-editor-services/pull/219) ([glennsarti](https://github.com/glennsarti))
|
|
190
|
+
- (maint) Mergeback master into 1.0 [#218](https://github.com/puppetlabs/puppet-editor-services/pull/218) ([glennsarti](https://github.com/glennsarti))
|
|
191
|
+
|
|
192
|
+
## [0.24.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.24.0) - 2020-01-28
|
|
193
|
+
|
|
194
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.23.0...0.24.0)
|
|
195
|
+
|
|
196
|
+
### Added
|
|
197
|
+
|
|
198
|
+
- (GH-213) Gather facts using the Sidecar [#214](https://github.com/puppetlabs/puppet-editor-services/pull/214) ([glennsarti](https://github.com/glennsarti))
|
|
199
|
+
|
|
200
|
+
### Other
|
|
201
|
+
|
|
202
|
+
- (maint) Prepare for 0.24.0 release [#217](https://github.com/puppetlabs/puppet-editor-services/pull/217) ([glennsarti](https://github.com/glennsarti))
|
|
203
|
+
- (GH-199) Update stack trace tests for Puppet 5.5.18 [#216](https://github.com/puppetlabs/puppet-editor-services/pull/216) ([glennsarti](https://github.com/glennsarti))
|
|
204
|
+
- (GH-213) Use Facts from the Sidecar [#215](https://github.com/puppetlabs/puppet-editor-services/pull/215) ([glennsarti](https://github.com/glennsarti))
|
|
205
|
+
|
|
206
|
+
## [0.23.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.23.0) - 2019-12-04
|
|
207
|
+
|
|
208
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.22.0...0.23.0)
|
|
209
|
+
|
|
210
|
+
### Added
|
|
211
|
+
|
|
212
|
+
- (GH-94) Extract Bolt module metadata and use within Plans [#190](https://github.com/puppetlabs/puppet-editor-services/pull/190) ([glennsarti](https://github.com/glennsarti))
|
|
213
|
+
|
|
214
|
+
### Other
|
|
215
|
+
|
|
216
|
+
- (maint) Prepare for 0.23.0 release [#206](https://github.com/puppetlabs/puppet-editor-services/pull/206) ([glennsarti](https://github.com/glennsarti))
|
|
217
|
+
- (maint) Update for Rubocop 0.77.0 [#205](https://github.com/puppetlabs/puppet-editor-services/pull/205) ([glennsarti](https://github.com/glennsarti))
|
|
218
|
+
- (GH-139) Provide completions for defined types [#204](https://github.com/puppetlabs/puppet-editor-services/pull/204) ([glennsarti](https://github.com/glennsarti))
|
|
219
|
+
- (GH-201) Fix hashrocket alignment in multi-resource declarations [#202](https://github.com/puppetlabs/puppet-editor-services/pull/202) ([glennsarti](https://github.com/glennsarti))
|
|
220
|
+
- (GH-199) Monkey Patch the Null Loader [#200](https://github.com/puppetlabs/puppet-editor-services/pull/200) ([glennsarti](https://github.com/glennsarti))
|
|
221
|
+
- (GH-198) Use the PuppetFile Resolver for validation [#197](https://github.com/puppetlabs/puppet-editor-services/pull/197) ([glennsarti](https://github.com/glennsarti))
|
|
222
|
+
|
|
223
|
+
## [0.22.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.22.0) - 2019-09-24
|
|
224
|
+
|
|
225
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.21.0...0.22.0)
|
|
226
|
+
|
|
227
|
+
### Added
|
|
228
|
+
|
|
229
|
+
- (GH-177) Add ability to fetch the client configuration [#179](https://github.com/puppetlabs/puppet-editor-services/pull/179) ([glennsarti](https://github.com/glennsarti))
|
|
230
|
+
|
|
231
|
+
### Fixed
|
|
232
|
+
|
|
233
|
+
- (maint) Send Language Server version in version request [#178](https://github.com/puppetlabs/puppet-editor-services/pull/178) ([glennsarti](https://github.com/glennsarti))
|
|
234
|
+
|
|
235
|
+
### Other
|
|
236
|
+
|
|
237
|
+
- (GH-187) Prepare for 0.22.0 release [#188](https://github.com/puppetlabs/puppet-editor-services/pull/188) ([glennsarti](https://github.com/glennsarti))
|
|
238
|
+
- (GH-177) Add auto-align hash rocket feature [#186](https://github.com/puppetlabs/puppet-editor-services/pull/186) ([glennsarti](https://github.com/glennsarti))
|
|
239
|
+
- (GH-177) Add registrations and settings for on type formatting [#185](https://github.com/puppetlabs/puppet-editor-services/pull/185) ([glennsarti](https://github.com/glennsarti))
|
|
240
|
+
- (GH-177) Dynamically unregister capabilities [#184](https://github.com/puppetlabs/puppet-editor-services/pull/184) ([glennsarti](https://github.com/glennsarti))
|
|
241
|
+
- Added completion for resource-like class [#180](https://github.com/puppetlabs/puppet-editor-services/pull/180) ([juliosueiras](https://github.com/juliosueiras))
|
|
242
|
+
- (GH-174) Understand Puppet Data Types [#175](https://github.com/puppetlabs/puppet-editor-services/pull/175) ([glennsarti](https://github.com/glennsarti))
|
|
243
|
+
|
|
244
|
+
## [0.21.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.21.0) - 2019-08-26
|
|
245
|
+
|
|
246
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.20.0...0.21.0)
|
|
247
|
+
|
|
248
|
+
### Added
|
|
249
|
+
|
|
250
|
+
- (GH-106) Update puppet-lint to 2.3.6 [#154](https://github.com/puppetlabs/puppet-editor-services/pull/154) ([glennsarti](https://github.com/glennsarti))
|
|
251
|
+
- (GH-144) Add signature help provider feature [#145](https://github.com/puppetlabs/puppet-editor-services/pull/145) ([glennsarti](https://github.com/glennsarti))
|
|
252
|
+
|
|
253
|
+
### Other
|
|
254
|
+
|
|
255
|
+
- (GH-170) Prepare for 0.21.0 release [#171](https://github.com/puppetlabs/puppet-editor-services/pull/171) ([glennsarti](https://github.com/glennsarti))
|
|
256
|
+
- (GH-167) Refactor Language Server inmemory caching [#166](https://github.com/puppetlabs/puppet-editor-services/pull/166) ([glennsarti](https://github.com/glennsarti))
|
|
257
|
+
- (GH-163) Use aggregate metadata actions for puppetstrings feature flag [#165](https://github.com/puppetlabs/puppet-editor-services/pull/165) ([glennsarti](https://github.com/glennsarti))
|
|
258
|
+
- (GH-163) Add aggregate metadata sidecar object and tasks [#162](https://github.com/puppetlabs/puppet-editor-services/pull/162) ([glennsarti](https://github.com/glennsarti))
|
|
259
|
+
- (maint) Add tests for roundtripping hash serialisation [#161](https://github.com/puppetlabs/puppet-editor-services/pull/161) ([glennsarti](https://github.com/glennsarti))
|
|
260
|
+
- (maint) Fix integration test [#160](https://github.com/puppetlabs/puppet-editor-services/pull/160) ([glennsarti](https://github.com/glennsarti))
|
|
261
|
+
- Revert "(maint) Pin YARD to 0.9.19" [#159](https://github.com/puppetlabs/puppet-editor-services/pull/159) ([glennsarti](https://github.com/glennsarti))
|
|
262
|
+
- (GH-55) Allow Debug Server to work with Puppet 6 [#158](https://github.com/puppetlabs/puppet-editor-services/pull/158) ([glennsarti](https://github.com/glennsarti))
|
|
263
|
+
- (GH-55) Refactor Test Debug Client and add test for Next [#157](https://github.com/puppetlabs/puppet-editor-services/pull/157) ([glennsarti](https://github.com/glennsarti))
|
|
264
|
+
- (maint) A bunch of maintenance fixes [#156](https://github.com/puppetlabs/puppet-editor-services/pull/156) ([glennsarti](https://github.com/glennsarti))
|
|
265
|
+
|
|
266
|
+
## [0.20.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.20.0) - 2019-07-12
|
|
267
|
+
|
|
268
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.19.1...0.20.0)
|
|
269
|
+
|
|
270
|
+
### Added
|
|
271
|
+
|
|
272
|
+
- (GH-141) Modify the Puppet Function loading to use all of the new Puppet 4 API features [#142](https://github.com/puppetlabs/puppet-editor-services/pull/142) ([glennsarti](https://github.com/glennsarti))
|
|
273
|
+
- (GH-137) Load Puppet Custom Types, Defined Types and Classes via Puppet API v4 [#138](https://github.com/puppetlabs/puppet-editor-services/pull/138) ([glennsarti](https://github.com/glennsarti))
|
|
274
|
+
- (GH-121) Load Puppet Functions via Puppet API v4 and present as Puppet API v3 functions [#126](https://github.com/puppetlabs/puppet-editor-services/pull/126) ([glennsarti](https://github.com/glennsarti))
|
|
275
|
+
|
|
276
|
+
### Fixed
|
|
277
|
+
|
|
278
|
+
- (GH-147) Gracefully fail on LoadError when compiling manifests [#151](https://github.com/puppetlabs/puppet-editor-services/pull/151) ([glennsarti](https://github.com/glennsarti))
|
|
279
|
+
- (maint) Pin YARD to 0.9.19 [#150](https://github.com/puppetlabs/puppet-editor-services/pull/150) ([glennsarti](https://github.com/glennsarti))
|
|
280
|
+
- (GH-128) Detect Puppet Plan files correctly [#149](https://github.com/puppetlabs/puppet-editor-services/pull/149) ([glennsarti](https://github.com/glennsarti))
|
|
281
|
+
- (maint) Fix typo in test descriptions [#143](https://github.com/puppetlabs/puppet-editor-services/pull/143) ([glennsarti](https://github.com/glennsarti))
|
|
282
|
+
|
|
283
|
+
### Other
|
|
284
|
+
|
|
285
|
+
- (GH-152) Release 0.20.0 [#153](https://github.com/puppetlabs/puppet-editor-services/pull/153) ([jpogran](https://github.com/jpogran))
|
|
286
|
+
- (maint) Refactor in-memory cache objects [#140](https://github.com/puppetlabs/puppet-editor-services/pull/140) ([glennsarti](https://github.com/glennsarti))
|
|
287
|
+
|
|
288
|
+
## [0.19.1](https://github.com/puppetlabs/puppet-editor-services/tree/0.19.1) - 2019-05-30
|
|
289
|
+
|
|
290
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.19.0...0.19.1)
|
|
291
|
+
|
|
292
|
+
### Added
|
|
293
|
+
|
|
294
|
+
- (GH-118) Fail gracefully when critical gems cannot load [#134](https://github.com/puppetlabs/puppet-editor-services/pull/134) ([glennsarti](https://github.com/glennsarti))
|
|
295
|
+
|
|
296
|
+
### Fixed
|
|
297
|
+
|
|
298
|
+
- (GH-132) Suppress $stdout usage for STDIO transport [#133](https://github.com/puppetlabs/puppet-editor-services/pull/133) ([glennsarti](https://github.com/glennsarti))
|
|
299
|
+
|
|
300
|
+
### Other
|
|
301
|
+
|
|
302
|
+
- (maint) Prepare for 0.19.1 release [#136](https://github.com/puppetlabs/puppet-editor-services/pull/136) ([glennsarti](https://github.com/glennsarti))
|
|
303
|
+
- (maint) Update for rubocop errors [#125](https://github.com/puppetlabs/puppet-editor-services/pull/125) ([glennsarti](https://github.com/glennsarti))
|
|
304
|
+
- (maint) Update for rubocop errors [#124](https://github.com/puppetlabs/puppet-editor-services/pull/124) ([glennsarti](https://github.com/glennsarti))
|
|
305
|
+
- (maint) Update for rubocop errors [#119](https://github.com/puppetlabs/puppet-editor-services/pull/119) ([glennsarti](https://github.com/glennsarti))
|
|
306
|
+
|
|
307
|
+
## [0.19.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.19.0) - 2019-03-24
|
|
308
|
+
|
|
309
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.18.0...0.19.0)
|
|
310
|
+
|
|
311
|
+
### Added
|
|
312
|
+
|
|
313
|
+
- (GH-111) Add --puppet-version command line argument [#112](https://github.com/puppetlabs/puppet-editor-services/pull/112) ([glennsarti](https://github.com/glennsarti))
|
|
314
|
+
- (GH-110) Used generate ruby types from LSP Typescript node modules [#57](https://github.com/puppetlabs/puppet-editor-services/pull/57) ([glennsarti](https://github.com/glennsarti))
|
|
315
|
+
|
|
316
|
+
### Fixed
|
|
317
|
+
|
|
318
|
+
- (GH-113) Rescue errors when running Facter 2.x [#114](https://github.com/puppetlabs/puppet-editor-services/pull/114) ([glennsarti](https://github.com/glennsarti))
|
|
319
|
+
|
|
320
|
+
### Other
|
|
321
|
+
|
|
322
|
+
- (GH-115) Prepare for 0.19.0 release [#116](https://github.com/puppetlabs/puppet-editor-services/pull/116) ([glennsarti](https://github.com/glennsarti))
|
|
323
|
+
- (maint) Fix typo for UTF8 file output [#108](https://github.com/puppetlabs/puppet-editor-services/pull/108) ([glennsarti](https://github.com/glennsarti))
|
|
324
|
+
|
|
325
|
+
## [0.18.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.18.0) - 2019-02-05
|
|
326
|
+
|
|
327
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.17.0...0.18.0)
|
|
328
|
+
|
|
329
|
+
### Added
|
|
330
|
+
|
|
331
|
+
- (GH-24) Allow parsing in tasks mode [#93](https://github.com/puppetlabs/puppet-editor-services/pull/93) ([glennsarti](https://github.com/glennsarti))
|
|
332
|
+
|
|
333
|
+
### Other
|
|
334
|
+
|
|
335
|
+
- (GH-99) Prepre for 0.18.0 release [#100](https://github.com/puppetlabs/puppet-editor-services/pull/100) ([glennsarti](https://github.com/glennsarti))
|
|
336
|
+
- (maint) Fix validation of puppetfiles [#92](https://github.com/puppetlabs/puppet-editor-services/pull/92) ([glennsarti](https://github.com/glennsarti))
|
|
337
|
+
|
|
338
|
+
## [0.17.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.17.0) - 2018-12-17
|
|
339
|
+
|
|
340
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.16.0...0.17.0)
|
|
341
|
+
|
|
342
|
+
### Added
|
|
343
|
+
|
|
344
|
+
- (GH-35) Update Language Server command arguments to be like Sidecar [#87](https://github.com/puppetlabs/puppet-editor-services/pull/87) ([glennsarti](https://github.com/glennsarti))
|
|
345
|
+
- (GH-88) Add workspace symbols provider [#86](https://github.com/puppetlabs/puppet-editor-services/pull/86) ([glennsarti](https://github.com/glennsarti))
|
|
346
|
+
- (GH-20) Add support for control repos in the Sidecar [#85](https://github.com/puppetlabs/puppet-editor-services/pull/85) ([glennsarti](https://github.com/glennsarti))
|
|
347
|
+
|
|
348
|
+
### Other
|
|
349
|
+
|
|
350
|
+
- (GH-90) Prepare for 0.17.0 release [#91](https://github.com/puppetlabs/puppet-editor-services/pull/91) ([glennsarti](https://github.com/glennsarti))
|
|
351
|
+
|
|
352
|
+
## [0.16.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.16.0) - 2018-11-30
|
|
353
|
+
|
|
354
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.15.1...0.16.0)
|
|
355
|
+
|
|
356
|
+
### Added
|
|
357
|
+
|
|
358
|
+
- (GH-34) Parse class and defined type parameters [#79](https://github.com/puppetlabs/puppet-editor-services/pull/79) ([glennsarti](https://github.com/glennsarti))
|
|
359
|
+
- (GH-68) Load workspace information on initial start and on document saving [#77](https://github.com/puppetlabs/puppet-editor-services/pull/77) ([glennsarti](https://github.com/glennsarti))
|
|
360
|
+
- (GH-75) Add Node completion snippet [#76](https://github.com/puppetlabs/puppet-editor-services/pull/76) ([glennsarti](https://github.com/glennsarti))
|
|
361
|
+
- (GH-69) Fix rubocop violations from version 0.60.0 [#74](https://github.com/puppetlabs/puppet-editor-services/pull/74) ([glennsarti](https://github.com/glennsarti))
|
|
362
|
+
- (GH-67) Make resource completion smarter [#73](https://github.com/puppetlabs/puppet-editor-services/pull/73) ([glennsarti](https://github.com/glennsarti))
|
|
363
|
+
|
|
364
|
+
### Other
|
|
365
|
+
|
|
366
|
+
- (GH-80) Update changelog for Keep a Changelog format [#84](https://github.com/puppetlabs/puppet-editor-services/pull/84) ([glennsarti](https://github.com/glennsarti))
|
|
367
|
+
- (MAINT) Fix release version to 0.16.0 [#83](https://github.com/puppetlabs/puppet-editor-services/pull/83) ([michaeltlombardi](https://github.com/michaeltlombardi))
|
|
368
|
+
- (GH-80) Release 0.16.0 [#81](https://github.com/puppetlabs/puppet-editor-services/pull/81) ([jpogran](https://github.com/jpogran))
|
|
369
|
+
- (maint) Remove redundant code [#78](https://github.com/puppetlabs/puppet-editor-services/pull/78) ([glennsarti](https://github.com/glennsarti))
|
|
370
|
+
|
|
371
|
+
## [0.15.1](https://github.com/puppetlabs/puppet-editor-services/tree/0.15.1) - 2018-10-31
|
|
372
|
+
|
|
373
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.15.0...0.15.1)
|
|
374
|
+
|
|
375
|
+
### Added
|
|
376
|
+
|
|
377
|
+
- (GH-55) Disable the Debug Server on Puppet 6 [#63](https://github.com/puppetlabs/puppet-editor-services/pull/63) ([glennsarti](https://github.com/glennsarti))
|
|
378
|
+
|
|
379
|
+
### Fixed
|
|
380
|
+
|
|
381
|
+
- (GH-66) Fix go to definition [#65](https://github.com/puppetlabs/puppet-editor-services/pull/65) ([jpogran](https://github.com/jpogran))
|
|
382
|
+
- (maint) Update CI badges [#64](https://github.com/puppetlabs/puppet-editor-services/pull/64) ([glennsarti](https://github.com/glennsarti))
|
|
383
|
+
|
|
384
|
+
### Other
|
|
385
|
+
|
|
386
|
+
- (GH-71) Release 0.15.1 [#72](https://github.com/puppetlabs/puppet-editor-services/pull/72) ([jpogran](https://github.com/jpogran))
|
|
387
|
+
- (GH-69) Pin rubocop to < 0.60.0 [#70](https://github.com/puppetlabs/puppet-editor-services/pull/70) ([glennsarti](https://github.com/glennsarti))
|
|
388
|
+
|
|
389
|
+
## [0.15.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.15.0) - 2018-10-17
|
|
390
|
+
|
|
391
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.14.0...0.15.0)
|
|
392
|
+
|
|
393
|
+
### Added
|
|
394
|
+
|
|
395
|
+
- (GH-56) OutLineView [#59](https://github.com/puppetlabs/puppet-editor-services/pull/59) ([jpogran](https://github.com/jpogran))
|
|
396
|
+
- (GH-40) Create sidecar process to enumerate puppet types, classes, functions, node graph and puppet resource [#42](https://github.com/puppetlabs/puppet-editor-services/pull/42) ([glennsarti](https://github.com/glennsarti))
|
|
397
|
+
|
|
398
|
+
### Other
|
|
399
|
+
|
|
400
|
+
- (maint) Prepare for 0.15.0 release [#62](https://github.com/puppetlabs/puppet-editor-services/pull/62) ([glennsarti](https://github.com/glennsarti))
|
|
401
|
+
- (maint) Fix rubocop [#58](https://github.com/puppetlabs/puppet-editor-services/pull/58) ([glennsarti](https://github.com/glennsarti))
|
|
402
|
+
- (GH-54) Support Puppet 6 in the Language Server [#53](https://github.com/puppetlabs/puppet-editor-services/pull/53) ([glennsarti](https://github.com/glennsarti))
|
|
403
|
+
- (GH-40) Use sidecar process to enumerate puppet types, classes, functions, node graph and puppet resource [#45](https://github.com/puppetlabs/puppet-editor-services/pull/45) ([glennsarti](https://github.com/glennsarti))
|
|
404
|
+
|
|
405
|
+
## [0.14.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.14.0) - 2018-08-17
|
|
406
|
+
|
|
407
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.13.0...0.14.0)
|
|
408
|
+
|
|
409
|
+
### Fixed
|
|
410
|
+
|
|
411
|
+
- (GH-49) Exit STDIO loop if STDIN reaches EOF [#50](https://github.com/puppetlabs/puppet-editor-services/pull/50) ([glennsarti](https://github.com/glennsarti))
|
|
412
|
+
|
|
413
|
+
### Other
|
|
414
|
+
|
|
415
|
+
- (MAINT) Release prep for 0.14.0 [#52](https://github.com/puppetlabs/puppet-editor-services/pull/52) ([michaeltlombardi](https://github.com/michaeltlombardi))
|
|
416
|
+
|
|
417
|
+
## [0.13.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.13.0) - 2018-07-24
|
|
418
|
+
|
|
419
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.12.0...0.13.0)
|
|
420
|
+
|
|
421
|
+
### Fixed
|
|
422
|
+
|
|
423
|
+
- (GH-46) Detect Puppet Environment correctly [#47](https://github.com/puppetlabs/puppet-editor-services/pull/47) ([glennsarti](https://github.com/glennsarti))
|
|
424
|
+
- (maint) Force rubocop to only use project config [#44](https://github.com/puppetlabs/puppet-editor-services/pull/44) ([glennsarti](https://github.com/glennsarti))
|
|
425
|
+
- (GH-31) Use canonical names for line based breakpoints [#37](https://github.com/puppetlabs/puppet-editor-services/pull/37) ([glennsarti](https://github.com/glennsarti))
|
|
426
|
+
|
|
427
|
+
### Other
|
|
428
|
+
|
|
429
|
+
- (maint) Prepare for v0.13.0 release [#48](https://github.com/puppetlabs/puppet-editor-services/pull/48) ([glennsarti](https://github.com/glennsarti))
|
|
430
|
+
- (maint) Update for minor rubocop fixes [#39](https://github.com/puppetlabs/puppet-editor-services/pull/39) ([glennsarti](https://github.com/glennsarti))
|
|
431
|
+
- (GH-36) Use automatic port assignment as default [#38](https://github.com/puppetlabs/puppet-editor-services/pull/38) ([glennsarti](https://github.com/glennsarti))
|
|
432
|
+
|
|
433
|
+
## [0.12.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.12.0) - 2018-06-01
|
|
434
|
+
|
|
435
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.11.0...0.12.0)
|
|
436
|
+
|
|
437
|
+
### Added
|
|
438
|
+
|
|
439
|
+
- (maint) Minor rubocop fixes [#30](https://github.com/puppetlabs/puppet-editor-services/pull/30) ([glennsarti](https://github.com/glennsarti))
|
|
440
|
+
- (GH-28) Add basic puppetfile support [#25](https://github.com/puppetlabs/puppet-editor-services/pull/25) ([glennsarti](https://github.com/glennsarti))
|
|
441
|
+
- (GH-22) Refactor lang server [#23](https://github.com/puppetlabs/puppet-editor-services/pull/23) ([glennsarti](https://github.com/glennsarti))
|
|
442
|
+
|
|
443
|
+
### Fixed
|
|
444
|
+
|
|
445
|
+
- (GH-10)(GH-14) Fix unix loading for language server [#15](https://github.com/puppetlabs/puppet-editor-services/pull/15) ([glennsarti](https://github.com/glennsarti))
|
|
446
|
+
|
|
447
|
+
### Other
|
|
448
|
+
|
|
449
|
+
- (maint) Prepare for 0.12.0 release [#32](https://github.com/puppetlabs/puppet-editor-services/pull/32) ([glennsarti](https://github.com/glennsarti))
|
|
450
|
+
- (GH-26) Refactor workspace detection for control repos and modules [#29](https://github.com/puppetlabs/puppet-editor-services/pull/29) ([glennsarti](https://github.com/glennsarti))
|
|
451
|
+
- (maint) Add doc on how to do a release [#13](https://github.com/puppetlabs/puppet-editor-services/pull/13) ([glennsarti](https://github.com/glennsarti))
|
|
452
|
+
|
|
453
|
+
## [0.11.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.11.0) - 2018-04-26
|
|
454
|
+
|
|
455
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.10.0...0.11.0)
|
|
456
|
+
|
|
457
|
+
### Other
|
|
458
|
+
|
|
459
|
+
- (maint) Prepare for version 0.11.0 release [#12](https://github.com/puppetlabs/puppet-editor-services/pull/12) ([glennsarti](https://github.com/glennsarti))
|
|
460
|
+
- (GH-11) Refactor transport layer and fix STDIO server [#9](https://github.com/puppetlabs/puppet-editor-services/pull/9) ([glennsarti](https://github.com/glennsarti))
|
|
461
|
+
- (doc) Update README with Editor Services [#8](https://github.com/puppetlabs/puppet-editor-services/pull/8) ([glennsarti](https://github.com/glennsarti))
|
|
462
|
+
- (maint) Add a packaging process [#7](https://github.com/puppetlabs/puppet-editor-services/pull/7) ([glennsarti](https://github.com/glennsarti))
|
|
463
|
+
|
|
464
|
+
## [0.10.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.10.0) - 2018-04-04
|
|
465
|
+
|
|
466
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.9.0...0.10.0)
|
|
467
|
+
|
|
468
|
+
## [0.9.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.9.0) - 2018-04-04
|
|
469
|
+
|
|
470
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.8.0...0.9.0)
|
|
471
|
+
|
|
472
|
+
## [0.8.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.8.0) - 2018-04-04
|
|
473
|
+
|
|
474
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.7.2...0.8.0)
|
|
475
|
+
|
|
476
|
+
## [0.7.2](https://github.com/puppetlabs/puppet-editor-services/tree/0.7.2) - 2018-04-04
|
|
477
|
+
|
|
478
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.7.1...0.7.2)
|
|
479
|
+
|
|
480
|
+
## [0.7.1](https://github.com/puppetlabs/puppet-editor-services/tree/0.7.1) - 2018-04-04
|
|
481
|
+
|
|
482
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.7.0...0.7.1)
|
|
483
|
+
|
|
484
|
+
## [0.7.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.7.0) - 2018-04-04
|
|
485
|
+
|
|
486
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.6.0...0.7.0)
|
|
487
|
+
|
|
488
|
+
## [0.6.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.6.0) - 2018-04-04
|
|
489
|
+
|
|
490
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.5.0...0.6.0)
|
|
491
|
+
|
|
492
|
+
## [0.5.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.5.0) - 2018-04-04
|
|
493
|
+
|
|
494
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.4.6...0.5.0)
|
|
495
|
+
|
|
496
|
+
## [0.4.6](https://github.com/puppetlabs/puppet-editor-services/tree/0.4.6) - 2018-04-04
|
|
497
|
+
|
|
498
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.4.5...0.4.6)
|
|
499
|
+
|
|
500
|
+
## [0.4.5](https://github.com/puppetlabs/puppet-editor-services/tree/0.4.5) - 2018-04-04
|
|
501
|
+
|
|
502
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.4.2...0.4.5)
|
|
503
|
+
|
|
504
|
+
## [0.4.2](https://github.com/puppetlabs/puppet-editor-services/tree/0.4.2) - 2018-04-04
|
|
505
|
+
|
|
506
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/0.4.0...0.4.2)
|
|
507
|
+
|
|
508
|
+
## [0.4.0](https://github.com/puppetlabs/puppet-editor-services/tree/0.4.0) - 2018-04-04
|
|
509
|
+
|
|
510
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/804559931cdefe5364e463ee904f68c1a8d7ed39...0.4.0)
|
data/CODEOWNERS
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
|
6
|
+
|
|
7
|
+
## Our Standards
|
|
8
|
+
|
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
|
10
|
+
|
|
11
|
+
* Using welcoming and inclusive language
|
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
|
13
|
+
* Gracefully accepting constructive criticism
|
|
14
|
+
* Focusing on what is best for the community
|
|
15
|
+
* Showing empathy towards other community members
|
|
16
|
+
|
|
17
|
+
Examples of unacceptable behavior by participants include:
|
|
18
|
+
|
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
+
* Public or private harassment
|
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
|
+
|
|
25
|
+
## Our Responsibilities
|
|
26
|
+
|
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
|
28
|
+
|
|
29
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
|
30
|
+
|
|
31
|
+
## Scope
|
|
32
|
+
|
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
|
34
|
+
|
|
35
|
+
## Enforcement
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at james.pogran@puppet.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
|
+
|
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
|
40
|
+
|
|
41
|
+
## Attribution
|
|
42
|
+
|
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
|
44
|
+
|
|
45
|
+
[homepage]: http://contributor-covenant.org
|
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Checklist (and a short version for the impatient)
|
|
2
|
+
=================================================
|
|
3
|
+
|
|
4
|
+
* Commits:
|
|
5
|
+
|
|
6
|
+
- Make commits of logical units.
|
|
7
|
+
|
|
8
|
+
- Check for unnecessary whitespace with "git diff --check" before
|
|
9
|
+
committing.
|
|
10
|
+
|
|
11
|
+
- Commit using Unix line endings (check the settings around "crlf" in
|
|
12
|
+
git-config(1)).
|
|
13
|
+
|
|
14
|
+
- Do not check in commented out code or unneeded files.
|
|
15
|
+
|
|
16
|
+
- The first line of the commit message should be a short
|
|
17
|
+
description (50 characters is the soft limit, excluding ticket
|
|
18
|
+
number(s)), and should skip the full stop.
|
|
19
|
+
|
|
20
|
+
- Associate the issue in the message. The first line should include
|
|
21
|
+
the issue number in the form "(GH-#XXXX) Rest of message".
|
|
22
|
+
|
|
23
|
+
- The body should provide a meaningful commit message, which:
|
|
24
|
+
|
|
25
|
+
- uses the imperative, present tense: "change", not "changed" or
|
|
26
|
+
"changes".
|
|
27
|
+
|
|
28
|
+
- includes motivation for the change, and contrasts its
|
|
29
|
+
implementation with the previous behavior.
|
|
30
|
+
|
|
31
|
+
- Make sure that you have tests for the bug you are fixing, or
|
|
32
|
+
feature you are adding.
|
|
33
|
+
|
|
34
|
+
- Make sure the test suites passes after your commit:
|
|
35
|
+
`bundle exec rspec spec/acceptance` More information on [testing](#Testing) below
|
|
36
|
+
|
|
37
|
+
- When introducing a new feature, make sure it is properly
|
|
38
|
+
documented in the README.md
|
|
39
|
+
|
|
40
|
+
* Submission:
|
|
41
|
+
|
|
42
|
+
* Pre-requisites:
|
|
43
|
+
|
|
44
|
+
- Make sure you have a [GitHub account](https://github.com/join)
|
|
45
|
+
|
|
46
|
+
* Preferred method:
|
|
47
|
+
|
|
48
|
+
- Fork the repository on GitHub.
|
|
49
|
+
|
|
50
|
+
- Push your changes to a topic branch in your fork of the
|
|
51
|
+
repository. (the format GH-1234-short_description_of_change is
|
|
52
|
+
usually preferred for this project).
|
|
53
|
+
|
|
54
|
+
- Submit a pull request to the repository.
|