puppet-strings 2.9.0 → 3.0.1
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 +4 -4
- data/CHANGELOG.md +261 -237
- data/README.md +52 -65
- data/lib/puppet/face/strings.rb +30 -50
- data/lib/puppet/feature/rgen.rb +1 -1
- data/lib/puppet/feature/yard.rb +1 -1
- data/lib/puppet-strings/describe.rb +18 -18
- data/lib/puppet-strings/markdown/base.rb +63 -28
- data/lib/puppet-strings/markdown/data_type.rb +4 -0
- data/lib/puppet-strings/markdown/defined_type.rb +4 -0
- data/lib/puppet-strings/markdown/function.rb +13 -8
- data/lib/puppet-strings/markdown/helpers.rb +21 -0
- data/lib/puppet-strings/markdown/puppet_class.rb +4 -0
- data/lib/puppet-strings/markdown/puppet_plan.rb +4 -0
- data/lib/puppet-strings/markdown/puppet_task.rb +4 -1
- data/lib/puppet-strings/markdown/resource_type.rb +13 -3
- data/lib/puppet-strings/markdown/templates/classes_and_defines.erb +4 -4
- data/lib/puppet-strings/markdown/templates/data_type.erb +5 -9
- data/lib/puppet-strings/markdown/templates/data_type_function.erb +1 -1
- data/lib/puppet-strings/markdown/templates/function.erb +1 -1
- data/lib/puppet-strings/markdown/templates/puppet_task.erb +1 -1
- data/lib/puppet-strings/markdown/templates/resource_type.erb +6 -6
- data/lib/puppet-strings/markdown/templates/table_of_contents.erb +8 -8
- data/lib/puppet-strings/markdown.rb +62 -20
- data/lib/puppet-strings/monkey_patches/display_object_command.rb +4 -1
- data/lib/puppet-strings/tasks/generate.rb +8 -10
- data/lib/puppet-strings/tasks/gh_pages.rb +6 -5
- data/lib/puppet-strings/tasks/validate.rb +1 -1
- data/lib/puppet-strings/tasks.rb +8 -7
- data/lib/puppet-strings/version.rb +1 -1
- data/lib/puppet-strings/yard/code_objects/class.rb +2 -2
- data/lib/puppet-strings/yard/code_objects/data_type.rb +4 -4
- data/lib/puppet-strings/yard/code_objects/data_type_alias.rb +1 -1
- data/lib/puppet-strings/yard/code_objects/defined_type.rb +2 -2
- data/lib/puppet-strings/yard/code_objects/function.rb +11 -11
- data/lib/puppet-strings/yard/code_objects/group.rb +1 -1
- data/lib/puppet-strings/yard/code_objects/plan.rb +4 -2
- data/lib/puppet-strings/yard/code_objects/provider.rb +2 -2
- data/lib/puppet-strings/yard/code_objects/task.rb +6 -7
- data/lib/puppet-strings/yard/code_objects/type.rb +6 -6
- data/lib/puppet-strings/yard/handlers/helpers.rb +3 -4
- data/lib/puppet-strings/yard/handlers/json/base.rb +2 -1
- data/lib/puppet-strings/yard/handlers/json/task_handler.rb +4 -4
- data/lib/puppet-strings/yard/handlers/puppet/base.rb +7 -2
- data/lib/puppet-strings/yard/handlers/puppet/function_handler.rb +3 -2
- data/lib/puppet-strings/yard/handlers/ruby/base.rb +3 -2
- data/lib/puppet-strings/yard/handlers/ruby/data_type_handler.rb +19 -16
- data/lib/puppet-strings/yard/handlers/ruby/function_handler.rb +70 -50
- data/lib/puppet-strings/yard/handlers/ruby/provider_handler.rb +2 -1
- data/lib/puppet-strings/yard/handlers/ruby/rsapi_handler.rb +12 -9
- data/lib/puppet-strings/yard/handlers/ruby/type_base.rb +27 -27
- data/lib/puppet-strings/yard/handlers/ruby/type_extras_handler.rb +2 -3
- data/lib/puppet-strings/yard/handlers/ruby/type_handler.rb +2 -1
- data/lib/puppet-strings/yard/parsers/json/parser.rb +3 -2
- data/lib/puppet-strings/yard/parsers/json/task_statement.rb +3 -3
- data/lib/puppet-strings/yard/parsers/puppet/parser.rb +7 -7
- data/lib/puppet-strings/yard/parsers/puppet/statement.rb +16 -23
- data/lib/puppet-strings/yard/parsers.rb +1 -0
- data/lib/puppet-strings/yard/tags/enum_tag.rb +1 -2
- data/lib/puppet-strings/yard/tags/factory.rb +1 -1
- data/lib/puppet-strings/yard/tags/overload_tag.rb +7 -7
- data/lib/puppet-strings/yard/tags/parameter_directive.rb +2 -2
- data/lib/puppet-strings/yard/tags/property_directive.rb +2 -2
- data/lib/puppet-strings/yard/tags/summary_tag.rb +1 -2
- data/lib/puppet-strings/yard/util.rb +11 -4
- data/lib/puppet-strings/yard.rb +6 -6
- data/lib/puppet-strings.rb +7 -13
- metadata +13 -20
- data/lib/puppet-strings/markdown/data_types.rb +0 -43
- data/lib/puppet-strings/markdown/defined_types.rb +0 -39
- data/lib/puppet-strings/markdown/functions.rb +0 -40
- data/lib/puppet-strings/markdown/puppet_classes.rb +0 -39
- data/lib/puppet-strings/markdown/puppet_plans.rb +0 -39
- data/lib/puppet-strings/markdown/puppet_tasks.rb +0 -36
- data/lib/puppet-strings/markdown/resource_types.rb +0 -39
- data/lib/puppet-strings/markdown/table_of_contents.rb +0 -26
data/CHANGELOG.md
CHANGED
@@ -1,399 +1,423 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
All
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
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).
|
6
|
+
## [v3.0.1](https://github.com/puppetlabs/puppet-strings/tree/v3.0.1) - 2022-10-25
|
5
7
|
|
6
|
-
|
8
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v3.0.0...v3.0.1)
|
7
9
|
|
8
|
-
|
10
|
+
### Fixed
|
9
11
|
|
10
|
-
|
12
|
+
- (GH-332) Ensure PuppetStrings is loaded for tasks [#333](https://github.com/puppetlabs/puppet-strings/pull/333) ([chelnak](https://github.com/chelnak))
|
11
13
|
|
12
|
-
|
14
|
+
## [v3.0.0](https://github.com/puppetlabs/puppet-strings/tree/v3.0.0) - 2022-10-21
|
13
15
|
|
14
|
-
|
16
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.9.0...v3.0.0)
|
15
17
|
|
16
|
-
|
18
|
+
### Added
|
17
19
|
|
18
|
-
|
20
|
+
- (#223) Use code blocks as appropriate in Markdown [#319](https://github.com/puppetlabs/puppet-strings/pull/319) ([danielparks](https://github.com/danielparks))
|
19
21
|
|
20
|
-
-
|
21
|
-
- Update changelog with recent commits [\#283](https://github.com/puppetlabs/puppet-strings/issues/283)
|
22
|
-
- Please document the `author` tag [\#256](https://github.com/puppetlabs/puppet-strings/issues/256)
|
22
|
+
- Use tilde heredocs for readability [#317](https://github.com/puppetlabs/puppet-strings/pull/317) ([danielparks](https://github.com/danielparks))
|
23
23
|
|
24
|
-
|
24
|
+
### Changed
|
25
|
+
- (CONT-228) Remove deprecated emit flags [#329](https://github.com/puppetlabs/puppet-strings/pull/329) ([chelnak](https://github.com/chelnak))
|
25
26
|
|
26
|
-
-
|
27
|
+
- (CONT-228) Bump ruby version [#326](https://github.com/puppetlabs/puppet-strings/pull/326) ([chelnak](https://github.com/chelnak))
|
27
28
|
|
28
|
-
|
29
|
+
- (#301) Update minimum Ruby version to 2.5.0 [#313](https://github.com/puppetlabs/puppet-strings/pull/313) ([danielparks](https://github.com/danielparks))
|
29
30
|
|
30
|
-
|
31
|
+
### Fixed
|
31
32
|
|
32
|
-
|
33
|
+
- (#240) Fix output of default values that are expressions [#315](https://github.com/puppetlabs/puppet-strings/pull/315) ([danielparks](https://github.com/danielparks))
|
33
34
|
|
34
|
-
-
|
35
|
+
- (#267) Don’t show “Public X” header without contents [#314](https://github.com/puppetlabs/puppet-strings/pull/314) ([danielparks](https://github.com/danielparks))
|
35
36
|
|
36
|
-
|
37
|
+
- (#307) Always enable plan parsing [#312](https://github.com/puppetlabs/puppet-strings/pull/312) ([danielparks](https://github.com/danielparks))
|
37
38
|
|
38
|
-
-
|
39
|
-
- README.md: update link to docs [\#276](https://github.com/puppetlabs/puppet-strings/pull/276) ([kenyon](https://github.com/kenyon))
|
39
|
+
- (#302) Fix warnings generated by ERB.new [#308](https://github.com/puppetlabs/puppet-strings/pull/308) ([danielparks](https://github.com/danielparks))
|
40
40
|
|
41
|
-
|
41
|
+
- (#304) Fix double backticks in Markdown [#305](https://github.com/puppetlabs/puppet-strings/pull/305) ([danielparks](https://github.com/danielparks))
|
42
42
|
|
43
|
-
[
|
43
|
+
- (#300) Fix anchor links in Markdown docs [#303](https://github.com/puppetlabs/puppet-strings/pull/303) ([danielparks](https://github.com/danielparks))
|
44
|
+
|
45
|
+
## [v2.9.0](https://github.com/puppetlabs/puppet-strings/tree/v2.9.0) - 2021-11-29
|
46
|
+
|
47
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.8.0...v2.9.0)
|
48
|
+
|
49
|
+
### Added
|
50
|
+
|
51
|
+
- Implement a strings:validate:reference task [#291](https://github.com/puppetlabs/puppet-strings/pull/291) ([ekohl](https://github.com/ekohl))
|
52
|
+
|
53
|
+
### Fixed
|
54
|
+
|
55
|
+
- Fix rare undefined method `any?' for nil:NilClass error [#289](https://github.com/puppetlabs/puppet-strings/pull/289) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
56
|
+
|
57
|
+
## [v2.8.0](https://github.com/puppetlabs/puppet-strings/tree/v2.8.0) - 2021-07-19
|
58
|
+
|
59
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.7.0...v2.8.0)
|
60
|
+
|
61
|
+
### Added
|
44
62
|
|
45
|
-
|
63
|
+
- (DOCUMENT-1232) Add support for ensurable in types_extras_handler [#281](https://github.com/puppetlabs/puppet-strings/pull/281) ([joshcooper](https://github.com/joshcooper))
|
46
64
|
|
47
|
-
|
65
|
+
### Fixed
|
48
66
|
|
49
|
-
|
67
|
+
- (FIXUP) Check for nil before injecting provider param into Types [#285](https://github.com/puppetlabs/puppet-strings/pull/285) ([scotje](https://github.com/scotje))
|
50
68
|
|
51
|
-
-
|
69
|
+
- README.md: update link to docs [#276](https://github.com/puppetlabs/puppet-strings/pull/276) ([kenyon](https://github.com/kenyon))
|
52
70
|
|
53
|
-
|
71
|
+
## [v2.7.0](https://github.com/puppetlabs/puppet-strings/tree/v2.7.0) - 2021-05-17
|
54
72
|
|
55
|
-
|
73
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.6.0...v2.7.0)
|
56
74
|
|
57
|
-
|
75
|
+
### Fixed
|
58
76
|
|
59
|
-
-
|
60
|
-
- Only set tasks = true when parsing plans. [\#266](https://github.com/puppetlabs/puppet-strings/pull/266) ([binford2k](https://github.com/binford2k))
|
77
|
+
- Only set tasks = true when parsing plans. [#266](https://github.com/puppetlabs/puppet-strings/pull/266) ([binford2k](https://github.com/binford2k))
|
61
78
|
|
62
|
-
## [v2.6.0](https://github.com/puppetlabs/puppet-strings/tree/v2.6.0)
|
79
|
+
## [v2.6.0](https://github.com/puppetlabs/puppet-strings/tree/v2.6.0) - 2021-01-18
|
63
80
|
|
64
81
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.5.0...v2.6.0)
|
65
82
|
|
66
|
-
Added
|
83
|
+
### Added
|
67
84
|
|
68
|
-
- Improved markdown templates [
|
85
|
+
- Improved markdown templates [#252](https://github.com/puppetlabs/puppet-strings/pull/252) ([kozl](https://github.com/kozl))
|
69
86
|
|
70
|
-
|
87
|
+
### Changed
|
88
|
+
- (MAINT) Drop Ruby 2.1.x and Puppet 4.x compatibility [#253](https://github.com/puppetlabs/puppet-strings/pull/253) ([scotje](https://github.com/scotje))
|
71
89
|
|
72
|
-
|
73
|
-
- Handle a missing description gracefully [\#260](https://github.com/puppetlabs/puppet-strings/pull/260) ([scotje](https://github.com/scotje))
|
74
|
-
- Fix ERB failure - parameters without descriptions [\#255](https://github.com/puppetlabs/puppet-strings/pull/255) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
75
|
-
- puppet\_function template: fix tags, source [\#249](https://github.com/puppetlabs/puppet-strings/pull/249) ([raemer](https://github.com/raemer))
|
76
|
-
- Handle a missing description gracefully [\#246](https://github.com/puppetlabs/puppet-strings/pull/246) ([ekohl](https://github.com/ekohl))
|
90
|
+
### Fixed
|
77
91
|
|
78
|
-
|
92
|
+
- Do not fail in case return tag has no type specified [#268](https://github.com/puppetlabs/puppet-strings/pull/268) ([tiandrey](https://github.com/tiandrey))
|
79
93
|
|
80
|
-
-
|
94
|
+
- Handle a missing description gracefully [#260](https://github.com/puppetlabs/puppet-strings/pull/260) ([scotje](https://github.com/scotje))
|
81
95
|
|
82
|
-
|
96
|
+
- Fix ERB failure - parameters without descriptions [#255](https://github.com/puppetlabs/puppet-strings/pull/255) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
83
97
|
|
84
|
-
-
|
85
|
-
- Can we get 2.5.0 released please [\#244](https://github.com/puppetlabs/puppet-strings/issues/244)
|
86
|
-
- Provider attribute is missing in generated types documentation [\#227](https://github.com/puppetlabs/puppet-strings/issues/227)
|
98
|
+
- puppet_function template: fix tags, source [#249](https://github.com/puppetlabs/puppet-strings/pull/249) ([raemer](https://github.com/raemer))
|
87
99
|
|
88
|
-
|
100
|
+
- Handle a missing description gracefully [#246](https://github.com/puppetlabs/puppet-strings/pull/246) ([ekohl](https://github.com/ekohl))
|
89
101
|
|
90
|
-
[
|
102
|
+
## [v2.5.0](https://github.com/puppetlabs/puppet-strings/tree/v2.5.0) - 2020-07-15
|
91
103
|
|
92
|
-
|
104
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.4.0...v2.5.0)
|
93
105
|
|
94
|
-
|
95
|
-
- Add checks to resource\_type handler and code objects [\#232](https://github.com/puppetlabs/puppet-strings/pull/232) ([scotje](https://github.com/scotje))
|
96
|
-
- \(\#227\) Inject `provider` into params list for types with providers [\#231](https://github.com/puppetlabs/puppet-strings/pull/231) ([scotje](https://github.com/scotje))
|
106
|
+
### Added
|
97
107
|
|
98
|
-
|
108
|
+
- (GH-225) Document functions in Puppet Datatypes [#235](https://github.com/puppetlabs/puppet-strings/pull/235) ([glennsarti](https://github.com/glennsarti))
|
99
109
|
|
100
|
-
-
|
101
|
-
- Eliminate trailing spaces w/o descriptions [\#224](https://github.com/puppetlabs/puppet-strings/pull/224) ([binford2k](https://github.com/binford2k))
|
110
|
+
- Add checks to resource_type handler and code objects [#232](https://github.com/puppetlabs/puppet-strings/pull/232) ([scotje](https://github.com/scotje))
|
102
111
|
|
103
|
-
|
112
|
+
- (#227) Inject `provider` into params list for types with providers [#231](https://github.com/puppetlabs/puppet-strings/pull/231) ([scotje](https://github.com/scotje))
|
104
113
|
|
105
|
-
|
106
|
-
- Puppet Classes not Listed in Left Frame Contents [\#241](https://github.com/puppetlabs/puppet-strings/issues/241)
|
107
|
-
- exec type in generated docs missing attributes `creates`, `onlyif` [\#229](https://github.com/puppetlabs/puppet-strings/issues/229)
|
108
|
-
- \[Feature\] Document functions in Puppet Datatypes [\#225](https://github.com/puppetlabs/puppet-strings/issues/225)
|
109
|
-
- Document usage [\#8](https://github.com/puppetlabs/puppet-strings/issues/8)
|
110
|
-
- Need a search box on the main page [\#1](https://github.com/puppetlabs/puppet-strings/issues/1)
|
114
|
+
### Fixed
|
111
115
|
|
112
|
-
|
116
|
+
- (#242) Wrap names in backticks when rendering to markdown [#243](https://github.com/puppetlabs/puppet-strings/pull/243) ([scotje](https://github.com/scotje))
|
113
117
|
|
114
|
-
-
|
118
|
+
- Eliminate trailing spaces w/o descriptions [#224](https://github.com/puppetlabs/puppet-strings/pull/224) ([binford2k](https://github.com/binford2k))
|
115
119
|
|
116
|
-
## [v2.4.0](https://github.com/puppetlabs/puppet-strings/tree/v2.4.0)
|
120
|
+
## [v2.4.0](https://github.com/puppetlabs/puppet-strings/tree/v2.4.0) - 2020-02-20
|
117
121
|
|
118
122
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.3.1...v2.4.0)
|
119
123
|
|
120
|
-
Added
|
124
|
+
### Added
|
121
125
|
|
122
|
-
- Add missing HTML output support for enum tag [
|
123
|
-
- \(PDOC-295\) Add @enum tag support for Enum data types [\#215](https://github.com/puppetlabs/puppet-strings/pull/215) ([seanmil](https://github.com/seanmil))
|
124
|
-
- Expanded default search glob for plans. [\#214](https://github.com/puppetlabs/puppet-strings/pull/214) ([Raskil](https://github.com/Raskil))
|
126
|
+
- Add missing HTML output support for enum tag [#218](https://github.com/puppetlabs/puppet-strings/pull/218) ([seanmil](https://github.com/seanmil))
|
125
127
|
|
126
|
-
|
128
|
+
- (PDOC-295) Add @enum tag support for Enum data types [#215](https://github.com/puppetlabs/puppet-strings/pull/215) ([seanmil](https://github.com/seanmil))
|
127
129
|
|
128
|
-
-
|
130
|
+
- Expanded default search glob for plans. [#214](https://github.com/puppetlabs/puppet-strings/pull/214) ([Raskil](https://github.com/Raskil))
|
129
131
|
|
130
|
-
## [v2.3.1](https://github.com/puppetlabs/puppet-strings/tree/v2.3.1)
|
132
|
+
## [v2.3.1](https://github.com/puppetlabs/puppet-strings/tree/v2.3.1) - 2019-09-23
|
131
133
|
|
132
134
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.3.0...v2.3.1)
|
133
135
|
|
134
|
-
Fixed
|
136
|
+
### Fixed
|
137
|
+
|
138
|
+
- (maint) Use parameters method instead of json['parameters'] [#211](https://github.com/puppetlabs/puppet-strings/pull/211) ([lucywyman](https://github.com/lucywyman))
|
135
139
|
|
136
|
-
-
|
137
|
-
- \(PDOC-285\) Fix data\_type\_handler for errors and numbers [\#209](https://github.com/puppetlabs/puppet-strings/pull/209) ([glennsarti](https://github.com/glennsarti))
|
140
|
+
- (PDOC-285) Fix data_type_handler for errors and numbers [#209](https://github.com/puppetlabs/puppet-strings/pull/209) ([glennsarti](https://github.com/glennsarti))
|
138
141
|
|
139
|
-
## [v2.3.0](https://github.com/puppetlabs/puppet-strings/tree/v2.3.0)
|
142
|
+
## [v2.3.0](https://github.com/puppetlabs/puppet-strings/tree/v2.3.0) - 2019-07-17
|
140
143
|
|
141
144
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.2.0...v2.3.0)
|
142
145
|
|
143
|
-
Added
|
146
|
+
### Added
|
144
147
|
|
145
|
-
- Add Puppet Data Type documentation [
|
148
|
+
- Add Puppet Data Type documentation [#199](https://github.com/puppetlabs/puppet-strings/pull/199) ([glennsarti](https://github.com/glennsarti))
|
146
149
|
|
147
|
-
Fixed
|
150
|
+
### Fixed
|
148
151
|
|
149
|
-
-
|
152
|
+
- (PDOC-283) Fix namespaced symbols [#205](https://github.com/puppetlabs/puppet-strings/pull/205) ([glennsarti](https://github.com/glennsarti))
|
150
153
|
|
151
|
-
## [v2.2.0](https://github.com/puppetlabs/puppet-strings/tree/v2.2.0)
|
154
|
+
## [v2.2.0](https://github.com/puppetlabs/puppet-strings/tree/v2.2.0) - 2019-04-05
|
152
155
|
|
153
156
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.1.0...v2.2.0)
|
154
157
|
|
155
|
-
Added
|
158
|
+
### Added
|
159
|
+
|
160
|
+
- (PDOC-272) Add required features attribute [#194](https://github.com/puppetlabs/puppet-strings/pull/194) ([kris-bosland](https://github.com/kris-bosland))
|
156
161
|
|
157
|
-
-
|
158
|
-
- \(maint\) Implement a strings:generate:reference task [\#192](https://github.com/puppetlabs/puppet-strings/pull/192) ([ekohl](https://github.com/ekohl))
|
159
|
-
- \(PDOC-265\) Add examples to function reference docs [\#188](https://github.com/puppetlabs/puppet-strings/pull/188) ([ekohl](https://github.com/ekohl))
|
160
|
-
- \(PDOC-252\) Add describe features to puppet-strings face [\#183](https://github.com/puppetlabs/puppet-strings/pull/183) ([kris-bosland](https://github.com/kris-bosland))
|
162
|
+
- (maint) Implement a strings:generate:reference task [#192](https://github.com/puppetlabs/puppet-strings/pull/192) ([ekohl](https://github.com/ekohl))
|
161
163
|
|
162
|
-
|
164
|
+
- (PDOC-265) Add examples to function reference docs [#188](https://github.com/puppetlabs/puppet-strings/pull/188) ([ekohl](https://github.com/ekohl))
|
163
165
|
|
164
|
-
-
|
166
|
+
- (PDOC-252) Add describe features to puppet-strings face [#183](https://github.com/puppetlabs/puppet-strings/pull/183) ([kris-bosland](https://github.com/kris-bosland))
|
165
167
|
|
166
|
-
|
168
|
+
### Fixed
|
169
|
+
|
170
|
+
- (PDOC-266) Silence 'unexpected construct regexp_literal' warning [#189](https://github.com/puppetlabs/puppet-strings/pull/189) ([seanmil](https://github.com/seanmil))
|
171
|
+
|
172
|
+
## [v2.1.0](https://github.com/puppetlabs/puppet-strings/tree/v2.1.0) - 2018-06-26
|
167
173
|
|
168
174
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/2.0.0...v2.1.0)
|
169
175
|
|
170
|
-
Added
|
176
|
+
### Added
|
171
177
|
|
172
|
-
-
|
173
|
-
- \(PDOC-255\) markdown table of contents update [\#181](https://github.com/puppetlabs/puppet-strings/pull/181) ([eputnam](https://github.com/eputnam))
|
178
|
+
- (PDOC-212, PDOC-213) add support for @note and @todo [#182](https://github.com/puppetlabs/puppet-strings/pull/182) ([eputnam](https://github.com/eputnam))
|
174
179
|
|
175
|
-
|
180
|
+
- (PDOC-255) markdown table of contents update [#181](https://github.com/puppetlabs/puppet-strings/pull/181) ([eputnam](https://github.com/eputnam))
|
176
181
|
|
177
|
-
|
182
|
+
### Fixed
|
178
183
|
|
179
|
-
#
|
184
|
+
- (PDOC-259) relax ruby requirement to 2.1.0 from 2.1.9 [#184](https://github.com/puppetlabs/puppet-strings/pull/184) ([DavidS](https://github.com/DavidS))
|
180
185
|
|
181
|
-
## [2.0.0](https://github.com/puppetlabs/puppet-strings/tree/2.0.0)
|
186
|
+
## [2.0.0](https://github.com/puppetlabs/puppet-strings/tree/2.0.0) - 2018-05-11
|
182
187
|
|
183
188
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/1.2.1...2.0.0)
|
184
189
|
|
185
|
-
###
|
190
|
+
### Added
|
186
191
|
|
187
|
-
-
|
192
|
+
- (PDOC-238) add generated message to markdown [#175](https://github.com/puppetlabs/puppet-strings/pull/175) ([eputnam](https://github.com/eputnam))
|
188
193
|
|
189
|
-
|
194
|
+
- (PDOC-228) puppet plan support [#168](https://github.com/puppetlabs/puppet-strings/pull/168) ([eputnam](https://github.com/eputnam))
|
190
195
|
|
191
|
-
-
|
192
|
-
|
193
|
-
|
196
|
+
- (PDOC-206) support for tasks [#161](https://github.com/puppetlabs/puppet-strings/pull/161) ([eputnam](https://github.com/eputnam))
|
197
|
+
|
198
|
+
### Changed
|
199
|
+
- bump required ruby and puppet versions [#178](https://github.com/puppetlabs/puppet-strings/pull/178) ([eputnam](https://github.com/eputnam))
|
194
200
|
|
195
201
|
### Fixed
|
196
202
|
|
197
|
-
-
|
198
|
-
|
199
|
-
-
|
200
|
-
|
201
|
-
-
|
202
|
-
|
203
|
-
-
|
204
|
-
|
205
|
-
-
|
203
|
+
- (PDOC-36) fix hack for README urls [#176](https://github.com/puppetlabs/puppet-strings/pull/176) ([eputnam](https://github.com/eputnam))
|
204
|
+
|
205
|
+
- (PDOC-240) add handling for :array node type in rsapi_handler [#174](https://github.com/puppetlabs/puppet-strings/pull/174) ([eputnam](https://github.com/eputnam))
|
206
|
+
|
207
|
+
- (PDOC-159) server urls fix [#173](https://github.com/puppetlabs/puppet-strings/pull/173) ([eputnam](https://github.com/eputnam))
|
208
|
+
|
209
|
+
- (maint) display Plans in markdown table of contents [#171](https://github.com/puppetlabs/puppet-strings/pull/171) ([eputnam](https://github.com/eputnam))
|
210
|
+
|
211
|
+
- (PDOC-233) markdown whitespace fixes [#170](https://github.com/puppetlabs/puppet-strings/pull/170) ([JohnLyman](https://github.com/JohnLyman))
|
212
|
+
|
213
|
+
- (PDOC-229) fix error with return_type and @return [#169](https://github.com/puppetlabs/puppet-strings/pull/169) ([eputnam](https://github.com/eputnam))
|
214
|
+
|
215
|
+
- (PDOC-36) hack to fix README links in generated HTML [#167](https://github.com/puppetlabs/puppet-strings/pull/167) ([eputnam](https://github.com/eputnam))
|
216
|
+
|
217
|
+
- (PDOC-192) remove warning for title/name [#166](https://github.com/puppetlabs/puppet-strings/pull/166) ([eputnam](https://github.com/eputnam))
|
206
218
|
|
207
|
-
|
219
|
+
- (maint) add condition for misleading warning [#155](https://github.com/puppetlabs/puppet-strings/pull/155) ([eputnam](https://github.com/eputnam))
|
220
|
+
|
221
|
+
## [1.2.1](https://github.com/puppetlabs/puppet-strings/tree/1.2.1) - 2018-03-01
|
208
222
|
|
209
223
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/1.2.0...1.2.1)
|
210
224
|
|
211
225
|
### Fixed
|
212
226
|
|
213
|
-
- (PDOC-224) Handle --emit-json(-stdout) again [
|
227
|
+
- (PDOC-224) Handle --emit-json(-stdout) again [#162](https://github.com/puppetlabs/puppet-strings/pull/162) ([ekohl](https://github.com/ekohl))
|
214
228
|
|
215
|
-
## [1.2.0](https://github.com/puppetlabs/puppet-strings/tree/1.2.0)
|
229
|
+
## [1.2.0](https://github.com/puppetlabs/puppet-strings/tree/1.2.0) - 2018-02-28
|
216
230
|
|
217
231
|
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/1.1.1...1.2.0)
|
218
232
|
|
219
233
|
### Added
|
220
234
|
|
221
|
-
-
|
222
|
-
|
235
|
+
- (PDOC-184) generate markdown [#156](https://github.com/puppetlabs/puppet-strings/pull/156) ([eputnam](https://github.com/eputnam))
|
236
|
+
|
237
|
+
- (PDK-437) Add support for Resource API types [#153](https://github.com/puppetlabs/puppet-strings/pull/153) ([DavidS](https://github.com/DavidS))
|
238
|
+
|
239
|
+
### Fixed
|
240
|
+
|
241
|
+
- Fix return type matching for Puppet functions [#159](https://github.com/puppetlabs/puppet-strings/pull/159) ([pegasd](https://github.com/pegasd))
|
242
|
+
|
243
|
+
- Add rgen as a runtime dependency [#149](https://github.com/puppetlabs/puppet-strings/pull/149) ([rnelson0](https://github.com/rnelson0))
|
244
|
+
|
245
|
+
## [1.1.1](https://github.com/puppetlabs/puppet-strings/tree/1.1.1) - 2017-10-20
|
246
|
+
|
247
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/1.1.0...1.1.1)
|
248
|
+
|
249
|
+
### Fixed
|
250
|
+
|
251
|
+
- (PDOC-160) Remove the timestamp from output [#137](https://github.com/puppetlabs/puppet-strings/pull/137) ([GeoffWilliams](https://github.com/GeoffWilliams))
|
252
|
+
|
253
|
+
- Fix args handling for rake strings::generate [#136](https://github.com/puppetlabs/puppet-strings/pull/136) ([hashar](https://github.com/hashar))
|
254
|
+
|
255
|
+
## [1.1.0](https://github.com/puppetlabs/puppet-strings/tree/1.1.0) - 2017-03-20
|
256
|
+
|
257
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/1.0.0...1.1.0)
|
258
|
+
|
259
|
+
### Added
|
260
|
+
|
261
|
+
- (PDOC-161) Add `summary` tag for short descriptions [#138](https://github.com/puppetlabs/puppet-strings/pull/138) ([whopper](https://github.com/whopper))
|
262
|
+
|
263
|
+
- (PDOC-155) Allow type documentation in Puppet 4 code [#132](https://github.com/puppetlabs/puppet-strings/pull/132) ([whopper](https://github.com/whopper))
|
264
|
+
|
265
|
+
## [1.0.0](https://github.com/puppetlabs/puppet-strings/tree/1.0.0) - 2016-11-28
|
266
|
+
|
267
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.99.0...1.0.0)
|
268
|
+
|
269
|
+
### Added
|
270
|
+
|
271
|
+
- (PDOC-136) Detect return type syntax in Puppet Language functions [#126](https://github.com/puppetlabs/puppet-strings/pull/126) ([whopper](https://github.com/whopper))
|
272
|
+
|
273
|
+
- (PDOC-135) Detect `return_type` calls in 4.x function dispatches [#125](https://github.com/puppetlabs/puppet-strings/pull/125) ([whopper](https://github.com/whopper))
|
274
|
+
|
275
|
+
- (PDOC-121) Include tag or SHA in gh_pages task commit [#121](https://github.com/puppetlabs/puppet-strings/pull/121) ([whopper](https://github.com/whopper))
|
276
|
+
|
277
|
+
- (PDOC-125) Display all puppet function signatures in top-level signature key [#119](https://github.com/puppetlabs/puppet-strings/pull/119) ([whopper](https://github.com/whopper))
|
278
|
+
|
279
|
+
### Fixed
|
280
|
+
|
281
|
+
- (PDOC-93) Ensure search bar doesn't overlap item list in nav bar [#123](https://github.com/puppetlabs/puppet-strings/pull/123) ([whopper](https://github.com/whopper))
|
282
|
+
|
283
|
+
- (PDOC-129) Include tags in overload objects when serialized as JSON [#122](https://github.com/puppetlabs/puppet-strings/pull/122) ([whopper](https://github.com/whopper))
|
284
|
+
|
285
|
+
- (PDOC-126) Remove `%Q` ruby quotation syntax from parsed strings [#118](https://github.com/puppetlabs/puppet-strings/pull/118) ([whopper](https://github.com/whopper))
|
286
|
+
|
287
|
+
- (PDOC-127) Strip whitespace from type feature docstrings [#112](https://github.com/puppetlabs/puppet-strings/pull/112) ([whopper](https://github.com/whopper))
|
288
|
+
|
289
|
+
- (PDOC-95) Properly group and display multiple provider `defaultfor`s [#111](https://github.com/puppetlabs/puppet-strings/pull/111) ([whopper](https://github.com/whopper))
|
290
|
+
|
291
|
+
- (PDOC-122) Properly parse `newfunction` calls with newlines [#110](https://github.com/puppetlabs/puppet-strings/pull/110) ([whopper](https://github.com/whopper))
|
292
|
+
|
293
|
+
## [0.99.0](https://github.com/puppetlabs/puppet-strings/tree/0.99.0) - 2016-10-10
|
294
|
+
|
295
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.4.0...0.99.0)
|
223
296
|
|
224
297
|
### Fixed
|
225
298
|
|
226
|
-
-
|
227
|
-
- Add rgen as a runtime dependency [\#149](https://github.com/puppetlabs/puppet-strings/pull/149) ([rnelson0](https://github.com/rnelson0))
|
299
|
+
- (PDOC-80) Remove runtime dependency on puppet [#103](https://github.com/puppetlabs/puppet-strings/pull/103) ([whopper](https://github.com/whopper))
|
228
300
|
|
229
|
-
|
301
|
+
- (PDOC-63) Code refactoring, fix up, and lots of new functionality. [#98](https://github.com/puppetlabs/puppet-strings/pull/98) ([peterhuene](https://github.com/peterhuene))
|
230
302
|
|
231
|
-
|
232
|
-
- Remove timestamps from footer of generated HTML pages ([GeoffWilliams](https://github.com/GeoffWilliams))
|
233
|
-
- Fix argument handling for `rake strings::generate` ([hashar](https://github.com/hashar))
|
303
|
+
- (PDOC-71) Workaround for spurious error failures [#90](https://github.com/puppetlabs/puppet-strings/pull/90) ([trevor-vaughan](https://github.com/trevor-vaughan))
|
234
304
|
|
235
|
-
|
236
|
-
- Fixed Markdown formatting issues in CHANGELOG ([maju6406](https://github.com/maju6406))
|
237
|
-
- Fixed typo in README ([hfm](https://github.com/hfm))
|
238
|
-
- Fixed Markdown formatting issues in README ([gguillotte](https://github.com/gguillotte))
|
239
|
-
- Update Travis CI configurations for Ruby and Puppet versions ([ghoneycutt](https://github.com/ghoneycutt))
|
305
|
+
- Add Puppet type name in front of the provider name [#80](https://github.com/puppetlabs/puppet-strings/pull/80) ([dmitryilyin](https://github.com/dmitryilyin))
|
240
306
|
|
241
|
-
##
|
307
|
+
## [0.4.0](https://github.com/puppetlabs/puppet-strings/tree/0.4.0) - 2016-03-30
|
242
308
|
|
243
|
-
|
309
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.3.1...0.4.0)
|
244
310
|
|
245
|
-
|
311
|
+
### Fixed
|
246
312
|
|
247
|
-
|
313
|
+
- (PDOC-75) Work with both versions of 'interpret_any' [#77](https://github.com/puppetlabs/puppet-strings/pull/77) ([HAIL9000](https://github.com/HAIL9000))
|
248
314
|
|
249
|
-
|
250
|
-
- The `summary` tag can be added to any code that puppet-strings supports. The recommended length limit for a summary is 140 characters. Warnings will be issued for strings longer than this limit.
|
251
|
-
- Puppet 4 parameter types can now be explicitly documented. Previously, this was not allowed because Puppet 4 parameter types can be automatically determined without extra documentation. However, users may desire to do so anyway for consistency. Strings will emit a warning if the documented type does not match the actual type. In such an event, the incorrect documented type will be ignored in favor of the real one.
|
315
|
+
- (PDOC-70) Always generate the JSON doc when running the rake task [#72](https://github.com/puppetlabs/puppet-strings/pull/72) ([garethr](https://github.com/garethr))
|
252
316
|
|
253
|
-
|
317
|
+
- Fix issue running strings:generate without a yardopts file [#71](https://github.com/puppetlabs/puppet-strings/pull/71) ([garethr](https://github.com/garethr))
|
254
318
|
|
255
|
-
|
319
|
+
- (PDOC-23) Emit json [#55](https://github.com/puppetlabs/puppet-strings/pull/55) ([iankronquist](https://github.com/iankronquist))
|
256
320
|
|
257
|
-
|
321
|
+
## [0.3.1](https://github.com/puppetlabs/puppet-strings/tree/0.3.1) - 2015-09-22
|
258
322
|
|
259
|
-
|
323
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.3.0...0.3.1)
|
260
324
|
|
261
|
-
###
|
262
|
-
- The JSON schema for Puppet functions has been altered to include a new 'signatures' top-level key **(PDOC-125)**
|
263
|
-
- Includes information about all function signatures (overloads). Existing overload key format has been preserved.
|
264
|
-
- Reworked README for enhanced clarity **(PDOC-133)**
|
325
|
+
### Fixed
|
265
326
|
|
266
|
-
|
267
|
-
- Fixed an issue where the search box in the code navigator overlapped list items below it **(PDOC-93)**
|
268
|
-
- Strings can now handle multiple `defaultfor` calls in Puppet providers **(PDOC-95)**
|
269
|
-
- Fixed an issue preventing the generated \_index.html file from being uploaded to GitHub pages via the gh_pages task **(PDOC-120)**
|
270
|
-
- Fixed several issues with String's handling of Puppet 3.x and 4.x function return types **(PDOC-135)**, **(PDOC-136)**
|
271
|
-
- Fixed an issue where String's didn't properly parse overloads if no summary description was provided **(PDOC-129)**
|
272
|
-
- Strings now correctly handles Puppet 3.x functions when the `newfunction` call is on a newline **(PDOC-122)**
|
273
|
-
- Fixed an issue where certain Ruby string constructs were incompletely stripped from some docstrings **(PDOC-126)**
|
274
|
-
- Hanging indents from type feature descriptions are now properly stripped **(PDOC-127)**
|
327
|
+
- make metadata match pmt output [#65](https://github.com/puppetlabs/puppet-strings/pull/65) ([underscorgan](https://github.com/underscorgan))
|
275
328
|
|
276
|
-
|
329
|
+
- Last PR for the Summer [#62](https://github.com/puppetlabs/puppet-strings/pull/62) ([iankronquist](https://github.com/iankronquist))
|
277
330
|
|
278
|
-
|
331
|
+
- Same name type and provider [#61](https://github.com/puppetlabs/puppet-strings/pull/61) ([iankronquist](https://github.com/iankronquist))
|
279
332
|
|
280
|
-
|
333
|
+
## [0.3.0](https://github.com/puppetlabs/puppet-strings/tree/0.3.0) - 2015-09-21
|
281
334
|
|
282
|
-
|
335
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.2.0...0.3.0)
|
283
336
|
|
284
|
-
###
|
285
|
-
- Complete overhaul, including code cleanup, bug fixes and new functionality **(PDOC-63)**
|
286
|
-
- Documentation has been split into sections based on type: puppet 3x API functions, puppet 4x API functions, ruby classes, puppet language functions, types, and providers
|
287
|
-
- New JSON schema organized to reflect the separation of types
|
288
|
-
- Support for custom functions written in the puppet language
|
289
|
-
- Support for puppet function overloads via the create_function 4.x API
|
290
|
-
- YARD bumped to latest version, 0.9.5
|
291
|
-
- Markdown is now the default format for parsing docstring text **(PDOC-86)**
|
292
|
-
- Note: this means Markdown text in YARD comments and tags, not a change in the output of strings
|
293
|
-
- New commandline options: --emit-json and --emit-json-stdout to generate JSON documentation **(PDOC-84)**
|
294
|
-
- Runtime dependency on Puppet has been removed, allowing strings to function in Puppet Enterprise 3.8 **(PDOC-80)**
|
295
|
-
- Note that the gem still requires puppet. We recommend that the strings gem be installed with puppet, as suggested in the [README](https://github.com/puppetlabs/puppet-strings/blob/main/README.md#installing-puppet-strings)
|
296
|
-
- New gemspec requirement on Ruby version 1.9.3, the oldest supported Ruby version
|
337
|
+
### Added
|
297
338
|
|
298
|
-
|
339
|
+
- Actually/pdoc 19 [#36](https://github.com/puppetlabs/puppet-strings/pull/36) ([iankronquist](https://github.com/iankronquist))
|
299
340
|
|
300
|
-
-
|
301
|
-
- As this is a complete rewrite, many known and unknown bugs from the original code were fixed along the way
|
302
|
-
- Allow strings to be installed in PE 3.8 without overwriting existing puppet and facter installations with newer gems
|
341
|
+
- Type checking/pdoc 21 [#35](https://github.com/puppetlabs/puppet-strings/pull/35) ([iankronquist](https://github.com/iankronquist))
|
303
342
|
|
304
|
-
|
343
|
+
- Dispatch params/pdoc 37 [#33](https://github.com/puppetlabs/puppet-strings/pull/33) ([iankronquist](https://github.com/iankronquist))
|
305
344
|
|
306
|
-
###
|
345
|
+
### Fixed
|
307
346
|
|
308
|
-
|
347
|
+
- Types and providers fixes [#60](https://github.com/puppetlabs/puppet-strings/pull/60) ([iankronquist](https://github.com/iankronquist))
|
309
348
|
|
310
|
-
|
349
|
+
- (PDOC-35) Format generated html properly [#59](https://github.com/puppetlabs/puppet-strings/pull/59) ([iankronquist](https://github.com/iankronquist))
|
311
350
|
|
312
|
-
|
313
|
-
- Support for JSON output **(PDOC-23)**
|
314
|
-
- Strings now has the ability to produce a JSON representation of a given puppet module
|
315
|
-
- The details of the JSON schema can be found [here](https://github.com/puppetlabs/puppet-strings/blob/main/json_dom.md)
|
316
|
-
- For details on how to generate JSON, see the [README](https://github.com/puppetlabs/puppet-strings/blob/main/README.md#running-puppet-strings)
|
317
|
-
- Migrate to ruby gems as a distribution method **(PDOC-28)**
|
318
|
-
- This is the last release of strings that will be available as a puppet module
|
319
|
-
- The 0.4.0 release will be released concurrently as a ruby gem
|
320
|
-
- After this release, all updates will only be available via the gem
|
351
|
+
- (PDOC-49) Improve warnings [#57](https://github.com/puppetlabs/puppet-strings/pull/57) ([iankronquist](https://github.com/iankronquist))
|
321
352
|
|
322
|
-
|
353
|
+
- (PDOC-45) Puppet 4x functions handle unusual names [#53](https://github.com/puppetlabs/puppet-strings/pull/53) ([iankronquist](https://github.com/iankronquist))
|
323
354
|
|
324
|
-
-
|
355
|
+
- (MAINT) Add a space between a parameter name type and its description [#51](https://github.com/puppetlabs/puppet-strings/pull/51) ([roidelapluie](https://github.com/roidelapluie))
|
325
356
|
|
326
|
-
|
357
|
+
- (PDOC-38) Prevent warnings from being issued twice [#50](https://github.com/puppetlabs/puppet-strings/pull/50) ([iankronquist](https://github.com/iankronquist))
|
327
358
|
|
328
|
-
|
359
|
+
- (PDOC-21) Duplicate warnings [#49](https://github.com/puppetlabs/puppet-strings/pull/49) ([iankronquist](https://github.com/iankronquist))
|
329
360
|
|
330
|
-
|
361
|
+
- (PDOC-21) Only create HostClass parameters once [#48](https://github.com/puppetlabs/puppet-strings/pull/48) ([iankronquist](https://github.com/iankronquist))
|
331
362
|
|
332
|
-
|
363
|
+
- (PDOC-35) Support types and providers [#46](https://github.com/puppetlabs/puppet-strings/pull/46) ([iankronquist](https://github.com/iankronquist))
|
333
364
|
|
334
|
-
|
365
|
+
- (maint) Don't print extraneous "true". [#45](https://github.com/puppetlabs/puppet-strings/pull/45) ([iankronquist](https://github.com/iankronquist))
|
335
366
|
|
336
|
-
-
|
337
|
-
- Issue correct type check warnings for defined types **(PDOC-56)**
|
338
|
-
- Allow providers, types, and defines to have the same name **(PDOC-54)**
|
367
|
+
- (PDOC-21) Check mismatched types in defined types [#44](https://github.com/puppetlabs/puppet-strings/pull/44) ([iankronquist](https://github.com/iankronquist))
|
339
368
|
|
340
|
-
|
369
|
+
- Forgot defined types [#42](https://github.com/puppetlabs/puppet-strings/pull/42) ([iankronquist](https://github.com/iankronquist))
|
341
370
|
|
342
|
-
|
371
|
+
- Nested classes/pdoc 35 [#41](https://github.com/puppetlabs/puppet-strings/pull/41) ([iankronquist](https://github.com/iankronquist))
|
343
372
|
|
344
|
-
|
345
|
-
type checking Puppet 4x functions and defined types.
|
373
|
+
- (maint) Remove unused code path [#38](https://github.com/puppetlabs/puppet-strings/pull/38) ([iankronquist](https://github.com/iankronquist))
|
346
374
|
|
347
|
-
|
348
|
-
the fix version of [0.3.0](https://tickets.puppetlabs.com/issues/?filter=15529).
|
375
|
+
- (PDOC-30) Fix Markdown parsing lists parsing [#37](https://github.com/puppetlabs/puppet-strings/pull/37) ([iankronquist](https://github.com/iankronquist))
|
349
376
|
|
350
|
-
|
377
|
+
- (PDOC-37) Warn when documented name does not match declared name [#31](https://github.com/puppetlabs/puppet-strings/pull/31) ([iankronquist](https://github.com/iankronquist))
|
351
378
|
|
352
|
-
-
|
353
|
-
- Type check Puppet 4x functions and defined types where possible and warn the user when types don't match.
|
354
|
-
- Type check defined types **(PDOC-21)**
|
355
|
-
- Type check Puppet 4x functions **(PDOC-38)** **(PDOC-19)** **(PDOC-37)**
|
356
|
-
- Output type info in generated HTML **(PDOC-19)**
|
357
|
-
- Improved warnings and logging.
|
358
|
-
- Create a consistent style for warnings. **(PDOC-49)**
|
359
|
-
- All warnings get printed on stderr.
|
360
|
-
- Yard warnings are redirected to a log file **(PDOC-38)**
|
361
|
-
- Prevent duplicate warnings **(PDOC-38)**
|
362
|
-
- Improved README installation and usage instructions.
|
363
|
-
- Installation instructions using Puppet **(PDOC-33)**
|
379
|
+
## [0.2.0](https://github.com/puppetlabs/puppet-strings/tree/0.2.0) - 2015-03-17
|
364
380
|
|
381
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.1.1...0.2.0)
|
365
382
|
|
366
|
-
|
383
|
+
### Added
|
367
384
|
|
368
|
-
-
|
369
|
-
- Fix namespacing for nested classes and defined types **(PDOC-20)**
|
385
|
+
- (PDOC-27) Don't require options for 3x functions [#26](https://github.com/puppetlabs/puppet-strings/pull/26) ([HAIL9000](https://github.com/HAIL9000))
|
370
386
|
|
387
|
+
- (PDOC-24) Add basic templates for functions [#22](https://github.com/puppetlabs/puppet-strings/pull/22) ([HAIL9000](https://github.com/HAIL9000))
|
371
388
|
|
372
|
-
|
389
|
+
- (PDOC-17) Add support for YARD tags in puppet code [#21](https://github.com/puppetlabs/puppet-strings/pull/21) ([HAIL9000](https://github.com/HAIL9000))
|
373
390
|
|
374
|
-
###
|
391
|
+
### Fixed
|
392
|
+
|
393
|
+
- Make the metadata match what's generated by the PMT [#28](https://github.com/puppetlabs/puppet-strings/pull/28) ([underscorgan](https://github.com/underscorgan))
|
394
|
+
|
395
|
+
- (PDOC-25) Fix mangled puppet namespaces [#27](https://github.com/puppetlabs/puppet-strings/pull/27) ([HAIL9000](https://github.com/HAIL9000))
|
396
|
+
|
397
|
+
- (PDOC-26) Rename Puppetx to PuppetX [#25](https://github.com/puppetlabs/puppet-strings/pull/25) ([HAIL9000](https://github.com/HAIL9000))
|
375
398
|
|
376
|
-
|
377
|
-
|
399
|
+
## [0.1.1](https://github.com/puppetlabs/puppet-strings/tree/0.1.1) - 2014-10-21
|
400
|
+
|
401
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/0.1.0...0.1.1)
|
402
|
+
|
403
|
+
### Fixed
|
378
404
|
|
379
|
-
|
405
|
+
- (PDOC-14) Fix strings to work with future parser [#19](https://github.com/puppetlabs/puppet-strings/pull/19) ([HAIL9000](https://github.com/HAIL9000))
|
380
406
|
|
381
|
-
|
382
|
-
- Custom YARD templates for classes and defined types **(PDOC-17)**
|
383
|
-
- Improved HMTL output that is more appropriate for Puppet code (especially for parameters)
|
384
|
-
- Support for the explicit list of YARD tags we will be supporting initially (@param, @return, @since, @example)
|
385
|
-
- Our own custom YARD templates which can be easily extended and tweaked
|
407
|
+
## [0.1.0](https://github.com/puppetlabs/puppet-strings/tree/0.1.0) - 2014-10-07
|
386
408
|
|
387
|
-
|
388
|
-
- Improved HMTL output that is more appropriate for listing several functions on one webpage in addition to being more consistent with the HTML produced for classes and defined types.
|
389
|
-
- Support for the explicit list of YARD tags we will be supporting initially (@param, @return, @since, @example)
|
390
|
-
- Our own custom YARD templates which can be easily extended and tweaked
|
391
|
-
- Addition of RubCop Travis CI job to ensure code quality and consistency **(PDOC-8)**
|
409
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/a9408c792ba48ffc5e59d8641a538a83197b7064...0.1.0)
|
392
410
|
|
393
|
-
|
394
|
-
|
395
|
-
-
|
396
|
-
|
411
|
+
### Added
|
412
|
+
|
413
|
+
- (PDOC-6) Allow for different puppet gem versions [#9](https://github.com/puppetlabs/puppet-strings/pull/9) ([HAIL9000](https://github.com/HAIL9000))
|
414
|
+
|
415
|
+
- Add -q option to suppress warnings for server [#6](https://github.com/puppetlabs/puppet-strings/pull/6) ([petems](https://github.com/petems))
|
416
|
+
|
417
|
+
- (PDOC-3) Rename face to strings instead of yardoc [#4](https://github.com/puppetlabs/puppet-strings/pull/4) ([HAIL9000](https://github.com/HAIL9000))
|
418
|
+
|
419
|
+
### Fixed
|
397
420
|
|
421
|
+
- Make metadata match file generated by pmt [#14](https://github.com/puppetlabs/puppet-strings/pull/14) ([underscorgan](https://github.com/underscorgan))
|
398
422
|
|
399
|
-
|
423
|
+
- (PDOC-3) Refactor prototype code to make it more readable [#7](https://github.com/puppetlabs/puppet-strings/pull/7) ([HAIL9000](https://github.com/HAIL9000))
|