puppet-lint 2.3.6 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +238 -87
- data/README.md +18 -0
- data/lib/puppet-lint.rb +1 -1
- data/lib/puppet-lint/data.rb +26 -11
- data/lib/puppet-lint/lexer.rb +97 -200
- data/lib/puppet-lint/lexer/string_slurper.rb +173 -0
- data/lib/puppet-lint/lexer/token.rb +8 -0
- data/lib/puppet-lint/optparser.rb +4 -5
- data/lib/puppet-lint/plugins/check_classes/parameter_order.rb +12 -1
- data/lib/puppet-lint/plugins/check_conditionals/case_without_default.rb +15 -1
- data/lib/puppet-lint/plugins/check_documentation/documentation.rb +4 -0
- data/lib/puppet-lint/plugins/check_resources/ensure_first_param.rb +5 -2
- data/lib/puppet-lint/plugins/check_strings/quoted_booleans.rb +1 -0
- data/lib/puppet-lint/plugins/check_strings/variables_not_enclosed.rb +71 -0
- data/lib/puppet-lint/plugins/check_whitespace/arrow_alignment.rb +1 -1
- data/lib/puppet-lint/tasks/puppet-lint.rb +14 -0
- data/lib/puppet-lint/tasks/release_test.rb +3 -1
- data/lib/puppet-lint/version.rb +1 -1
- data/spec/fixtures/test/manifests/two_warnings.pp +5 -0
- data/spec/puppet-lint/bin_spec.rb +47 -6
- data/spec/puppet-lint/data_spec.rb +12 -0
- data/spec/puppet-lint/lexer/string_slurper_spec.rb +473 -0
- data/spec/puppet-lint/lexer_spec.rb +1153 -590
- data/spec/puppet-lint/plugins/check_classes/parameter_order_spec.rb +18 -0
- data/spec/puppet-lint/plugins/check_classes/variable_scope_spec.rb +15 -1
- data/spec/puppet-lint/plugins/check_conditionals/case_without_default_spec.rb +39 -0
- data/spec/puppet-lint/plugins/check_documentation/documentation_spec.rb +18 -0
- data/spec/puppet-lint/plugins/check_resources/ensure_first_param_spec.rb +16 -0
- data/spec/puppet-lint/plugins/check_strings/double_quoted_strings_spec.rb +5 -5
- data/spec/puppet-lint/plugins/check_strings/only_variable_string_spec.rb +6 -6
- data/spec/puppet-lint/plugins/check_strings/variables_not_enclosed_spec.rb +32 -0
- data/spec/puppet-lint/plugins/check_variables/variable_is_lowercase_spec.rb +28 -0
- data/spec/spec_helper.rb +7 -5
- metadata +14 -17
- data/.gitignore +0 -12
- data/.rspec +0 -2
- data/.rubocop.yml +0 -74
- data/.rubocop_todo.yml +0 -89
- data/.travis.yml +0 -24
- data/Gemfile +0 -40
- data/Rakefile +0 -42
- data/appveyor.yml +0 -33
- data/puppet-lint.gemspec +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1009204f664cf2b2b110034e180ebebf26fb25731449a72e24a2cc5e890de99b
|
4
|
+
data.tar.gz: '09eebeffc2425b6a3984db1653527a16b9af06b71284b35612ed8d58af94a4ff'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 129ac3f77fd825c75b0fd081edf68b54a7409b642a527e097aba0f44695858b0872ff0839675005b11b3da39e8faa1b2df7ac35a82923a6cd2b645ac3c7aac96
|
7
|
+
data.tar.gz: c86f851bcd4089d805aca6e91785f6d7f8e49dc55080e8a35a98f070b1d42039b5cc69909fe2002446029fcb0d38a785da77b4872378e8850ad28d82c68f6e01
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,144 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [2.5.0](https://github.com/rodjek/puppet-lint/tree/2.5.0) (2021-07-23)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.4.2...2.5.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Include check name in log output by default [\#883](https://github.com/rodjek/puppet-lint/pull/883) ([usev6](https://github.com/usev6))
|
10
|
+
|
11
|
+
**Fixed bugs:**
|
12
|
+
|
13
|
+
- Array operations on parameters confuse puppet-lint [\#930](https://github.com/rodjek/puppet-lint/issues/930)
|
14
|
+
- Wrong warrning: "variable contains an uppercase" [\#929](https://github.com/rodjek/puppet-lint/issues/929)
|
15
|
+
- Erroneous "WARNING: indentation of =\> is not properly aligned" since 2.4.0 [\#912](https://github.com/rodjek/puppet-lint/issues/912)
|
16
|
+
- NoMethodError: undefined method `next\_token\_of' for nil:NilClass [\#906](https://github.com/rodjek/puppet-lint/issues/906)
|
17
|
+
- Lint failure on reduce function [\#869](https://github.com/rodjek/puppet-lint/issues/869)
|
18
|
+
- lint failure on 'ensure' word in dsc\_lite module [\#866](https://github.com/rodjek/puppet-lint/issues/866)
|
19
|
+
- Content of heredocs should not be checked [\#851](https://github.com/rodjek/puppet-lint/issues/851)
|
20
|
+
- Whoops! It looks like puppet-lint has encountered an error that it doesn't [\#839](https://github.com/rodjek/puppet-lint/issues/839)
|
21
|
+
|
22
|
+
**Closed issues:**
|
23
|
+
|
24
|
+
- heredoc prematurely terminated [\#940](https://github.com/rodjek/puppet-lint/issues/940)
|
25
|
+
- Heredoc syntax error [\#935](https://github.com/rodjek/puppet-lint/issues/935)
|
26
|
+
- Lint for ' [\#927](https://github.com/rodjek/puppet-lint/issues/927)
|
27
|
+
- puppet-lint-class\_parameter-check fails on voxpupuli/collectd [\#926](https://github.com/rodjek/puppet-lint/issues/926)
|
28
|
+
- puppet-lint error [\#917](https://github.com/rodjek/puppet-lint/issues/917)
|
29
|
+
- Improper "unquoted node name found" [\#904](https://github.com/rodjek/puppet-lint/issues/904)
|
30
|
+
- 2.4.x regression with puppet-lint-legacy\_facts-check [\#902](https://github.com/rodjek/puppet-lint/issues/902)
|
31
|
+
- puppet-lint a puppet type in voxpupuli-corosync [\#857](https://github.com/rodjek/puppet-lint/issues/857)
|
32
|
+
- Create and publish a docker image for puppet-lint [\#794](https://github.com/rodjek/puppet-lint/issues/794)
|
33
|
+
|
34
|
+
**Merged pull requests:**
|
35
|
+
|
36
|
+
- Select parameter tokens based on preceeding code token [\#934](https://github.com/rodjek/puppet-lint/pull/934) ([rodjek](https://github.com/rodjek))
|
37
|
+
- Move most CI to GH actions [\#933](https://github.com/rodjek/puppet-lint/pull/933) ([rodjek](https://github.com/rodjek))
|
38
|
+
- Correctly lex non-keyword type tokens in interpolation [\#932](https://github.com/rodjek/puppet-lint/pull/932) ([rodjek](https://github.com/rodjek))
|
39
|
+
- Disallow empty lines between docs and class/define [\#931](https://github.com/rodjek/puppet-lint/pull/931) ([ekohl](https://github.com/ekohl))
|
40
|
+
- Improve Rake task [\#919](https://github.com/rodjek/puppet-lint/pull/919) ([raphink](https://github.com/raphink))
|
41
|
+
- \(\#912\) Count consumed chars not bytes when slurping strings [\#915](https://github.com/rodjek/puppet-lint/pull/915) ([rodjek](https://github.com/rodjek))
|
42
|
+
- Do not rely on tokens array positioning when fixing ensure\_first\_param problems [\#914](https://github.com/rodjek/puppet-lint/pull/914) ([rodjek](https://github.com/rodjek))
|
43
|
+
- Only run test coverage once [\#913](https://github.com/rodjek/puppet-lint/pull/913) ([rodjek](https://github.com/rodjek))
|
44
|
+
- add MIT license to gemspec [\#910](https://github.com/rodjek/puppet-lint/pull/910) ([bastelfreak](https://github.com/bastelfreak))
|
45
|
+
- Improve spelling for some tests [\#909](https://github.com/rodjek/puppet-lint/pull/909) ([usev6](https://github.com/usev6))
|
46
|
+
- \(\#851\) Ensure heredoc ending tag is on its own line [\#903](https://github.com/rodjek/puppet-lint/pull/903) ([rodjek](https://github.com/rodjek))
|
47
|
+
- \(\#794\) Dockerfile for puppet-lint [\#901](https://github.com/rodjek/puppet-lint/pull/901) ([rodjek](https://github.com/rodjek))
|
48
|
+
|
49
|
+
## [2.4.2](https://github.com/rodjek/puppet-lint/tree/2.4.2) (2019-10-31)
|
50
|
+
|
51
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.4.1...2.4.2)
|
52
|
+
|
53
|
+
**Fixed bugs:**
|
54
|
+
|
55
|
+
- `ERROR: Syntax error (unterminated string)` with 2.4.1 [\#899](https://github.com/rodjek/puppet-lint/issues/899)
|
56
|
+
- Double quoted string containing variable named "node" mis-tokenized [\#897](https://github.com/rodjek/puppet-lint/issues/897)
|
57
|
+
- 2.4.1 says Syntax error, but code runs fine [\#891](https://github.com/rodjek/puppet-lint/issues/891)
|
58
|
+
- Error with regex variable with multiple `|`s. [\#859](https://github.com/rodjek/puppet-lint/issues/859)
|
59
|
+
|
60
|
+
**Closed issues:**
|
61
|
+
|
62
|
+
- WARNING: double quoted string containing no variables [\#895](https://github.com/rodjek/puppet-lint/issues/895)
|
63
|
+
|
64
|
+
**Merged pull requests:**
|
65
|
+
|
66
|
+
- Fix regression in tokenization in double-quoted strings [\#898](https://github.com/rodjek/puppet-lint/pull/898) ([seanmil](https://github.com/seanmil))
|
67
|
+
- Speed up calculation of resource indexes [\#893](https://github.com/rodjek/puppet-lint/pull/893) ([usev6](https://github.com/usev6))
|
68
|
+
- Search end of string before assuming escaped quote [\#892](https://github.com/rodjek/puppet-lint/pull/892) ([usev6](https://github.com/usev6))
|
69
|
+
- Allow parsing of regexes as rvalues [\#882](https://github.com/rodjek/puppet-lint/pull/882) ([usev6](https://github.com/usev6))
|
70
|
+
|
71
|
+
## [2.4.1](https://github.com/rodjek/puppet-lint/tree/2.4.1) (2019-10-09)
|
72
|
+
|
73
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.4.0...2.4.1)
|
74
|
+
|
75
|
+
**Fixed bugs:**
|
76
|
+
|
77
|
+
- Puppet-lint 2.4.0 throws misleading warning on double-quoted strings with escaped variables [\#886](https://github.com/rodjek/puppet-lint/issues/886)
|
78
|
+
- Puppet-lint 2.4.0 - ERROR: Syntax error on line x [\#887](https://github.com/rodjek/puppet-lint/issues/887)
|
79
|
+
- Breaks after 2.4.0 upgrade [\#885](https://github.com/rodjek/puppet-lint/issues/885)
|
80
|
+
|
81
|
+
**Merged pull requests:**
|
82
|
+
|
83
|
+
- Fix escaped ${} enclosure handling when slurping double quoted strings [\#889](https://github.com/rodjek/puppet-lint/pull/889) ([rodjek](https://github.com/rodjek))
|
84
|
+
- Fix non-indented heredoc parsing [\#888](https://github.com/rodjek/puppet-lint/pull/888) ([rodjek](https://github.com/rodjek))
|
85
|
+
|
86
|
+
## [2.4.0](https://github.com/rodjek/puppet-lint/tree/2.4.0) (2019-10-08)
|
87
|
+
|
88
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.6...2.4.0)
|
89
|
+
|
90
|
+
**Fixed bugs:**
|
91
|
+
|
92
|
+
- Syntax error on Pattern data type [\#833](https://github.com/rodjek/puppet-lint/issues/833)
|
93
|
+
- Command line options do not override options from config files [\#879](https://github.com/rodjek/puppet-lint/issues/879)
|
94
|
+
- Fix for variables\_not\_enclosed incorrectly handles variables followed by a dash [\#836](https://github.com/rodjek/puppet-lint/issues/836)
|
95
|
+
- Error with puppet-lint --fix: NoMethodError: undefined method `next\_token' for nil:NilClass [\#831](https://github.com/rodjek/puppet-lint/issues/831)
|
96
|
+
- TypeError: no implicit conversion of nil into String [\#830](https://github.com/rodjek/puppet-lint/issues/830)
|
97
|
+
- Selector with 'default' case disables check for missing default in outer case statement [\#829](https://github.com/rodjek/puppet-lint/issues/829)
|
98
|
+
- undefined method `next\_token' for nil:NilClass [\#824](https://github.com/rodjek/puppet-lint/issues/824)
|
99
|
+
- NoMethodError: undefined method `next\_token' for nil:NilClass [\#790](https://github.com/rodjek/puppet-lint/issues/790)
|
100
|
+
- Puppet-lint --fix silently removes necessary $ inside double quoted strings [\#773](https://github.com/rodjek/puppet-lint/issues/773)
|
101
|
+
- It looks like puppet-lint has encountered an error that it doesn't know how to handle [\#768](https://github.com/rodjek/puppet-lint/issues/768)
|
102
|
+
- puppet-lint lexer string interpolation needs to be updated to match PUP-5887 changes [\#747](https://github.com/rodjek/puppet-lint/issues/747)
|
103
|
+
- Syntax error causes 'Whoops!' [\#740](https://github.com/rodjek/puppet-lint/issues/740)
|
104
|
+
- "quoted boolean value found" in hash value should not raise a warning. [\#474](https://github.com/rodjek/puppet-lint/issues/474)
|
105
|
+
|
106
|
+
**Closed issues:**
|
107
|
+
|
108
|
+
- Error when running puppet-lint [\#862](https://github.com/rodjek/puppet-lint/issues/862)
|
109
|
+
- puppet-lint crashes with mispelled namespace seperators [\#853](https://github.com/rodjek/puppet-lint/issues/853)
|
110
|
+
- NoMethodError: undefined method `prev\_token' for nil:NilClass [\#845](https://github.com/rodjek/puppet-lint/issues/845)
|
111
|
+
- Lint incorrectly errors on quoted bool [\#844](https://github.com/rodjek/puppet-lint/issues/844)
|
112
|
+
- Type\[\]\] raises NoMethodError [\#843](https://github.com/rodjek/puppet-lint/issues/843)
|
113
|
+
- Whoops! It looks like puppet-lint has encountered an error that it doesn't know how to handle. [\#842](https://github.com/rodjek/puppet-lint/issues/842)
|
114
|
+
- Whoops! It looks like puppet-lint has encountered an error that it doesn't [\#838](https://github.com/rodjek/puppet-lint/issues/838)
|
115
|
+
- Incorrectly wrapped hash variable inside double quotes [\#826](https://github.com/rodjek/puppet-lint/issues/826)
|
116
|
+
- Test puppet-lint against Ruby 2.5.x [\#818](https://github.com/rodjek/puppet-lint/issues/818)
|
117
|
+
- nested ensure misdetected as not coming first. [\#410](https://github.com/rodjek/puppet-lint/issues/410)
|
118
|
+
|
119
|
+
**Merged pull requests:**
|
120
|
+
|
121
|
+
- README - Add GitHub Actions action [\#868](https://github.com/rodjek/puppet-lint/pull/868) ([ScottBrenner](https://github.com/ScottBrenner))
|
122
|
+
- Update TravisCI config to use trusty image [\#867](https://github.com/rodjek/puppet-lint/pull/867) ([rodjek](https://github.com/rodjek))
|
123
|
+
- Use the default travis rubygems & bundler [\#860](https://github.com/rodjek/puppet-lint/pull/860) ([rodjek](https://github.com/rodjek))
|
124
|
+
- Add `Sensitive` to the list of KNOWN\_TOKEN TYPES [\#858](https://github.com/rodjek/puppet-lint/pull/858) ([alexjfisher](https://github.com/alexjfisher))
|
125
|
+
- Avoid internal error for typoed namespace [\#855](https://github.com/rodjek/puppet-lint/pull/855) ([usev6](https://github.com/usev6))
|
126
|
+
- Use lookahead assertion for matching function name [\#854](https://github.com/rodjek/puppet-lint/pull/854) ([usev6](https://github.com/usev6))
|
127
|
+
- Resource: fix nested ensure error. [\#848](https://github.com/rodjek/puppet-lint/pull/848) ([keur](https://github.com/keur))
|
128
|
+
- Rewrite double quoted string handling for nested interpolation [\#846](https://github.com/rodjek/puppet-lint/pull/846) ([rodjek](https://github.com/rodjek))
|
129
|
+
- Allow for spaces in the heredoc tag [\#841](https://github.com/rodjek/puppet-lint/pull/841) ([jarretlavallee](https://github.com/jarretlavallee))
|
130
|
+
- Recognizes multiline regexes [\#835](https://github.com/rodjek/puppet-lint/pull/835) ([jcbollinger](https://github.com/jcbollinger))
|
131
|
+
- Handle unenclosed variables followed by dashes when fixing [\#881](https://github.com/rodjek/puppet-lint/pull/881) ([rodjek](https://github.com/rodjek))
|
132
|
+
- Let command line args override config from files [\#880](https://github.com/rodjek/puppet-lint/pull/880) ([usev6](https://github.com/usev6))
|
133
|
+
- Ignore hash keys when checking resource parameter order [\#877](https://github.com/rodjek/puppet-lint/pull/877) ([rodjek](https://github.com/rodjek))
|
134
|
+
- Only look for 'default' at first level of 'case' statement [\#876](https://github.com/rodjek/puppet-lint/pull/876) ([usev6](https://github.com/usev6))
|
135
|
+
- Report syntax error on unbalanced braces [\#875](https://github.com/rodjek/puppet-lint/pull/875) ([rodjek](https://github.com/rodjek))
|
136
|
+
- Include hash/array references when enclosing variables [\#874](https://github.com/rodjek/puppet-lint/pull/874) ([rodjek](https://github.com/rodjek))
|
137
|
+
- Disable quoted\_booleans check by default [\#873](https://github.com/rodjek/puppet-lint/pull/873) ([rodjek](https://github.com/rodjek))
|
138
|
+
- Test against Ruby 2.5 & 2.6 [\#872](https://github.com/rodjek/puppet-lint/pull/872) ([rodjek](https://github.com/rodjek))
|
2
139
|
|
3
140
|
## [2.3.6](https://github.com/rodjek/puppet-lint/tree/2.3.6) (2018-07-09)
|
141
|
+
|
4
142
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.5...2.3.6)
|
5
143
|
|
6
144
|
**Fixed bugs:**
|
@@ -21,6 +159,7 @@
|
|
21
159
|
- Run all the checks before fixing problems [\#815](https://github.com/rodjek/puppet-lint/pull/815) ([rodjek](https://github.com/rodjek))
|
22
160
|
|
23
161
|
## [2.3.5](https://github.com/rodjek/puppet-lint/tree/2.3.5) (2018-03-27)
|
162
|
+
|
24
163
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.4...2.3.5)
|
25
164
|
|
26
165
|
**Fixed bugs:**
|
@@ -32,6 +171,7 @@
|
|
32
171
|
- Make PuppetLint::OptParser.build argument optional [\#813](https://github.com/rodjek/puppet-lint/pull/813) ([rodjek](https://github.com/rodjek))
|
33
172
|
|
34
173
|
## [2.3.4](https://github.com/rodjek/puppet-lint/tree/2.3.4) (2018-03-26)
|
174
|
+
|
35
175
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.3...2.3.4)
|
36
176
|
|
37
177
|
**Implemented enhancements:**
|
@@ -56,34 +196,44 @@
|
|
56
196
|
- Add support for passing backslash separated paths to puppet-lint [\#769](https://github.com/rodjek/puppet-lint/pull/769) ([rodjek](https://github.com/rodjek))
|
57
197
|
|
58
198
|
## [2.3.3](https://github.com/rodjek/puppet-lint/tree/2.3.3) (2017-09-28)
|
199
|
+
|
59
200
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.2...2.3.3)
|
60
201
|
|
61
202
|
**Closed issues:**
|
62
203
|
|
63
204
|
- 2.3.2 - Rakefile's ignore\_paths not respected [\#760](https://github.com/rodjek/puppet-lint/issues/760)
|
64
205
|
- 2.3.1 - Puppet lint fails with 1.8.7-p371 and Puppet 3.8.0 [\#759](https://github.com/rodjek/puppet-lint/issues/759)
|
65
|
-
- 2.3.1: puppet-lint does not show errors/warnings --error-level option. [\#756](https://github.com/rodjek/puppet-lint/issues/756)
|
66
206
|
|
67
207
|
**Merged pull requests:**
|
68
208
|
|
69
209
|
- Add some basic acceptance tests [\#764](https://github.com/rodjek/puppet-lint/pull/764) ([rodjek](https://github.com/rodjek))
|
210
|
+
- Change acceptance tests to work with Ruby 1.8.7 [\#767](https://github.com/rodjek/puppet-lint/pull/767) ([rodjek](https://github.com/rodjek))
|
70
211
|
- Restore Ruby 1.8.7 support [\#763](https://github.com/rodjek/puppet-lint/pull/763) ([rodjek](https://github.com/rodjek))
|
71
212
|
- Don't override ignore\_paths set in rake task with default value [\#762](https://github.com/rodjek/puppet-lint/pull/762) ([rodjek](https://github.com/rodjek))
|
72
213
|
- Add spec for issue raised in \#754 \#756 [\#761](https://github.com/rodjek/puppet-lint/pull/761) ([rodjek](https://github.com/rodjek))
|
73
214
|
- Fix setup of default log\_format in PuppetLink.configuration when it is empty. [\#757](https://github.com/rodjek/puppet-lint/pull/757) ([zekefast](https://github.com/zekefast))
|
74
215
|
|
75
216
|
## [2.3.2](https://github.com/rodjek/puppet-lint/tree/2.3.2) (2017-09-27)
|
217
|
+
|
76
218
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.1...2.3.2)
|
77
219
|
|
78
|
-
**
|
220
|
+
**Closed issues:**
|
79
221
|
|
80
|
-
-
|
222
|
+
- rake task now failing [\#754](https://github.com/rodjek/puppet-lint/issues/754)
|
223
|
+
|
224
|
+
**Merged pull requests:**
|
225
|
+
|
226
|
+
- 2.3.2 release [\#758](https://github.com/rodjek/puppet-lint/pull/758) ([tphoney](https://github.com/tphoney))
|
227
|
+
- fix logic in method\_missing [\#755](https://github.com/rodjek/puppet-lint/pull/755) ([tphoney](https://github.com/tphoney))
|
81
228
|
|
82
229
|
## [2.3.1](https://github.com/rodjek/puppet-lint/tree/2.3.1) (2017-09-27)
|
230
|
+
|
83
231
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.3.0...2.3.1)
|
84
232
|
|
85
233
|
**Fixed bugs:**
|
86
234
|
|
235
|
+
- `incompatible encoding regexp match` for non-printing characters in place of space [\#693](https://github.com/rodjek/puppet-lint/issues/693)
|
236
|
+
- Unhandled error case [\#691](https://github.com/rodjek/puppet-lint/issues/691)
|
87
237
|
- NoMethodError: undefined method `type' for nil:NilClass [\#732](https://github.com/rodjek/puppet-lint/issues/732)
|
88
238
|
- NoMethodError: undefined method `end\_with?' for nil:NilClass [\#727](https://github.com/rodjek/puppet-lint/issues/727)
|
89
239
|
- puppet-lint not applying some lint:ignore statements when there are more then 2 on the same line [\#726](https://github.com/rodjek/puppet-lint/issues/726)
|
@@ -91,32 +241,29 @@
|
|
91
241
|
- invalid byte sequence in UTF-8 in selmodule-example.pp [\#714](https://github.com/rodjek/puppet-lint/issues/714)
|
92
242
|
- puppet-lint --fix encountered an error that it doesn't know how to handle [\#706](https://github.com/rodjek/puppet-lint/issues/706)
|
93
243
|
- Mangled file after running puppet-lint due to chained function call [\#703](https://github.com/rodjek/puppet-lint/issues/703)
|
94
|
-
- `incompatible encoding regexp match` for non-printing characters in place of space [\#693](https://github.com/rodjek/puppet-lint/issues/693)
|
95
|
-
- Unhandled error case [\#691](https://github.com/rodjek/puppet-lint/issues/691)
|
96
244
|
|
97
245
|
**Closed issues:**
|
98
246
|
|
99
247
|
- puppet-lint has encountered an error that it doesn't know how to handle [\#750](https://github.com/rodjek/puppet-lint/issues/750)
|
100
|
-
- Variable use like "a+1 = ${$a + 1}" isn't reported but silently changed by --fix to "a+1 = ${a} + 1" [\#749](https://github.com/rodjek/puppet-lint/issues/749)
|
101
|
-
- using --fix changes line endings [\#748](https://github.com/rodjek/puppet-lint/issues/748)
|
102
248
|
- Puppet lint syntax error - puppet parser validate no issues [\#746](https://github.com/rodjek/puppet-lint/issues/746)
|
103
|
-
- Error not handled [\#745](https://github.com/rodjek/puppet-lint/issues/745)
|
104
249
|
- Whoops, not sure why. ArgumentError: bad value for range [\#742](https://github.com/rodjek/puppet-lint/issues/742)
|
105
250
|
- ArgumentError: bad value for range [\#741](https://github.com/rodjek/puppet-lint/issues/741)
|
106
|
-
- Line numbers off after multi-line strings with variables [\#736](https://github.com/rodjek/puppet-lint/issues/736)
|
107
251
|
- Whoops! It looks like puppet-lint has encountered an error [\#729](https://github.com/rodjek/puppet-lint/issues/729)
|
108
252
|
- puppet lint config log\_format not working [\#725](https://github.com/rodjek/puppet-lint/issues/725)
|
109
|
-
- Quoted booleans in Puppet5 for Enum type declarations. [\#720](https://github.com/rodjek/puppet-lint/issues/720)
|
110
253
|
- Chaining arrow syntax fix introduces trailing whitespaces [\#695](https://github.com/rodjek/puppet-lint/issues/695)
|
111
254
|
- Refactor check\_comments.rb [\#587](https://github.com/rodjek/puppet-lint/issues/587)
|
112
255
|
- Puppethack 12/2016 Issues [\#583](https://github.com/rodjek/puppet-lint/issues/583)
|
113
256
|
- Allow multiple block-level ignore comments [\#498](https://github.com/rodjek/puppet-lint/issues/498)
|
114
257
|
- puppet-lint crashes with "invalid byte sequence in UTF-8 \(ArgumentError\)" [\#458](https://github.com/rodjek/puppet-lint/issues/458)
|
258
|
+
- Variable use like "a+1 = ${$a + 1}" isn't reported but silently changed by --fix to "a+1 = ${a} + 1" [\#749](https://github.com/rodjek/puppet-lint/issues/749)
|
259
|
+
- using --fix changes line endings [\#748](https://github.com/rodjek/puppet-lint/issues/748)
|
260
|
+
- Error not handled [\#745](https://github.com/rodjek/puppet-lint/issues/745)
|
261
|
+
- Line numbers off after multi-line strings with variables [\#736](https://github.com/rodjek/puppet-lint/issues/736)
|
262
|
+
- Quoted booleans in Puppet5 for Enum type declarations. [\#720](https://github.com/rodjek/puppet-lint/issues/720)
|
263
|
+
- Plugins reorganization: One file per check [\#657](https://github.com/rodjek/puppet-lint/issues/657)
|
115
264
|
|
116
265
|
**Merged pull requests:**
|
117
266
|
|
118
|
-
- Render the ${} enclosures as part of the string tokens [\#752](https://github.com/rodjek/puppet-lint/pull/752) ([rodjek](https://github.com/rodjek))
|
119
|
-
- Open manifest as binary when writing fixed manifest [\#751](https://github.com/rodjek/puppet-lint/pull/751) ([rodjek](https://github.com/rodjek))
|
120
267
|
- Remove monkeypatches to implement String\#% [\#744](https://github.com/rodjek/puppet-lint/pull/744) ([rodjek](https://github.com/rodjek))
|
121
268
|
- Add unit tests for PuppetLint::Checks [\#743](https://github.com/rodjek/puppet-lint/pull/743) ([rodjek](https://github.com/rodjek))
|
122
269
|
- Update CI configuration [\#739](https://github.com/rodjek/puppet-lint/pull/739) ([rodjek](https://github.com/rodjek))
|
@@ -125,38 +272,41 @@
|
|
125
272
|
- Split control comments into words before parsing [\#735](https://github.com/rodjek/puppet-lint/pull/735) ([rodjek](https://github.com/rodjek))
|
126
273
|
- Handle unicode spaces in the tokeniser [\#734](https://github.com/rodjek/puppet-lint/pull/734) ([rodjek](https://github.com/rodjek))
|
127
274
|
- Handle SE Linux policy package files [\#733](https://github.com/rodjek/puppet-lint/pull/733) ([rodjek](https://github.com/rodjek))
|
275
|
+
- Chaining arrow syntax fix introduces trailing whitespaces [\#708](https://github.com/rodjek/puppet-lint/pull/708) ([rnelson0](https://github.com/rnelson0))
|
276
|
+
- Plugins: Improve code readability [\#658](https://github.com/rodjek/puppet-lint/pull/658) ([Darhazer](https://github.com/Darhazer))
|
277
|
+
- Render the ${} enclosures as part of the string tokens [\#752](https://github.com/rodjek/puppet-lint/pull/752) ([rodjek](https://github.com/rodjek))
|
278
|
+
- Open manifest as binary when writing fixed manifest [\#751](https://github.com/rodjek/puppet-lint/pull/751) ([rodjek](https://github.com/rodjek))
|
128
279
|
- Take into account Optional data type when checking parameter order [\#731](https://github.com/rodjek/puppet-lint/pull/731) ([rodjek](https://github.com/rodjek))
|
129
280
|
- Read the manifest files as UTF-8 [\#730](https://github.com/rodjek/puppet-lint/pull/730) ([rodjek](https://github.com/rodjek))
|
130
281
|
- Improve handling of unterminated double quoted strings [\#728](https://github.com/rodjek/puppet-lint/pull/728) ([rodjek](https://github.com/rodjek))
|
131
|
-
- Chaining arrow syntax fix introduces trailing whitespaces [\#708](https://github.com/rodjek/puppet-lint/pull/708) ([rnelson0](https://github.com/rnelson0))
|
132
282
|
- Add helper methods to add and remove tokens while maintaining the token links [\#694](https://github.com/rodjek/puppet-lint/pull/694) ([Darhazer](https://github.com/Darhazer))
|
283
|
+
- Check that arrow is on the line of right operand [\#672](https://github.com/rodjek/puppet-lint/pull/672) ([Darhazer](https://github.com/Darhazer))
|
284
|
+
- One file per plugin. Fixes \#657 [\#671](https://github.com/rodjek/puppet-lint/pull/671) ([Darhazer](https://github.com/Darhazer))
|
133
285
|
- Code style improvements [\#661](https://github.com/rodjek/puppet-lint/pull/661) ([Darhazer](https://github.com/Darhazer))
|
134
|
-
- Plugins: Improve code readability [\#658](https://github.com/rodjek/puppet-lint/pull/658) ([Darhazer](https://github.com/Darhazer))
|
135
286
|
|
136
287
|
## [2.3.0](https://github.com/rodjek/puppet-lint/tree/2.3.0) (2017-07-12)
|
288
|
+
|
137
289
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.2.1...2.3.0)
|
138
290
|
|
139
291
|
**Closed issues:**
|
140
292
|
|
141
293
|
- Inappropriate =\> Indentation Warning in Hash [\#698](https://github.com/rodjek/puppet-lint/issues/698)
|
142
294
|
- Regression: arrow\_alignment check broken between 2.1.1 and 2.2.x releases when left side contains text after variable interpolation [\#697](https://github.com/rodjek/puppet-lint/issues/697)
|
143
|
-
- Check `
|
295
|
+
- Check `arrow_on_right_operand_line` is undocumented. [\#688](https://github.com/rodjek/puppet-lint/issues/688)
|
144
296
|
|
145
297
|
**Merged pull requests:**
|
146
298
|
|
147
299
|
- \(maint\) Fixes puppet-lint json formatting to output valid json to stdout [\#719](https://github.com/rodjek/puppet-lint/pull/719) ([bmjen](https://github.com/bmjen))
|
148
300
|
- Permit puppet-lint to load "prerelease" gems [\#718](https://github.com/rodjek/puppet-lint/pull/718) ([kpaulisse](https://github.com/kpaulisse))
|
149
301
|
- Document the configuration file better [\#713](https://github.com/rodjek/puppet-lint/pull/713) ([binford2k](https://github.com/binford2k))
|
150
|
-
- Replace deprecated plugin with an improved alternative. [\#712](https://github.com/rodjek/puppet-lint/pull/712) ([deanwilson](https://github.com/deanwilson))
|
151
302
|
- Readme formatting fixes [\#709](https://github.com/rodjek/puppet-lint/pull/709) ([dbeckham](https://github.com/dbeckham))
|
152
303
|
- Readme edit [\#707](https://github.com/rodjek/puppet-lint/pull/707) ([jbondpdx](https://github.com/jbondpdx))
|
153
304
|
- Take into account length of DQPOST token when updating column number [\#701](https://github.com/rodjek/puppet-lint/pull/701) ([dbeckham](https://github.com/dbeckham))
|
154
305
|
- Add pattern support to rake task [\#700](https://github.com/rodjek/puppet-lint/pull/700) ([dbeckham](https://github.com/dbeckham))
|
155
306
|
- Note arrow\_on\_right\_operand\_line in the README [\#690](https://github.com/rodjek/puppet-lint/pull/690) ([rodjek](https://github.com/rodjek))
|
156
|
-
- Document the arrow\_on\_right\_operand\_line check on the website [\#689](https://github.com/rodjek/puppet-lint/pull/689) ([rodjek](https://github.com/rodjek))
|
157
|
-
- One file per plugin. Fixes \#657 [\#671](https://github.com/rodjek/puppet-lint/pull/671) ([Darhazer](https://github.com/Darhazer))
|
158
307
|
|
159
308
|
## [2.2.1](https://github.com/rodjek/puppet-lint/tree/2.2.1) (2017-03-29)
|
309
|
+
|
160
310
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.2.0...2.2.1)
|
161
311
|
|
162
312
|
**Closed issues:**
|
@@ -172,11 +322,11 @@
|
|
172
322
|
- level\_tokens\[0\] can be nil if there is no params in the top level block [\#682](https://github.com/rodjek/puppet-lint/pull/682) ([rodjek](https://github.com/rodjek))
|
173
323
|
|
174
324
|
## [2.2.0](https://github.com/rodjek/puppet-lint/tree/2.2.0) (2017-03-29)
|
325
|
+
|
175
326
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.1.1...2.2.0)
|
176
327
|
|
177
328
|
**Closed issues:**
|
178
329
|
|
179
|
-
- Plugins reorganization: One file per check [\#657](https://github.com/rodjek/puppet-lint/issues/657)
|
180
330
|
- 2.1.1 git tag [\#652](https://github.com/rodjek/puppet-lint/issues/652)
|
181
331
|
- Quoted boolean triggers on the command 'true' [\#646](https://github.com/rodjek/puppet-lint/issues/646)
|
182
332
|
- Namevars detected as optional parameters [\#633](https://github.com/rodjek/puppet-lint/issues/633)
|
@@ -202,16 +352,14 @@
|
|
202
352
|
- Heredoc triggers exception in arrow\_alignment check [\#578](https://github.com/rodjek/puppet-lint/issues/578)
|
203
353
|
- Each + With = Fake positive top-scope variable detection [\#576](https://github.com/rodjek/puppet-lint/issues/576)
|
204
354
|
- Top-scope variable warning on nested each loops [\#548](https://github.com/rodjek/puppet-lint/issues/548)
|
205
|
-
- `
|
355
|
+
- `arrow_alignment --fix` doesn't indent keys when introducing line breaks; erroneously reports success [\#506](https://github.com/rodjek/puppet-lint/issues/506)
|
206
356
|
- heredoc escape gives syntax error [\#430](https://github.com/rodjek/puppet-lint/issues/430)
|
207
357
|
- NoMethodError when multiple heredocs are used [\#395](https://github.com/rodjek/puppet-lint/issues/395)
|
208
358
|
|
209
359
|
**Merged pull requests:**
|
210
360
|
|
211
361
|
- Support double quoted strings inside interpolated values in double quoted strings [\#676](https://github.com/rodjek/puppet-lint/pull/676) ([rodjek](https://github.com/rodjek))
|
212
|
-
- Check that arrow is on the line of right operand [\#672](https://github.com/rodjek/puppet-lint/pull/672) ([Darhazer](https://github.com/Darhazer))
|
213
362
|
- Deal with ruby 1.8.7 gem issues [\#630](https://github.com/rodjek/puppet-lint/pull/630) ([mterzo](https://github.com/mterzo))
|
214
|
-
- Plugin review; disable unnecessary plugins [\#567](https://github.com/rodjek/puppet-lint/pull/567) ([rnelson0](https://github.com/rnelson0))
|
215
363
|
- Ignore selectors when finding resource type [\#678](https://github.com/rodjek/puppet-lint/pull/678) ([rodjek](https://github.com/rodjek))
|
216
364
|
- Fix for arrow\_alignment bugs in \#506 [\#677](https://github.com/rodjek/puppet-lint/pull/677) ([rodjek](https://github.com/rodjek))
|
217
365
|
- Don't silently remove unnecessary $ from enclosed variables [\#674](https://github.com/rodjek/puppet-lint/pull/674) ([rodjek](https://github.com/rodjek))
|
@@ -233,6 +381,7 @@
|
|
233
381
|
- Add LoadError to fix broken tests [\#631](https://github.com/rodjek/puppet-lint/pull/631) ([davidmogar](https://github.com/davidmogar))
|
234
382
|
|
235
383
|
## [2.1.1](https://github.com/rodjek/puppet-lint/tree/2.1.1) (2017-02-15)
|
384
|
+
|
236
385
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.1.0...2.1.1)
|
237
386
|
|
238
387
|
**Closed issues:**
|
@@ -254,20 +403,19 @@
|
|
254
403
|
- Do not test against Ruby 2.2 [\#613](https://github.com/rodjek/puppet-lint/pull/613) ([ghoneycutt](https://github.com/ghoneycutt))
|
255
404
|
|
256
405
|
## [2.1.0](https://github.com/rodjek/puppet-lint/tree/2.1.0) (2016-12-30)
|
406
|
+
|
257
407
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.0.2...2.1.0)
|
258
408
|
|
259
409
|
**Closed issues:**
|
260
410
|
|
261
411
|
- Excessive number of warnings from code\_on\_top\_scope [\#579](https://github.com/rodjek/puppet-lint/issues/579)
|
262
412
|
- Syntax error for references starting with Regexp [\#566](https://github.com/rodjek/puppet-lint/issues/566)
|
263
|
-
- --fix flag discoverability is low [\#556](https://github.com/rodjek/puppet-lint/issues/556)
|
264
413
|
- Module names must only contain lowercase letters [\#554](https://github.com/rodjek/puppet-lint/issues/554)
|
265
414
|
- Remove formatting with `linenumber` [\#539](https://github.com/rodjek/puppet-lint/issues/539)
|
266
415
|
- names\_containing\_dash is broken and unignorable [\#534](https://github.com/rodjek/puppet-lint/issues/534)
|
267
416
|
- Puppet-lint 2.0 fails on unquoted string starting with underscore. [\#531](https://github.com/rodjek/puppet-lint/issues/531)
|
268
417
|
- puppet-lint reports incorrect line numbers [\#403](https://github.com/rodjek/puppet-lint/issues/403)
|
269
418
|
- Release version 2.1.0 [\#610](https://github.com/rodjek/puppet-lint/issues/610)
|
270
|
-
- No documentation on how to use plugins [\#602](https://github.com/rodjek/puppet-lint/issues/602)
|
271
419
|
- incorrect error on inline template [\#545](https://github.com/rodjek/puppet-lint/issues/545)
|
272
420
|
- parameter\_order check does not work default hash is added in parameter [\#544](https://github.com/rodjek/puppet-lint/issues/544)
|
273
421
|
- Incorrect warning of required parameter when using array that includes variable. [\#537](https://github.com/rodjek/puppet-lint/issues/537)
|
@@ -277,7 +425,6 @@
|
|
277
425
|
- Start a CHANGELOG, make updates part of the build workflow [\#479](https://github.com/rodjek/puppet-lint/issues/479)
|
278
426
|
- Nested future scope blocks lose local variables from parent scopes. [\#456](https://github.com/rodjek/puppet-lint/issues/456)
|
279
427
|
- block-local variables \(|$x|\) don't properly get recognized when used as arrays or hashes [\#450](https://github.com/rodjek/puppet-lint/issues/450)
|
280
|
-
- lint ignore comments feature not documented [\#369](https://github.com/rodjek/puppet-lint/issues/369)
|
281
428
|
|
282
429
|
**Merged pull requests:**
|
283
430
|
|
@@ -290,17 +437,13 @@
|
|
290
437
|
- Multi line strings [\#570](https://github.com/rodjek/puppet-lint/pull/570) ([jiuka](https://github.com/jiuka))
|
291
438
|
- @node\_indexes should be reset too. [\#569](https://github.com/rodjek/puppet-lint/pull/569) ([jiuka](https://github.com/jiuka))
|
292
439
|
- True up reserved keywords [\#564](https://github.com/rodjek/puppet-lint/pull/564) ([rnelson0](https://github.com/rnelson0))
|
293
|
-
- \[561\] Provide style guide references for each check [\#562](https://github.com/rodjek/puppet-lint/pull/562) ([rnelson0](https://github.com/rnelson0))
|
294
|
-
- Add names\_containing\_uppercase docs [\#559](https://github.com/rodjek/puppet-lint/pull/559) ([arrdem](https://github.com/arrdem))
|
295
440
|
- Implement a linter for uppercase class names [\#558](https://github.com/rodjek/puppet-lint/pull/558) ([arrdem](https://github.com/arrdem))
|
296
441
|
- Include --fix usage instructions [\#557](https://github.com/rodjek/puppet-lint/pull/557) ([QuinnyPig](https://github.com/QuinnyPig))
|
297
|
-
- Add puppet-lint plugins from deanwilson to plugins page [\#553](https://github.com/rodjek/puppet-lint/pull/553) ([deanwilson](https://github.com/deanwilson))
|
298
442
|
- Updates PR for \#223 [\#552](https://github.com/rodjek/puppet-lint/pull/552) ([binford2k](https://github.com/binford2k))
|
299
|
-
- add legacy\_facts [\#543](https://github.com/rodjek/puppet-lint/pull/543) ([mmckinst](https://github.com/mmckinst))
|
300
443
|
- Remove formatting with `linenumber` [\#540](https://github.com/rodjek/puppet-lint/pull/540) ([rski](https://github.com/rski))
|
301
444
|
- Potential README changes [\#420](https://github.com/rodjek/puppet-lint/pull/420) ([rothsa](https://github.com/rothsa))
|
302
445
|
- Add fix to "ensure found on line but it's not the first attribute" [\#375](https://github.com/rodjek/puppet-lint/pull/375) ([sathieu](https://github.com/sathieu))
|
303
|
-
-
|
446
|
+
- Checks for code outside class/define block [\#223](https://github.com/rodjek/puppet-lint/pull/223) ([dLobatog](https://github.com/dLobatog))
|
304
447
|
- \(\#369\) Document existence of control comments [\#600](https://github.com/rodjek/puppet-lint/pull/600) ([rnelson0](https://github.com/rnelson0))
|
305
448
|
- \(\#517\) Update the allowed tokens prior to a regex [\#594](https://github.com/rodjek/puppet-lint/pull/594) ([rnelson0](https://github.com/rnelson0))
|
306
449
|
- \(\#531\) Treat barewords beginning with an underscore as :NAME tokens [\#593](https://github.com/rodjek/puppet-lint/pull/593) ([rnelson0](https://github.com/rnelson0))
|
@@ -311,9 +454,10 @@
|
|
311
454
|
- Adding support for logging to STDOUT as JSON [\#487](https://github.com/rodjek/puppet-lint/pull/487) ([binford2k](https://github.com/binford2k))
|
312
455
|
|
313
456
|
## [2.0.2](https://github.com/rodjek/puppet-lint/tree/2.0.2) (2016-08-19)
|
457
|
+
|
314
458
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.0.1...2.0.2)
|
315
459
|
|
316
|
-
**
|
460
|
+
**Implemented enhancements:**
|
317
461
|
|
318
462
|
- Option to choose version of the puppet style guide [\#190](https://github.com/rodjek/puppet-lint/issues/190)
|
319
463
|
|
@@ -322,8 +466,13 @@
|
|
322
466
|
- Revert "Bugfix: properly handling $gronk-$grouik with --fix \(fix \#442\)" [\#535](https://github.com/rodjek/puppet-lint/pull/535) ([rnelson0](https://github.com/rnelson0))
|
323
467
|
|
324
468
|
## [2.0.1](https://github.com/rodjek/puppet-lint/tree/2.0.1) (2016-08-18)
|
469
|
+
|
325
470
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.0.0...2.0.1)
|
326
471
|
|
472
|
+
**Implemented enhancements:**
|
473
|
+
|
474
|
+
- Allow specifying the default enable status of a check [\#484](https://github.com/rodjek/puppet-lint/issues/484)
|
475
|
+
|
327
476
|
**Closed issues:**
|
328
477
|
|
329
478
|
- Changelog on Github pages is out of date [\#520](https://github.com/rodjek/puppet-lint/issues/520)
|
@@ -333,7 +482,6 @@
|
|
333
482
|
- question: 1.1.0 --\> 2.0.0 new checks [\#499](https://github.com/rodjek/puppet-lint/issues/499)
|
334
483
|
- \[\#puppethack\] disable\_char\_check doesn't work [\#493](https://github.com/rodjek/puppet-lint/issues/493)
|
335
484
|
- Error fixing indent in possion 0 [\#489](https://github.com/rodjek/puppet-lint/issues/489)
|
336
|
-
- Allow specifying the default enable status of a check [\#484](https://github.com/rodjek/puppet-lint/issues/484)
|
337
485
|
- Empty lines with trailing whitespace triggers redundant soft tabs error. [\#478](https://github.com/rodjek/puppet-lint/issues/478)
|
338
486
|
- Little problem with =\> when variables are used as key [\#472](https://github.com/rodjek/puppet-lint/issues/472)
|
339
487
|
- Question: using config file, with custom path [\#466](https://github.com/rodjek/puppet-lint/issues/466)
|
@@ -354,7 +502,6 @@
|
|
354
502
|
- puppet-lint crash [\#422](https://github.com/rodjek/puppet-lint/issues/422)
|
355
503
|
- PuppetLint.configuration.ignore\_paths ignored by puppet-lint [\#417](https://github.com/rodjek/puppet-lint/issues/417)
|
356
504
|
- Quoted boolean check should only check values [\#415](https://github.com/rodjek/puppet-lint/issues/415)
|
357
|
-
- nested ensure misdetected as not coming first. [\#410](https://github.com/rodjek/puppet-lint/issues/410)
|
358
505
|
- tabs before code issue [\#402](https://github.com/rodjek/puppet-lint/issues/402)
|
359
506
|
- Disabled checks aren't actually disabled, output is merely ignored. [\#400](https://github.com/rodjek/puppet-lint/issues/400)
|
360
507
|
- file modes doesn't have to be 4 digit octal [\#394](https://github.com/rodjek/puppet-lint/issues/394)
|
@@ -377,13 +524,8 @@
|
|
377
524
|
|
378
525
|
**Merged pull requests:**
|
379
526
|
|
380
|
-
- Continue supporting Ruby \< 2 [\#529](https://github.com/rodjek/puppet-lint/pull/529) ([ghoneycutt](https://github.com/ghoneycutt))
|
381
|
-
- Use underscores instead of CamelCase in example [\#527](https://github.com/rodjek/puppet-lint/pull/527) ([ghoneycutt](https://github.com/ghoneycutt))
|
382
|
-
- new linter for top\_scope\_facts [\#526](https://github.com/rodjek/puppet-lint/pull/526) ([mmckinst](https://github.com/mmckinst))
|
383
527
|
- \(GH462\) Multi-line comments can now be fixed. [\#525](https://github.com/rodjek/puppet-lint/pull/525) ([rnelson0](https://github.com/rnelson0))
|
384
528
|
- New additions of protected variables [\#524](https://github.com/rodjek/puppet-lint/pull/524) ([rnelson0](https://github.com/rnelson0))
|
385
|
-
- Document new checks in puppet-lint 2.0.0+ [\#523](https://github.com/rodjek/puppet-lint/pull/523) ([rnelson0](https://github.com/rnelson0))
|
386
|
-
- Remove github pages changelog [\#522](https://github.com/rodjek/puppet-lint/pull/522) ([3flex](https://github.com/3flex))
|
387
529
|
- \(GH366\) Arrow Alignment fix crashes with tabs [\#515](https://github.com/rodjek/puppet-lint/pull/515) ([rnelson0](https://github.com/rnelson0))
|
388
530
|
- Make params disabled [\#511](https://github.com/rodjek/puppet-lint/pull/511) ([binford2k](https://github.com/binford2k))
|
389
531
|
- Removing params class check [\#510](https://github.com/rodjek/puppet-lint/pull/510) ([cvquesty](https://github.com/cvquesty))
|
@@ -393,7 +535,6 @@
|
|
393
535
|
- This adds a disabled-by-default 80chars check [\#495](https://github.com/rodjek/puppet-lint/pull/495) ([binford2k](https://github.com/binford2k))
|
394
536
|
- Add better description of the problem in arrow\_alignment check [\#492](https://github.com/rodjek/puppet-lint/pull/492) ([rnelson0](https://github.com/rnelson0))
|
395
537
|
- \(GH410\) Limit ensure\_first\_param check to certain resources [\#490](https://github.com/rodjek/puppet-lint/pull/490) ([rnelson0](https://github.com/rnelson0))
|
396
|
-
- add lint test for resource references [\#486](https://github.com/rodjek/puppet-lint/pull/486) ([tuxmea](https://github.com/tuxmea))
|
397
538
|
- Regression from 418: duplicate constant [\#483](https://github.com/rodjek/puppet-lint/pull/483) ([rnelson0](https://github.com/rnelson0))
|
398
539
|
- Add fully-detailed CHANGELOG [\#481](https://github.com/rodjek/puppet-lint/pull/481) ([petems](https://github.com/petems))
|
399
540
|
- Add a CHANGELOG [\#480](https://github.com/rodjek/puppet-lint/pull/480) ([rnelson0](https://github.com/rnelson0))
|
@@ -407,26 +548,8 @@
|
|
407
548
|
- Check that variables are lowercase [\#418](https://github.com/rodjek/puppet-lint/pull/418) ([rothsa](https://github.com/rothsa))
|
408
549
|
|
409
550
|
## [2.0.0](https://github.com/rodjek/puppet-lint/tree/2.0.0) (2016-06-22)
|
410
|
-
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.1.0...2.0.0)
|
411
|
-
|
412
|
-
puppet-lint 2.0.0 is a breaking change. Specifically, the renaming of the line length test was changed from `80chars` to `140chars`. You may need to adjust your configuration and lint checks. For example:
|
413
|
-
```ruby
|
414
|
-
# Line length test is 80 chars in puppet-lint 1.1.0
|
415
|
-
PuppetLint.configuration.send('disable_80chars')
|
416
|
-
# Line length test is 140 chars in puppet-lint 2.x
|
417
|
-
PuppetLint.configuration.send('disable_140chars')
|
418
|
-
```
|
419
|
-
|
420
|
-
You may also need to adjust your Gemfile if you are pointing directly at git:
|
421
|
-
```ruby
|
422
|
-
# old
|
423
|
-
gem 'puppet-lint', :require => false, :git => 'https://github.com/rodjek/puppet-lint.git'
|
424
551
|
|
425
|
-
|
426
|
-
gem 'puppet-lint', '~> 2.0'
|
427
|
-
```
|
428
|
-
|
429
|
-
If the additional gems you use for checks are pinned to 1.x, you should pin puppet-lint to `'~> 1.0'` or `'>= 1.0', '< 3.0'` until updated check gems are released.
|
552
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.1.0...2.0.0)
|
430
553
|
|
431
554
|
**Closed issues:**
|
432
555
|
|
@@ -473,8 +596,6 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
473
596
|
- \(GH443\) Release 2.0.0 PR [\#477](https://github.com/rodjek/puppet-lint/pull/477) ([rnelson0](https://github.com/rnelson0))
|
474
597
|
- Fix arrow aligment check in multiple resources declaration [\#476](https://github.com/rodjek/puppet-lint/pull/476) ([wybczu](https://github.com/wybczu))
|
475
598
|
- Fix issue \#450: block-local variables aren't recognized with subscripts [\#453](https://github.com/rodjek/puppet-lint/pull/453) ([jearls](https://github.com/jearls))
|
476
|
-
- Adding package\_ensure plugin [\#448](https://github.com/rodjek/puppet-lint/pull/448) ([danzilio](https://github.com/danzilio))
|
477
|
-
- Update documentation for 140chars [\#440](https://github.com/rodjek/puppet-lint/pull/440) ([keeleysam](https://github.com/keeleysam))
|
478
599
|
- Changed character width to 140. [\#419](https://github.com/rodjek/puppet-lint/pull/419) ([potto007](https://github.com/potto007))
|
479
600
|
- Fix arrow\_alignment check to not raise exception when line isn't indented [\#413](https://github.com/rodjek/puppet-lint/pull/413) ([rodjek](https://github.com/rodjek))
|
480
601
|
- Fix puppet:// url check to catch double quoted strings [\#407](https://github.com/rodjek/puppet-lint/pull/407) ([paulgeringer](https://github.com/paulgeringer))
|
@@ -487,27 +608,21 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
487
608
|
- Detect trailing whitespace on lines with no code [\#386](https://github.com/rodjek/puppet-lint/pull/386) ([rodjek](https://github.com/rodjek))
|
488
609
|
- Save the raw value of MLCOMMENT tokens to use when rendering back to a manifest [\#385](https://github.com/rodjek/puppet-lint/pull/385) ([rodjek](https://github.com/rodjek))
|
489
610
|
- Don't suppress nil values in manifest\_lines [\#384](https://github.com/rodjek/puppet-lint/pull/384) ([rodjek](https://github.com/rodjek))
|
490
|
-
- Update index.md [\#377](https://github.com/rodjek/puppet-lint/pull/377) ([mcanevet](https://github.com/mcanevet))
|
491
611
|
- Only clear task if it's already defined [\#376](https://github.com/rodjek/puppet-lint/pull/376) ([domcleal](https://github.com/domcleal))
|
492
|
-
- add strict\_indent check to community plugins [\#371](https://github.com/rodjek/puppet-lint/pull/371) ([relud](https://github.com/relud))
|
493
612
|
- Nested cases [\#368](https://github.com/rodjek/puppet-lint/pull/368) ([jonnangle](https://github.com/jonnangle))
|
494
613
|
- rpearce: Allow the use of facts\[\] and trusted\[\] as per Puppet 3.5+ [\#362](https://github.com/rodjek/puppet-lint/pull/362) ([rjpearce](https://github.com/rjpearce))
|
495
|
-
- plugins: Add absolute template path check [\#353](https://github.com/rodjek/puppet-lint/pull/353) ([3flex](https://github.com/3flex))
|
496
|
-
- Update index.md [\#352](https://github.com/rodjek/puppet-lint/pull/352) ([mcanevet](https://github.com/mcanevet))
|
497
614
|
- Add node\_indexes method [\#351](https://github.com/rodjek/puppet-lint/pull/351) ([mcanevet](https://github.com/mcanevet))
|
498
615
|
- Don't attempt to fix ignored problems [\#349](https://github.com/rodjek/puppet-lint/pull/349) ([rodjek](https://github.com/rodjek))
|
499
616
|
- Handle case where a colon is the last token in a file [\#346](https://github.com/rodjek/puppet-lint/pull/346) ([rodjek](https://github.com/rodjek))
|
500
617
|
- Fix bug in unquoted\_node\_name to support multiple node blocks [\#345](https://github.com/rodjek/puppet-lint/pull/345) ([rodjek](https://github.com/rodjek))
|
501
618
|
- Catch Errno::EACCES when reading a puppet-lint.rc out of HOME [\#342](https://github.com/rodjek/puppet-lint/pull/342) ([rodjek](https://github.com/rodjek))
|
502
|
-
- Generate line numbers for the plugin tutorial code examples [\#340](https://github.com/rodjek/puppet-lint/pull/340) ([rodjek](https://github.com/rodjek))
|
503
619
|
- Add support for '--relative' option in new Rake::Task format. [\#334](https://github.com/rodjek/puppet-lint/pull/334) ([fatmcgav](https://github.com/fatmcgav))
|
504
620
|
- fix \#331 - clear any pre-\(auto-\)existing tasks [\#332](https://github.com/rodjek/puppet-lint/pull/332) ([duritong](https://github.com/duritong))
|
505
621
|
- Don't warn for arrow alignment for single-element hashes [\#330](https://github.com/rodjek/puppet-lint/pull/330) ([domcleal](https://github.com/domcleal))
|
506
|
-
- Document multiple commands in a single control comment [\#329](https://github.com/rodjek/puppet-lint/pull/329) ([domcleal](https://github.com/domcleal))
|
507
|
-
- Add parameter\_documentation/param-docs plugin [\#328](https://github.com/rodjek/puppet-lint/pull/328) ([domcleal](https://github.com/domcleal))
|
508
622
|
- Alternative to \#289: :error on either class names and defines [\#290](https://github.com/rodjek/puppet-lint/pull/290) ([ppp0](https://github.com/ppp0))
|
509
623
|
|
510
624
|
## [1.1.0](https://github.com/rodjek/puppet-lint/tree/1.1.0) (2014-09-23)
|
625
|
+
|
511
626
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.0.1...1.1.0)
|
512
627
|
|
513
628
|
**Closed issues:**
|
@@ -538,6 +653,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
538
653
|
- Cache parsing state in Lexer rather than recalculating [\#317](https://github.com/rodjek/puppet-lint/pull/317) ([rodjek](https://github.com/rodjek))
|
539
654
|
|
540
655
|
## [1.0.1](https://github.com/rodjek/puppet-lint/tree/1.0.1) (2014-08-20)
|
656
|
+
|
541
657
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.0.0...1.0.1)
|
542
658
|
|
543
659
|
**Closed issues:**
|
@@ -551,13 +667,18 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
551
667
|
**Merged pull requests:**
|
552
668
|
|
553
669
|
- Handle empty blocks in arrow\_alignment [\#302](https://github.com/rodjek/puppet-lint/pull/302) ([rodjek](https://github.com/rodjek))
|
554
|
-
- fix typo in the links to 'trailing\_newline' plugin [\#300](https://github.com/rodjek/puppet-lint/pull/300) ([3flex](https://github.com/3flex))
|
555
|
-
- Comments on developer puppet-lint checks [\#299](https://github.com/rodjek/puppet-lint/pull/299) ([jfryman](https://github.com/jfryman))
|
556
670
|
- \[Fixes \#291\] Ignore index braces for scope variables [\#303](https://github.com/rodjek/puppet-lint/pull/303) ([dcarley](https://github.com/dcarley))
|
557
671
|
|
558
672
|
## [1.0.0](https://github.com/rodjek/puppet-lint/tree/1.0.0) (2014-08-18)
|
673
|
+
|
559
674
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.4.0.pre1...1.0.0)
|
560
675
|
|
676
|
+
**Implemented enhancements:**
|
677
|
+
|
678
|
+
- Need a way to ignore a lint check for a particular line [\#247](https://github.com/rodjek/puppet-lint/issues/247)
|
679
|
+
- Trailing line comment to disable check [\#214](https://github.com/rodjek/puppet-lint/issues/214)
|
680
|
+
- disable tests on arbitrary lines or over blocks of code [\#68](https://github.com/rodjek/puppet-lint/issues/68)
|
681
|
+
|
561
682
|
**Closed issues:**
|
562
683
|
|
563
684
|
- Stop complaining about things unsupported versions of Puppet won't support. [\#281](https://github.com/rodjek/puppet-lint/issues/281)
|
@@ -592,15 +713,13 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
592
713
|
- Future parser loop should allow for inline variable declaration without scoping [\#264](https://github.com/rodjek/puppet-lint/issues/264)
|
593
714
|
- Double Quoted Strings - should allow for strings containing single quotes [\#263](https://github.com/rodjek/puppet-lint/issues/263)
|
594
715
|
- puppet-lint should not warn "string containing only a variable" when it's used to create a hash [\#261](https://github.com/rodjek/puppet-lint/issues/261)
|
595
|
-
- ERROR: Syntax error \(try running `puppet parser validate
|
716
|
+
- ERROR: Syntax error \(try running `puppet parser validate <file>`\) on line 15 [\#258](https://github.com/rodjek/puppet-lint/issues/258)
|
596
717
|
- Variables in each incorrectly idenentified as top scope. [\#249](https://github.com/rodjek/puppet-lint/issues/249)
|
597
718
|
- puppet-lint -f makes a mess of double-quoted strings that contain single quotes [\#248](https://github.com/rodjek/puppet-lint/issues/248)
|
598
|
-
- Need a way to ignore a lint check for a particular line [\#247](https://github.com/rodjek/puppet-lint/issues/247)
|
599
719
|
- Puppetlint should ignore template lines \> 80 characters [\#233](https://github.com/rodjek/puppet-lint/issues/233)
|
600
720
|
- Syntax error when parser future features used [\#232](https://github.com/rodjek/puppet-lint/issues/232)
|
601
721
|
- Issue with puppet-lint -f and trailing whitespace [\#224](https://github.com/rodjek/puppet-lint/issues/224)
|
602
722
|
- escape a variable interpolation to skip checking [\#219](https://github.com/rodjek/puppet-lint/issues/219)
|
603
|
-
- Trailing line comment to disable check [\#214](https://github.com/rodjek/puppet-lint/issues/214)
|
604
723
|
- wrong title for \>80char per line check site [\#209](https://github.com/rodjek/puppet-lint/issues/209)
|
605
724
|
- `rake lint` should respect .puppet-lint.rc in root of module [\#202](https://github.com/rodjek/puppet-lint/issues/202)
|
606
725
|
- lint analyzes inlined ruby code [\#201](https://github.com/rodjek/puppet-lint/issues/201)
|
@@ -611,11 +730,9 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
611
730
|
- Puppet lint seems to ignore --no-class\_parameter\_defaults-check when inheriting the params class [\#173](https://github.com/rodjek/puppet-lint/issues/173)
|
612
731
|
- Quoting top level variable in class parameter cause false warning [\#170](https://github.com/rodjek/puppet-lint/issues/170)
|
613
732
|
- exec and Bash vars, false-postive "single quoted string containing a variable found on line" [\#113](https://github.com/rodjek/puppet-lint/issues/113)
|
614
|
-
- disable tests on arbitrary lines or over blocks of code [\#68](https://github.com/rodjek/puppet-lint/issues/68)
|
615
733
|
|
616
734
|
**Merged pull requests:**
|
617
735
|
|
618
|
-
- Checks for code outside class/define block [\#223](https://github.com/rodjek/puppet-lint/pull/223) ([dLobatog](https://github.com/dLobatog))
|
619
736
|
- explains in README that puppet-lint is not for checking syntax [\#186](https://github.com/rodjek/puppet-lint/pull/186) ([ghoneycutt](https://github.com/ghoneycutt))
|
620
737
|
- Use the current workdir as reference to calculate the expanded\_path of a filename [\#175](https://github.com/rodjek/puppet-lint/pull/175) ([vStone](https://github.com/vStone))
|
621
738
|
- Update code documentation [\#298](https://github.com/rodjek/puppet-lint/pull/298) ([rodjek](https://github.com/rodjek))
|
@@ -654,7 +771,6 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
654
771
|
- Bad hash indenting with --fix where members declared on a single line [\#217](https://github.com/rodjek/puppet-lint/pull/217) ([aelse](https://github.com/aelse))
|
655
772
|
- Handle variables with array & hash references [\#212](https://github.com/rodjek/puppet-lint/pull/212) ([rodjek](https://github.com/rodjek))
|
656
773
|
- Add Modulo token [\#207](https://github.com/rodjek/puppet-lint/pull/207) ([dalen](https://github.com/dalen))
|
657
|
-
- Fix class\_inherits\_from\_params\_class docs link [\#206](https://github.com/rodjek/puppet-lint/pull/206) ([dcarley](https://github.com/dcarley))
|
658
774
|
- incorrect top-scope variable warning for define [\#205](https://github.com/rodjek/puppet-lint/pull/205) ([blalor](https://github.com/blalor))
|
659
775
|
- --fix doesn't modify my file [\#203](https://github.com/rodjek/puppet-lint/pull/203) ([BillWeiss](https://github.com/BillWeiss))
|
660
776
|
- Don't warn about 'mode' format when it's an 'audit' value [\#199](https://github.com/rodjek/puppet-lint/pull/199) ([bitfield](https://github.com/bitfield))
|
@@ -662,14 +778,13 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
662
778
|
- Running with --fix deletes all code for files containing invalid syntax [\#184](https://github.com/rodjek/puppet-lint/pull/184) ([devicenull](https://github.com/devicenull))
|
663
779
|
- Puppet-lint fails to handle mac line endings [\#183](https://github.com/rodjek/puppet-lint/pull/183) ([devicenull](https://github.com/devicenull))
|
664
780
|
- Lone dollar sign should not be removed [\#180](https://github.com/rodjek/puppet-lint/pull/180) ([Seldaek](https://github.com/Seldaek))
|
665
|
-
- Fix illegal replacement of double quotes by single quotes [\#179](https://github.com/rodjek/puppet-lint/pull/179) ([Seldaek](https://github.com/Seldaek))
|
666
|
-
- Write files in binary mode to avoid writing CRLFs on windows [\#178](https://github.com/rodjek/puppet-lint/pull/178) ([Seldaek](https://github.com/Seldaek))
|
667
781
|
- Warn about unquoted node names [\#177](https://github.com/rodjek/puppet-lint/pull/177) ([bitfield](https://github.com/bitfield))
|
668
782
|
- Fix the check\_classes check for certain cases. [\#176](https://github.com/rodjek/puppet-lint/pull/176) ([vStone](https://github.com/vStone))
|
669
783
|
- Invalid warning about mandatory class parameters without defaults [\#167](https://github.com/rodjek/puppet-lint/pull/167) ([svend](https://github.com/svend))
|
670
784
|
- Add check for puppet:/// URIs without modules/ [\#166](https://github.com/rodjek/puppet-lint/pull/166) ([rodjek](https://github.com/rodjek))
|
671
785
|
|
672
786
|
## [0.4.0.pre1](https://github.com/rodjek/puppet-lint/tree/0.4.0.pre1) (2013-01-28)
|
787
|
+
|
673
788
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.2...0.4.0.pre1)
|
674
789
|
|
675
790
|
**Closed issues:**
|
@@ -682,9 +797,10 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
682
797
|
**Merged pull requests:**
|
683
798
|
|
684
799
|
- Fix where . is located in docs [\#169](https://github.com/rodjek/puppet-lint/pull/169) ([gmjosack](https://github.com/gmjosack))
|
685
|
-
- Update README.md [\#168](https://github.com/rodjek/puppet-lint/pull/168) ([
|
800
|
+
- Update README.md [\#168](https://github.com/rodjek/puppet-lint/pull/168) ([levpaul](https://github.com/levpaul))
|
686
801
|
|
687
802
|
## [0.3.2](https://github.com/rodjek/puppet-lint/tree/0.3.2) (2012-10-19)
|
803
|
+
|
688
804
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.1...0.3.2)
|
689
805
|
|
690
806
|
**Closed issues:**
|
@@ -704,6 +820,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
704
820
|
- fixes \#154 string monkeypatch failure [\#155](https://github.com/rodjek/puppet-lint/pull/155) ([vStone](https://github.com/vStone))
|
705
821
|
|
706
822
|
## [0.3.1](https://github.com/rodjek/puppet-lint/tree/0.3.1) (2012-09-26)
|
823
|
+
|
707
824
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.0...0.3.1)
|
708
825
|
|
709
826
|
**Closed issues:**
|
@@ -715,8 +832,13 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
715
832
|
- Fixes \#150 class inherits from params class exception [\#151](https://github.com/rodjek/puppet-lint/pull/151) ([vStone](https://github.com/vStone))
|
716
833
|
|
717
834
|
## [0.3.0](https://github.com/rodjek/puppet-lint/tree/0.3.0) (2012-09-25)
|
835
|
+
|
718
836
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.1...0.3.0)
|
719
837
|
|
838
|
+
**Implemented enhancements:**
|
839
|
+
|
840
|
+
- Provide context for the problems [\#130](https://github.com/rodjek/puppet-lint/issues/130)
|
841
|
+
|
720
842
|
**Closed issues:**
|
721
843
|
|
722
844
|
- False positive unquoted resource title for colons in resource parameters [\#146](https://github.com/rodjek/puppet-lint/issues/146)
|
@@ -726,7 +848,6 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
726
848
|
- Crash on \\ at end of single quoted string [\#144](https://github.com/rodjek/puppet-lint/issues/144)
|
727
849
|
- Strings ending in backslash cause exceptions [\#142](https://github.com/rodjek/puppet-lint/issues/142)
|
728
850
|
- --no-class\_parameter\_defaults-check [\#139](https://github.com/rodjek/puppet-lint/issues/139)
|
729
|
-
- Provide context for the problems [\#130](https://github.com/rodjek/puppet-lint/issues/130)
|
730
851
|
|
731
852
|
**Merged pull requests:**
|
732
853
|
|
@@ -736,6 +857,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
736
857
|
- use .puppet-lint.rc, as .puppet-lintrc is deprecated [\#143](https://github.com/rodjek/puppet-lint/pull/143) ([ghoneycutt](https://github.com/ghoneycutt))
|
737
858
|
|
738
859
|
## [0.2.1](https://github.com/rodjek/puppet-lint/tree/0.2.1) (2012-08-27)
|
860
|
+
|
739
861
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.0...0.2.1)
|
740
862
|
|
741
863
|
**Closed issues:**
|
@@ -744,8 +866,15 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
744
866
|
- False warning : parameterised class parameter without a default value [\#137](https://github.com/rodjek/puppet-lint/issues/137)
|
745
867
|
|
746
868
|
## [0.2.0](https://github.com/rodjek/puppet-lint/tree/0.2.0) (2012-08-23)
|
869
|
+
|
747
870
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.0.pre1...0.2.0)
|
748
871
|
|
872
|
+
**Implemented enhancements:**
|
873
|
+
|
874
|
+
- Variables standing by themselves should not be quoted [\#20](https://github.com/rodjek/puppet-lint/issues/20)
|
875
|
+
- write class\_parameter\_defaults check [\#134](https://github.com/rodjek/puppet-lint/issues/134)
|
876
|
+
- duplicate parameter detection [\#122](https://github.com/rodjek/puppet-lint/issues/122)
|
877
|
+
|
749
878
|
**Closed issues:**
|
750
879
|
|
751
880
|
- `require': iconv will be deprecated in the future, use String\#encode instead. [\#133](https://github.com/rodjek/puppet-lint/issues/133)
|
@@ -753,14 +882,11 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
753
882
|
- There's a puppet-lint 0.13.1 gem on rubygems.org but no 0.13.1 tag here [\#99](https://github.com/rodjek/puppet-lint/issues/99)
|
754
883
|
- Introduce a way to tweak warning/error level for checks [\#91](https://github.com/rodjek/puppet-lint/issues/91)
|
755
884
|
- Didn't pick up $ipaddress\_bond0 as a fact [\#61](https://github.com/rodjek/puppet-lint/issues/61)
|
756
|
-
- Variables standing by themselves should not be quoted [\#20](https://github.com/rodjek/puppet-lint/issues/20)
|
757
|
-
- write class\_parameter\_defaults check [\#134](https://github.com/rodjek/puppet-lint/issues/134)
|
758
885
|
- False positive when using function call for parameter default [\#132](https://github.com/rodjek/puppet-lint/issues/132)
|
759
886
|
- Fix up the website [\#131](https://github.com/rodjek/puppet-lint/issues/131)
|
760
887
|
- Linked list style functionality for tokens [\#129](https://github.com/rodjek/puppet-lint/issues/129)
|
761
888
|
- False positive unquoted resource title in case statements [\#128](https://github.com/rodjek/puppet-lint/issues/128)
|
762
889
|
- Crash on arrow alignment check [\#127](https://github.com/rodjek/puppet-lint/issues/127)
|
763
|
-
- duplicate parameter detection [\#122](https://github.com/rodjek/puppet-lint/issues/122)
|
764
890
|
- Does not work on ruby 1.9.3 [\#120](https://github.com/rodjek/puppet-lint/issues/120)
|
765
891
|
- Bad class format causes exception [\#118](https://github.com/rodjek/puppet-lint/issues/118)
|
766
892
|
- case statement in inline\_template false warning [\#117](https://github.com/rodjek/puppet-lint/issues/117)
|
@@ -777,6 +903,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
777
903
|
- Multiline string should not be checked for double quotes [\#51](https://github.com/rodjek/puppet-lint/issues/51)
|
778
904
|
|
779
905
|
## [0.2.0.pre1](https://github.com/rodjek/puppet-lint/tree/0.2.0.pre1) (2012-07-11)
|
906
|
+
|
780
907
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.13...0.2.0.pre1)
|
781
908
|
|
782
909
|
**Closed issues:**
|
@@ -804,8 +931,10 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
804
931
|
- Fix utf8 char issues: see bug \#84 [\#108](https://github.com/rodjek/puppet-lint/pull/108) ([vStone](https://github.com/vStone))
|
805
932
|
- Add support for ignoring certain globs in the rake task [\#106](https://github.com/rodjek/puppet-lint/pull/106) ([wfarr](https://github.com/wfarr))
|
806
933
|
- Fix bug introduced in \#81 [\#98](https://github.com/rodjek/puppet-lint/pull/98) ([deizel](https://github.com/deizel))
|
934
|
+
- Fixup the variable not enclosed in {} test [\#66](https://github.com/rodjek/puppet-lint/pull/66) ([richardc](https://github.com/richardc))
|
807
935
|
|
808
936
|
## [0.1.13](https://github.com/rodjek/puppet-lint/tree/0.1.13) (2012-03-26)
|
937
|
+
|
809
938
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.12...0.1.13)
|
810
939
|
|
811
940
|
**Closed issues:**
|
@@ -822,10 +951,10 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
822
951
|
- Add support run puppet-lint on directory. [\#81](https://github.com/rodjek/puppet-lint/pull/81) ([nanliu](https://github.com/nanliu))
|
823
952
|
- Update travis support for multiple puppet version. [\#80](https://github.com/rodjek/puppet-lint/pull/80) ([nanliu](https://github.com/nanliu))
|
824
953
|
- Find booleans in double quoted strings [\#67](https://github.com/rodjek/puppet-lint/pull/67) ([richardc](https://github.com/richardc))
|
825
|
-
- Fixup the variable not enclosed in {} test [\#66](https://github.com/rodjek/puppet-lint/pull/66) ([richardc](https://github.com/richardc))
|
826
954
|
- Feature/symbolic filemodes \(cfr ticket \#60\) [\#62](https://github.com/rodjek/puppet-lint/pull/62) ([vStone](https://github.com/vStone))
|
827
955
|
|
828
956
|
## [0.1.12](https://github.com/rodjek/puppet-lint/tree/0.1.12) (2012-01-27)
|
957
|
+
|
829
958
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.11...0.1.12)
|
830
959
|
|
831
960
|
**Closed issues:**
|
@@ -837,9 +966,11 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
837
966
|
- turn off particular tests? .puppet-lintrc? [\#34](https://github.com/rodjek/puppet-lint/issues/34)
|
838
967
|
|
839
968
|
## [0.1.11](https://github.com/rodjek/puppet-lint/tree/0.1.11) (2012-01-11)
|
969
|
+
|
840
970
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.10...0.1.11)
|
841
971
|
|
842
972
|
## [0.1.10](https://github.com/rodjek/puppet-lint/tree/0.1.10) (2012-01-11)
|
973
|
+
|
843
974
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.9...0.1.10)
|
844
975
|
|
845
976
|
**Closed issues:**
|
@@ -853,6 +984,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
853
984
|
- Feature/unified problems [\#52](https://github.com/rodjek/puppet-lint/pull/52) ([vStone](https://github.com/vStone))
|
854
985
|
|
855
986
|
## [0.1.9](https://github.com/rodjek/puppet-lint/tree/0.1.9) (2011-12-27)
|
987
|
+
|
856
988
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.8...0.1.9)
|
857
989
|
|
858
990
|
**Merged pull requests:**
|
@@ -860,6 +992,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
860
992
|
- Consolidated option checking logic [\#48](https://github.com/rodjek/puppet-lint/pull/48) ([jamtur01](https://github.com/jamtur01))
|
861
993
|
|
862
994
|
## [0.1.8](https://github.com/rodjek/puppet-lint/tree/0.1.8) (2011-12-27)
|
995
|
+
|
863
996
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.7...0.1.8)
|
864
997
|
|
865
998
|
**Closed issues:**
|
@@ -880,6 +1013,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
880
1013
|
- Add filename as first test\(\) argument so plugins can use that too [\#39](https://github.com/rodjek/puppet-lint/pull/39) ([vStone](https://github.com/vStone))
|
881
1014
|
|
882
1015
|
## [0.1.7](https://github.com/rodjek/puppet-lint/tree/0.1.7) (2011-10-18)
|
1016
|
+
|
883
1017
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.4...0.1.7)
|
884
1018
|
|
885
1019
|
**Closed issues:**
|
@@ -891,6 +1025,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
891
1025
|
- "mode should be represented as a 4 digit octal value" when variable [\#28](https://github.com/rodjek/puppet-lint/issues/28)
|
892
1026
|
|
893
1027
|
## [0.1.4](https://github.com/rodjek/puppet-lint/tree/0.1.4) (2011-09-09)
|
1028
|
+
|
894
1029
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.3...0.1.4)
|
895
1030
|
|
896
1031
|
**Closed issues:**
|
@@ -899,9 +1034,11 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
899
1034
|
- False alignment positives [\#21](https://github.com/rodjek/puppet-lint/issues/21)
|
900
1035
|
|
901
1036
|
## [0.1.3](https://github.com/rodjek/puppet-lint/tree/0.1.3) (2011-09-09)
|
1037
|
+
|
902
1038
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.2...0.1.3)
|
903
1039
|
|
904
1040
|
## [0.1.2](https://github.com/rodjek/puppet-lint/tree/0.1.2) (2011-09-09)
|
1041
|
+
|
905
1042
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.1...0.1.2)
|
906
1043
|
|
907
1044
|
**Closed issues:**
|
@@ -910,6 +1047,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
910
1047
|
- False positive in commented line [\#22](https://github.com/rodjek/puppet-lint/issues/22)
|
911
1048
|
|
912
1049
|
## [0.1.1](https://github.com/rodjek/puppet-lint/tree/0.1.1) (2011-09-07)
|
1050
|
+
|
913
1051
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.0...0.1.1)
|
914
1052
|
|
915
1053
|
**Closed issues:**
|
@@ -918,9 +1056,10 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
918
1056
|
- Not detecting comma and semicolon being mixed up [\#13](https://github.com/rodjek/puppet-lint/issues/13)
|
919
1057
|
|
920
1058
|
## [0.1.0](https://github.com/rodjek/puppet-lint/tree/0.1.0) (2011-08-23)
|
1059
|
+
|
921
1060
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.7...0.1.0)
|
922
1061
|
|
923
|
-
**
|
1062
|
+
**Implemented enhancements:**
|
924
1063
|
|
925
1064
|
- display order of class/define parameters [\#19](https://github.com/rodjek/puppet-lint/issues/19)
|
926
1065
|
- class inheritance [\#18](https://github.com/rodjek/puppet-lint/issues/18)
|
@@ -928,19 +1067,25 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
928
1067
|
- relationship declarations [\#16](https://github.com/rodjek/puppet-lint/issues/16)
|
929
1068
|
- defaults for case statements and selectors [\#15](https://github.com/rodjek/puppet-lint/issues/15)
|
930
1069
|
- namespacing variables [\#14](https://github.com/rodjek/puppet-lint/issues/14)
|
1070
|
+
|
1071
|
+
**Closed issues:**
|
1072
|
+
|
931
1073
|
- =\> alignment warnings in selectors is broken [\#11](https://github.com/rodjek/puppet-lint/issues/11)
|
932
1074
|
|
933
1075
|
## [0.0.7](https://github.com/rodjek/puppet-lint/tree/0.0.7) (2011-08-21)
|
1076
|
+
|
934
1077
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.6...0.0.7)
|
935
1078
|
|
936
1079
|
## [0.0.6](https://github.com/rodjek/puppet-lint/tree/0.0.6) (2011-08-19)
|
1080
|
+
|
937
1081
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.5...0.0.6)
|
938
1082
|
|
939
|
-
**
|
1083
|
+
**Implemented enhancements:**
|
940
1084
|
|
941
1085
|
- Please add logic to the \>80 chars check [\#12](https://github.com/rodjek/puppet-lint/issues/12)
|
942
1086
|
|
943
1087
|
## [0.0.5](https://github.com/rodjek/puppet-lint/tree/0.0.5) (2011-08-19)
|
1088
|
+
|
944
1089
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.4...0.0.5)
|
945
1090
|
|
946
1091
|
**Closed issues:**
|
@@ -950,6 +1095,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
950
1095
|
- "single quoted string containing a variable" should check for nested quotes [\#7](https://github.com/rodjek/puppet-lint/issues/7)
|
951
1096
|
|
952
1097
|
## [0.0.4](https://github.com/rodjek/puppet-lint/tree/0.0.4) (2011-08-18)
|
1098
|
+
|
953
1099
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.3...0.0.4)
|
954
1100
|
|
955
1101
|
**Closed issues:**
|
@@ -959,6 +1105,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
959
1105
|
- Nasty stacktrace when trying to run lint against a non existance file [\#4](https://github.com/rodjek/puppet-lint/issues/4)
|
960
1106
|
|
961
1107
|
## [0.0.3](https://github.com/rodjek/puppet-lint/tree/0.0.3) (2011-08-17)
|
1108
|
+
|
962
1109
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.2...0.0.3)
|
963
1110
|
|
964
1111
|
**Closed issues:**
|
@@ -967,6 +1114,7 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
967
1114
|
- Empty variables break check\_strings plugin [\#2](https://github.com/rodjek/puppet-lint/issues/2)
|
968
1115
|
|
969
1116
|
## [0.0.2](https://github.com/rodjek/puppet-lint/tree/0.0.2) (2011-08-17)
|
1117
|
+
|
970
1118
|
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.1...0.0.2)
|
971
1119
|
|
972
1120
|
**Merged pull requests:**
|
@@ -975,5 +1123,8 @@ If the additional gems you use for checks are pinned to 1.x, you should pin pupp
|
|
975
1123
|
|
976
1124
|
## [0.0.1](https://github.com/rodjek/puppet-lint/tree/0.0.1) (2011-08-15)
|
977
1125
|
|
1126
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2dd42b803a4dfc3a2398a509d26f285c9427ba41...0.0.1)
|
1127
|
+
|
1128
|
+
|
978
1129
|
|
979
|
-
\* *This
|
1130
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|