puppet-lint 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.rspec +1 -0
- data/.travis.yml +11 -2
- data/CHANGELOG.md +657 -0
- data/Gemfile +19 -0
- data/README.md +6 -1
- data/lib/puppet-lint.rb +1 -1
- data/lib/puppet-lint/checks.rb +1 -5
- data/lib/puppet-lint/lexer.rb +4 -2
- data/lib/puppet-lint/optparser.rb +11 -2
- data/lib/puppet-lint/plugins/check_classes.rb +5 -1
- data/lib/puppet-lint/plugins/check_comments.rb +6 -8
- data/lib/puppet-lint/plugins/check_resources.rb +4 -3
- data/lib/puppet-lint/plugins/check_variables.rb +21 -3
- data/lib/puppet-lint/plugins/check_whitespace.rb +21 -1
- data/lib/puppet-lint/tasks/puppet-lint.rb +4 -0
- data/lib/puppet-lint/version.rb +1 -1
- data/puppet-lint.gemspec +1 -4
- data/spec/puppet-lint/bin_spec.rb +1 -1
- data/spec/puppet-lint/lexer_spec.rb +38 -0
- data/spec/puppet-lint/plugins/check_classes/parameter_order_spec.rb +51 -47
- data/spec/puppet-lint/plugins/check_comments/star_comments_spec.rb +22 -0
- data/spec/puppet-lint/plugins/check_resources/ensure_first_param_spec.rb +19 -0
- data/spec/puppet-lint/plugins/check_resources/file_mode_spec.rb +96 -0
- data/spec/puppet-lint/plugins/check_resources/unquoted_file_mode_spec.rb +28 -0
- data/spec/puppet-lint/plugins/check_strings/variables_not_enclosed_spec.rb +3 -3
- data/spec/puppet-lint/plugins/check_variables/variable_is_lowercase_spec.rb +25 -0
- data/spec/puppet-lint/plugins/check_whitespace/80chars_spec.rb +71 -0
- data/spec/puppet-lint/plugins/check_whitespace/arrow_alignment_spec.rb +37 -37
- data/spec/puppet-lint_spec.rb +6 -0
- metadata +13 -50
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fdcd8d8cb30a35f3e1622cf9932d756790ad9eef
|
4
|
+
data.tar.gz: f9b6661a1689fcd4e9d0564e2eb1046b5003cd80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d96232b0b0a77b6c1c52be31f2daddf1978e21c4c6c92758380b3dfcf23594812b7b510eaeb41344d51cab172157ccbcb44c37f7e5ea5c57f84dde0b1ca0d0f
|
7
|
+
data.tar.gz: 0b3004616fd02898a3c0b446ff45541b7e0601c1a41e55ceb7133626628983b8a0664f550c9c967abcc468ea24a5b31062f1631cf54d49b7ae038390fe6bc577
|
data/.gitignore
CHANGED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/.travis.yml
CHANGED
@@ -1,10 +1,19 @@
|
|
1
|
+
---
|
2
|
+
language: ruby
|
3
|
+
sudo: false
|
4
|
+
cache: bundler
|
1
5
|
before_install: gem update --system 2.1.11
|
6
|
+
branches:
|
7
|
+
only:
|
8
|
+
- master
|
9
|
+
bundler_args: --without development system_tests
|
2
10
|
rvm:
|
3
11
|
- 1.8.7
|
4
|
-
- 1.9.2
|
5
12
|
- 1.9.3
|
6
13
|
- 2.0.0
|
7
|
-
- 2.1.
|
14
|
+
- 2.1.9
|
15
|
+
- 2.2.4
|
16
|
+
- 2.3.1
|
8
17
|
notifications:
|
9
18
|
email:
|
10
19
|
- tim@github.com
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,657 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [2.0.1](https://github.com/rodjek/puppet-lint/tree/2.0.1) (2016-08-18)
|
4
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/2.0.0...2.0.1)
|
5
|
+
|
6
|
+
**Starting with v2.0.1, puppet-lint is deprecating support for Ruby 1.8.7.** Support will be removed in the next major release.
|
7
|
+
|
8
|
+
**Closed issues:**
|
9
|
+
|
10
|
+
- Changelog on Github pages is out of date [\#520](https://github.com/rodjek/puppet-lint/issues/520)
|
11
|
+
- 80char --\> 140char transition incomplete [\#514](https://github.com/rodjek/puppet-lint/issues/514)
|
12
|
+
- ensure\_first\_param-check should not consider hashes [\#512](https://github.com/rodjek/puppet-lint/issues/512)
|
13
|
+
- RFE: Provide a way to selectively disable checks in puppet source [\#508](https://github.com/rodjek/puppet-lint/issues/508)
|
14
|
+
- question: 1.1.0 --\> 2.0.0 new checks [\#499](https://github.com/rodjek/puppet-lint/issues/499)
|
15
|
+
- \[\#puppethack\] disable\_char\_check doesn't work [\#493](https://github.com/rodjek/puppet-lint/issues/493)
|
16
|
+
- Error fixing indent in possion 0 [\#489](https://github.com/rodjek/puppet-lint/issues/489)
|
17
|
+
- Allow specifying the default enable status of a check [\#484](https://github.com/rodjek/puppet-lint/issues/484)
|
18
|
+
- Empty lines with trailing whitespace triggers redundant soft tabs error. [\#478](https://github.com/rodjek/puppet-lint/issues/478)
|
19
|
+
- Little problem with =\> when variables are used as key [\#472](https://github.com/rodjek/puppet-lint/issues/472)
|
20
|
+
- Question: using config file, with custom path [\#466](https://github.com/rodjek/puppet-lint/issues/466)
|
21
|
+
- Error: "Variable in single quoted string" or "Double quoted string without variable" - syntax? [\#463](https://github.com/rodjek/puppet-lint/issues/463)
|
22
|
+
- Critical error on Atom initialization [\#460](https://github.com/rodjek/puppet-lint/issues/460)
|
23
|
+
- print warning for code that will result in logging or backups of secrets [\#455](https://github.com/rodjek/puppet-lint/issues/455)
|
24
|
+
- Linter gets upset with Regexp in type [\#452](https://github.com/rodjek/puppet-lint/issues/452)
|
25
|
+
- Single whitespace in file replaced with \[\] [\#444](https://github.com/rodjek/puppet-lint/issues/444)
|
26
|
+
- Time for a new release! [\#443](https://github.com/rodjek/puppet-lint/issues/443)
|
27
|
+
- Bug with --fix and warning "variable not enclosed in {}" [\#442](https://github.com/rodjek/puppet-lint/issues/442)
|
28
|
+
- Linter should not warn about inheriting from params class [\#441](https://github.com/rodjek/puppet-lint/issues/441)
|
29
|
+
- Variable not enclosed in {} AND single quoted string containing a variable [\#434](https://github.com/rodjek/puppet-lint/issues/434)
|
30
|
+
- Quoted string issue due to structured data [\#433](https://github.com/rodjek/puppet-lint/issues/433)
|
31
|
+
- allow for arrow alignment with more than one space before [\#432](https://github.com/rodjek/puppet-lint/issues/432)
|
32
|
+
- 3 digit modes are incorrectly flagged [\#431](https://github.com/rodjek/puppet-lint/issues/431)
|
33
|
+
- url\_without\_modules adding paths? [\#428](https://github.com/rodjek/puppet-lint/issues/428)
|
34
|
+
- Check for unbalanced parenthesis [\#427](https://github.com/rodjek/puppet-lint/issues/427)
|
35
|
+
- puppet-lint crash [\#422](https://github.com/rodjek/puppet-lint/issues/422)
|
36
|
+
- PuppetLint.configuration.ignore\_paths ignored by puppet-lint [\#417](https://github.com/rodjek/puppet-lint/issues/417)
|
37
|
+
- Quoted boolean check should only check values [\#415](https://github.com/rodjek/puppet-lint/issues/415)
|
38
|
+
- nested ensure misdetected as not coming first. [\#410](https://github.com/rodjek/puppet-lint/issues/410)
|
39
|
+
- tabs before code issue [\#402](https://github.com/rodjek/puppet-lint/issues/402)
|
40
|
+
- Disabled checks aren't actually disabled, output is merely ignored. [\#400](https://github.com/rodjek/puppet-lint/issues/400)
|
41
|
+
- file modes doesn't have to be 4 digit octal [\#394](https://github.com/rodjek/puppet-lint/issues/394)
|
42
|
+
- Option to disable top-scope variable warning for $facts and $trusted hashes [\#382](https://github.com/rodjek/puppet-lint/issues/382)
|
43
|
+
- top-scope variable check incorrectly warning on second parameter in block [\#380](https://github.com/rodjek/puppet-lint/issues/380)
|
44
|
+
- Looking for a tool that shows the output of puppet-lint and rspec-puppet on a screen like jenkins [\#374](https://github.com/rodjek/puppet-lint/issues/374)
|
45
|
+
- Puppet lint should warn on semi colon usage when used without compression [\#367](https://github.com/rodjek/puppet-lint/issues/367)
|
46
|
+
- "indentation of =\> is not properly aligned" and "ensure found on line but it's not the first attribute" weirdness [\#365](https://github.com/rodjek/puppet-lint/issues/365)
|
47
|
+
- Run via jenkins complains about autoload module layout [\#361](https://github.com/rodjek/puppet-lint/issues/361)
|
48
|
+
- Installing gems / puppet-lint may break puppet-enterprise [\#358](https://github.com/rodjek/puppet-lint/issues/358)
|
49
|
+
- Double arrow after "symlink target specified in ensure attr" fix [\#341](https://github.com/rodjek/puppet-lint/issues/341)
|
50
|
+
- "puppet:// URL without modules/" - in the style guide? Custom mount points? [\#307](https://github.com/rodjek/puppet-lint/issues/307)
|
51
|
+
- Autoloader layout test fails inside a \(custom named\) module directory [\#265](https://github.com/rodjek/puppet-lint/issues/265)
|
52
|
+
- Check for trailing comma in last line of a attribute/value list [\#237](https://github.com/rodjek/puppet-lint/issues/237)
|
53
|
+
- Catch code outside of class or define block. [\#220](https://github.com/rodjek/puppet-lint/issues/220)
|
54
|
+
- Catch global code outside of node blocks [\#160](https://github.com/rodjek/puppet-lint/issues/160)
|
55
|
+
- Add a warning for resources outside of a class [\#69](https://github.com/rodjek/puppet-lint/issues/69)
|
56
|
+
|
57
|
+
**Merged pull requests:**
|
58
|
+
|
59
|
+
- Continue supporting Ruby \< 2 [\#529](https://github.com/rodjek/puppet-lint/pull/529) ([ghoneycutt](https://github.com/ghoneycutt))
|
60
|
+
- Use underscores instead of CamelCase in example [\#527](https://github.com/rodjek/puppet-lint/pull/527) ([ghoneycutt](https://github.com/ghoneycutt))
|
61
|
+
- new linter for top\_scope\_facts [\#526](https://github.com/rodjek/puppet-lint/pull/526) ([mmckinst](https://github.com/mmckinst))
|
62
|
+
- \(GH462\) Multi-line comments can now be fixed. [\#525](https://github.com/rodjek/puppet-lint/pull/525) ([rnelson0](https://github.com/rnelson0))
|
63
|
+
- New additions of protected variables [\#524](https://github.com/rodjek/puppet-lint/pull/524) ([rnelson0](https://github.com/rnelson0))
|
64
|
+
- Document new checks in puppet-lint 2.0.0+ [\#523](https://github.com/rodjek/puppet-lint/pull/523) ([rnelson0](https://github.com/rnelson0))
|
65
|
+
- Remove github pages changelog [\#522](https://github.com/rodjek/puppet-lint/pull/522) ([3flex](https://github.com/3flex))
|
66
|
+
- \(GH366\) Arrow Alignment fix crashes with tabs [\#515](https://github.com/rodjek/puppet-lint/pull/515) ([rnelson0](https://github.com/rnelson0))
|
67
|
+
- Make params disabled [\#511](https://github.com/rodjek/puppet-lint/pull/511) ([binford2k](https://github.com/binford2k))
|
68
|
+
- Removing params class check [\#510](https://github.com/rodjek/puppet-lint/pull/510) ([cvquesty](https://github.com/cvquesty))
|
69
|
+
- Tweak travis a bit for better patterns. [\#505](https://github.com/rodjek/puppet-lint/pull/505) ([rnelson0](https://github.com/rnelson0))
|
70
|
+
- Bugfix: properly handling $gronk-$grouik with --fix \(fix \#442\) [\#500](https://github.com/rodjek/puppet-lint/pull/500) ([Lucas-C](https://github.com/Lucas-C))
|
71
|
+
- Improve look of rspec [\#496](https://github.com/rodjek/puppet-lint/pull/496) ([rnelson0](https://github.com/rnelson0))
|
72
|
+
- This adds a disabled-by-default 80chars check [\#495](https://github.com/rodjek/puppet-lint/pull/495) ([binford2k](https://github.com/binford2k))
|
73
|
+
- Add better description of the problem in arrow\_alignment check [\#492](https://github.com/rodjek/puppet-lint/pull/492) ([rnelson0](https://github.com/rnelson0))
|
74
|
+
- \(GH410\) Limit ensure\_first\_param check to certain resources [\#490](https://github.com/rodjek/puppet-lint/pull/490) ([rnelson0](https://github.com/rnelson0))
|
75
|
+
- add lint test for resource references [\#486](https://github.com/rodjek/puppet-lint/pull/486) ([tuxmea](https://github.com/tuxmea))
|
76
|
+
- Regression from 418: duplicate constant [\#483](https://github.com/rodjek/puppet-lint/pull/483) ([rnelson0](https://github.com/rnelson0))
|
77
|
+
- Add fully-detailed CHANGELOG [\#481](https://github.com/rodjek/puppet-lint/pull/481) ([petems](https://github.com/petems))
|
78
|
+
- Add a CHANGELOG [\#480](https://github.com/rodjek/puppet-lint/pull/480) ([rnelson0](https://github.com/rnelson0))
|
79
|
+
- Add file mode checks for concat module [\#473](https://github.com/rodjek/puppet-lint/pull/473) ([danieljamesscott](https://github.com/danieljamesscott))
|
80
|
+
- Fix handling of empty code [\#469](https://github.com/rodjek/puppet-lint/pull/469) ([hanazuki](https://github.com/hanazuki))
|
81
|
+
- Allow regex params for puppet data types [\#468](https://github.com/rodjek/puppet-lint/pull/468) ([thejandroman](https://github.com/thejandroman))
|
82
|
+
- Support automatic fixing in Rake task as described in README [\#465](https://github.com/rodjek/puppet-lint/pull/465) ([hanazuki](https://github.com/hanazuki))
|
83
|
+
- Fix double arrow issue when adding target to ensure symlink [\#454](https://github.com/rodjek/puppet-lint/pull/454) ([mterzo](https://github.com/mterzo))
|
84
|
+
- Add future parser's Puppet Types token type [\#435](https://github.com/rodjek/puppet-lint/pull/435) ([mcanevet](https://github.com/mcanevet))
|
85
|
+
- Parameters ordering was only checked on defined types [\#429](https://github.com/rodjek/puppet-lint/pull/429) ([ctoa](https://github.com/ctoa))
|
86
|
+
- Check that variables are lowercase [\#418](https://github.com/rodjek/puppet-lint/pull/418) ([rothsa](https://github.com/rothsa))
|
87
|
+
|
88
|
+
## [2.0.0](https://github.com/rodjek/puppet-lint/tree/2.0.0) (2016-06-22)
|
89
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.1.0...2.0.0)
|
90
|
+
|
91
|
+
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:
|
92
|
+
```ruby
|
93
|
+
# Line length test is 80 chars in puppet-lint 1.1.0
|
94
|
+
PuppetLint.configuration.send('disable_80chars')
|
95
|
+
# Line length test is 140 chars in puppet-lint 2.x
|
96
|
+
PuppetLint.configuration.send('disable_140chars')
|
97
|
+
```
|
98
|
+
|
99
|
+
You may also need to adjust your Gemfile if you are pointing directly at git:
|
100
|
+
```ruby
|
101
|
+
# old
|
102
|
+
gem 'puppet-lint', :require => false, :git => 'https://github.com/rodjek/puppet-lint.git'
|
103
|
+
|
104
|
+
# new
|
105
|
+
gem 'puppet-lint', '~> 2.0'
|
106
|
+
```
|
107
|
+
|
108
|
+
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.
|
109
|
+
|
110
|
+
**Closed issues:**
|
111
|
+
|
112
|
+
- Current package [\#471](https://github.com/rodjek/puppet-lint/issues/471)
|
113
|
+
- Arrow alignment check not working with semicolons in a \(potential\) multiple resources declaration [\#470](https://github.com/rodjek/puppet-lint/issues/470)
|
114
|
+
- puppet-lint --fix ".../puppet-lint/plugins/check\_comments.rb:55:in `block in fix': undefined method `value' for nil:NilClass \(NoMethodError\)" [\#461](https://github.com/rodjek/puppet-lint/issues/461)
|
115
|
+
- WARNING: indentation of =\> is not properly aligned [\#447](https://github.com/rodjek/puppet-lint/issues/447)
|
116
|
+
- Inheritance check [\#436](https://github.com/rodjek/puppet-lint/issues/436)
|
117
|
+
- puppet-lint still checks for lines with more than 80 character [\#425](https://github.com/rodjek/puppet-lint/issues/425)
|
118
|
+
- puppet-lint --help does not work [\#423](https://github.com/rodjek/puppet-lint/issues/423)
|
119
|
+
- Test that "ensure" non-filename attributes are barewords [\#412](https://github.com/rodjek/puppet-lint/issues/412)
|
120
|
+
- crashing puppet-lint 1.1.0 [\#409](https://github.com/rodjek/puppet-lint/issues/409)
|
121
|
+
- Small Documentation Typo [\#408](https://github.com/rodjek/puppet-lint/issues/408)
|
122
|
+
- Create v1.1.1 [\#401](https://github.com/rodjek/puppet-lint/issues/401)
|
123
|
+
- TypeError running on seemingly-sane puppet file [\#399](https://github.com/rodjek/puppet-lint/issues/399)
|
124
|
+
- Warning for line-length should be at 140 chars [\#396](https://github.com/rodjek/puppet-lint/issues/396)
|
125
|
+
- Add fix for puppet\_url\_without\_modules check [\#390](https://github.com/rodjek/puppet-lint/issues/390)
|
126
|
+
- How to disable some fix ? [\#383](https://github.com/rodjek/puppet-lint/issues/383)
|
127
|
+
- indentation of =\> is not properly aligned [\#381](https://github.com/rodjek/puppet-lint/issues/381)
|
128
|
+
- parser error on modulo operator [\#379](https://github.com/rodjek/puppet-lint/issues/379)
|
129
|
+
- Trailing blank lines discarded in PuppetLinter::Data.manifest\_lines [\#378](https://github.com/rodjek/puppet-lint/issues/378)
|
130
|
+
- nasty bug leading to --no-star\_comments-check to not being honored with --fix [\#373](https://github.com/rodjek/puppet-lint/issues/373)
|
131
|
+
- Puppet-lint for EPEL7 [\#372](https://github.com/rodjek/puppet-lint/issues/372)
|
132
|
+
- puppet-lint failure for resource declarations with colons followed by non-whitespaces [\#370](https://github.com/rodjek/puppet-lint/issues/370)
|
133
|
+
- Issue with puppet-lint 1.1.0 binary on lucid [\#364](https://github.com/rodjek/puppet-lint/issues/364)
|
134
|
+
- Immediate action required: custom Pages domain pointed to a legacy IP address [\#363](https://github.com/rodjek/puppet-lint/issues/363)
|
135
|
+
- 1.1.0 ignores trailing white spaces on lines without text [\#359](https://github.com/rodjek/puppet-lint/issues/359)
|
136
|
+
- alignment warning on commented code [\#357](https://github.com/rodjek/puppet-lint/issues/357)
|
137
|
+
- gem missing when installing with Puppet [\#356](https://github.com/rodjek/puppet-lint/issues/356)
|
138
|
+
- --fix ignores control comment\(s\) and fixes anyway [\#347](https://github.com/rodjek/puppet-lint/issues/347)
|
139
|
+
- colon after closing of class causing puppet-lint to crash. [\#344](https://github.com/rodjek/puppet-lint/issues/344)
|
140
|
+
- New problem in unqouted\_node\_name check in 1.1.0 [\#343](https://github.com/rodjek/puppet-lint/issues/343)
|
141
|
+
- whitespace check bug [\#339](https://github.com/rodjek/puppet-lint/issues/339)
|
142
|
+
- 57fd065d0c2c116471cb16afec99631803496659 breaks indentation of =\> check [\#338](https://github.com/rodjek/puppet-lint/issues/338)
|
143
|
+
- Error in Jenkins [\#337](https://github.com/rodjek/puppet-lint/issues/337)
|
144
|
+
- Line numbers in developer tutorial documentation. [\#336](https://github.com/rodjek/puppet-lint/issues/336)
|
145
|
+
- '--relative' option doesn't work with new RakeTask format introduced in 1.1.0 [\#335](https://github.com/rodjek/puppet-lint/issues/335)
|
146
|
+
- Configuring RakeTask does not work anymore [\#331](https://github.com/rodjek/puppet-lint/issues/331)
|
147
|
+
- "indentation of =\> is not properly aligned" for hash inside resource definition [\#327](https://github.com/rodjek/puppet-lint/issues/327)
|
148
|
+
- --fix doesn't change "\$var" to single-quotes [\#313](https://github.com/rodjek/puppet-lint/issues/313)
|
149
|
+
|
150
|
+
**Merged pull requests:**
|
151
|
+
|
152
|
+
- \(GH443\) Release 2.0.0 PR [\#477](https://github.com/rodjek/puppet-lint/pull/477) ([rnelson0](https://github.com/rnelson0))
|
153
|
+
- Fix arrow aligment check in multiple resources declaration [\#476](https://github.com/rodjek/puppet-lint/pull/476) ([wybczu](https://github.com/wybczu))
|
154
|
+
- 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))
|
155
|
+
- Adding package\_ensure plugin [\#448](https://github.com/rodjek/puppet-lint/pull/448) ([danzilio](https://github.com/danzilio))
|
156
|
+
- Update documentation for 140chars [\#440](https://github.com/rodjek/puppet-lint/pull/440) ([keeleysam](https://github.com/keeleysam))
|
157
|
+
- Changed character width to 140. [\#419](https://github.com/rodjek/puppet-lint/pull/419) ([potto007](https://github.com/potto007))
|
158
|
+
- 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))
|
159
|
+
- Fix puppet:// url check to catch double quoted strings [\#407](https://github.com/rodjek/puppet-lint/pull/407) ([paulgeringer](https://github.com/paulgeringer))
|
160
|
+
- Load puppet-lint plugins from Puppet modules [\#404](https://github.com/rodjek/puppet-lint/pull/404) ([raphink](https://github.com/raphink))
|
161
|
+
- Get ignore\_paths from the configuration [\#397](https://github.com/rodjek/puppet-lint/pull/397) ([lazyfrosch](https://github.com/lazyfrosch))
|
162
|
+
- Skip checks on empty files [\#393](https://github.com/rodjek/puppet-lint/pull/393) ([vStone](https://github.com/vStone))
|
163
|
+
- Add the fix functionality to puppet\_url\_without\_modules [\#391](https://github.com/rodjek/puppet-lint/pull/391) ([someword](https://github.com/someword))
|
164
|
+
- Add various helper functions [\#389](https://github.com/rodjek/puppet-lint/pull/389) ([raphink](https://github.com/raphink))
|
165
|
+
- Support older 1.8.7 patch numbers Kernel\#caller output [\#387](https://github.com/rodjek/puppet-lint/pull/387) ([rodjek](https://github.com/rodjek))
|
166
|
+
- Detect trailing whitespace on lines with no code [\#386](https://github.com/rodjek/puppet-lint/pull/386) ([rodjek](https://github.com/rodjek))
|
167
|
+
- 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))
|
168
|
+
- Don't suppress nil values in manifest\_lines [\#384](https://github.com/rodjek/puppet-lint/pull/384) ([rodjek](https://github.com/rodjek))
|
169
|
+
- Update index.md [\#377](https://github.com/rodjek/puppet-lint/pull/377) ([mcanevet](https://github.com/mcanevet))
|
170
|
+
- Only clear task if it's already defined [\#376](https://github.com/rodjek/puppet-lint/pull/376) ([domcleal](https://github.com/domcleal))
|
171
|
+
- add strict\_indent check to community plugins [\#371](https://github.com/rodjek/puppet-lint/pull/371) ([relud](https://github.com/relud))
|
172
|
+
- Nested cases [\#368](https://github.com/rodjek/puppet-lint/pull/368) ([jonnangle](https://github.com/jonnangle))
|
173
|
+
- 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))
|
174
|
+
- plugins: Add absolute template path check [\#353](https://github.com/rodjek/puppet-lint/pull/353) ([3flex](https://github.com/3flex))
|
175
|
+
- Update index.md [\#352](https://github.com/rodjek/puppet-lint/pull/352) ([mcanevet](https://github.com/mcanevet))
|
176
|
+
- Add node\_indexes method [\#351](https://github.com/rodjek/puppet-lint/pull/351) ([mcanevet](https://github.com/mcanevet))
|
177
|
+
- Don't attempt to fix ignored problems [\#349](https://github.com/rodjek/puppet-lint/pull/349) ([rodjek](https://github.com/rodjek))
|
178
|
+
- 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))
|
179
|
+
- 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))
|
180
|
+
- 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))
|
181
|
+
- Generate line numbers for the plugin tutorial code examples [\#340](https://github.com/rodjek/puppet-lint/pull/340) ([rodjek](https://github.com/rodjek))
|
182
|
+
- Add support for '--relative' option in new Rake::Task format. [\#334](https://github.com/rodjek/puppet-lint/pull/334) ([fatmcgav](https://github.com/fatmcgav))
|
183
|
+
- fix \#331 - clear any pre-\(auto-\)existing tasks [\#332](https://github.com/rodjek/puppet-lint/pull/332) ([duritong](https://github.com/duritong))
|
184
|
+
- Don't warn for arrow alignment for single-element hashes [\#330](https://github.com/rodjek/puppet-lint/pull/330) ([domcleal](https://github.com/domcleal))
|
185
|
+
- Document multiple commands in a single control comment [\#329](https://github.com/rodjek/puppet-lint/pull/329) ([domcleal](https://github.com/domcleal))
|
186
|
+
- Add parameter\_documentation/param-docs plugin [\#328](https://github.com/rodjek/puppet-lint/pull/328) ([domcleal](https://github.com/domcleal))
|
187
|
+
- Alternative to \#289: :error on either class names and defines [\#290](https://github.com/rodjek/puppet-lint/pull/290) ([ppp0](https://github.com/ppp0))
|
188
|
+
|
189
|
+
## [1.1.0](https://github.com/rodjek/puppet-lint/tree/1.1.0) (2014-09-23)
|
190
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.0.1...1.1.0)
|
191
|
+
|
192
|
+
**Closed issues:**
|
193
|
+
|
194
|
+
- Allow overriding filename for autoloader\_layout [\#316](https://github.com/rodjek/puppet-lint/issues/316)
|
195
|
+
- Alignment warning when =\> are all aligned. [\#309](https://github.com/rodjek/puppet-lint/issues/309)
|
196
|
+
- Run with future parser? [\#306](https://github.com/rodjek/puppet-lint/issues/306)
|
197
|
+
- Pull in variables defined from inherited classes for top\_scope\_variables check [\#304](https://github.com/rodjek/puppet-lint/issues/304)
|
198
|
+
- puppet-lint unqouted\_node\_name only checks \(and fixes\) first entry [\#323](https://github.com/rodjek/puppet-lint/issues/323)
|
199
|
+
- Class param\_tokens on unparameterised class returns function arguments [\#319](https://github.com/rodjek/puppet-lint/issues/319)
|
200
|
+
- Performance on largeish files for 1.0.0 and 1.0.1 is much slower [\#315](https://github.com/rodjek/puppet-lint/issues/315)
|
201
|
+
- Multiple ignores on one line [\#314](https://github.com/rodjek/puppet-lint/issues/314)
|
202
|
+
- --fix doesn't handle multiple "=\>" on the same line properly [\#312](https://github.com/rodjek/puppet-lint/issues/312)
|
203
|
+
- --fix converts "param=\>" to "=\>" [\#311](https://github.com/rodjek/puppet-lint/issues/311)
|
204
|
+
- Make top scope variable check respect metaparameters for defined types [\#310](https://github.com/rodjek/puppet-lint/issues/310)
|
205
|
+
- Installation instructions on front page should include how to install it with puppet [\#308](https://github.com/rodjek/puppet-lint/issues/308)
|
206
|
+
- Make rake task accept optional list of files to check [\#305](https://github.com/rodjek/puppet-lint/issues/305)
|
207
|
+
|
208
|
+
**Merged pull requests:**
|
209
|
+
|
210
|
+
- Extend the rake task to support setting configuration options in the block [\#326](https://github.com/rodjek/puppet-lint/pull/326) ([rodjek](https://github.com/rodjek))
|
211
|
+
- Support multiple commands in a single control comment [\#325](https://github.com/rodjek/puppet-lint/pull/325) ([rodjek](https://github.com/rodjek))
|
212
|
+
- Support for multiple node names in unquoted\_node\_name [\#324](https://github.com/rodjek/puppet-lint/pull/324) ([rodjek](https://github.com/rodjek))
|
213
|
+
- Handle multiple parameters on a line when fixing arrow\_alignment problems [\#322](https://github.com/rodjek/puppet-lint/pull/322) ([rodjek](https://github.com/rodjek))
|
214
|
+
- Support of metaparameter variables in variable\_scope check [\#321](https://github.com/rodjek/puppet-lint/pull/321) ([rodjek](https://github.com/rodjek))
|
215
|
+
- Don't parse class body when searching for parameter tokens [\#320](https://github.com/rodjek/puppet-lint/pull/320) ([domcleal](https://github.com/domcleal))
|
216
|
+
- Insert :WHITESPACE token between :NAME and :FARROW if needed [\#318](https://github.com/rodjek/puppet-lint/pull/318) ([rodjek](https://github.com/rodjek))
|
217
|
+
- Cache parsing state in Lexer rather than recalculating [\#317](https://github.com/rodjek/puppet-lint/pull/317) ([rodjek](https://github.com/rodjek))
|
218
|
+
|
219
|
+
## [1.0.1](https://github.com/rodjek/puppet-lint/tree/1.0.1) (2014-08-20)
|
220
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/1.0.0...1.0.1)
|
221
|
+
|
222
|
+
**Closed issues:**
|
223
|
+
|
224
|
+
- Cut a new release. [\#259](https://github.com/rodjek/puppet-lint/issues/259)
|
225
|
+
- Exception with PE 3.0 [\#231](https://github.com/rodjek/puppet-lint/issues/231)
|
226
|
+
- Puppet-lint should warn on files that do not end with a trailing newline [\#188](https://github.com/rodjek/puppet-lint/issues/188)
|
227
|
+
- Breaks if ressource collector is present [\#301](https://github.com/rodjek/puppet-lint/issues/301)
|
228
|
+
- puppet-lint issues scope warnings for array/hash access [\#291](https://github.com/rodjek/puppet-lint/issues/291)
|
229
|
+
|
230
|
+
**Merged pull requests:**
|
231
|
+
|
232
|
+
- Handle empty blocks in arrow\_alignment [\#302](https://github.com/rodjek/puppet-lint/pull/302) ([rodjek](https://github.com/rodjek))
|
233
|
+
- fix typo in the links to 'trailing\_newline' plugin [\#300](https://github.com/rodjek/puppet-lint/pull/300) ([3flex](https://github.com/3flex))
|
234
|
+
- Comments on developer puppet-lint checks [\#299](https://github.com/rodjek/puppet-lint/pull/299) ([jfryman](https://github.com/jfryman))
|
235
|
+
- \[Fixes \#291\] Ignore index braces for scope variables [\#303](https://github.com/rodjek/puppet-lint/pull/303) ([dcarley](https://github.com/dcarley))
|
236
|
+
|
237
|
+
## [1.0.0](https://github.com/rodjek/puppet-lint/tree/1.0.0) (2014-08-18)
|
238
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.4.0.pre1...1.0.0)
|
239
|
+
|
240
|
+
**Closed issues:**
|
241
|
+
|
242
|
+
- Stop complaining about things unsupported versions of Puppet won't support. [\#281](https://github.com/rodjek/puppet-lint/issues/281)
|
243
|
+
- some ERROR checks shouldn't fire inside comments [\#272](https://github.com/rodjek/puppet-lint/issues/272)
|
244
|
+
- quoted boolean should not trigger off of a variable value in a conditional [\#268](https://github.com/rodjek/puppet-lint/issues/268)
|
245
|
+
- Fails when parsing a Puppet file with Windows line endings on Linux. [\#262](https://github.com/rodjek/puppet-lint/issues/262)
|
246
|
+
- Whitelist variables [\#260](https://github.com/rodjek/puppet-lint/issues/260)
|
247
|
+
- Syntax error not detected [\#257](https://github.com/rodjek/puppet-lint/issues/257)
|
248
|
+
- "\$ escape sequence" throws out puppet lint error [\#256](https://github.com/rodjek/puppet-lint/issues/256)
|
249
|
+
- Incorrect ensure not first attribute warning [\#254](https://github.com/rodjek/puppet-lint/issues/254)
|
250
|
+
- lint task breaks, command line works [\#253](https://github.com/rodjek/puppet-lint/issues/253)
|
251
|
+
- Boolean quotation [\#251](https://github.com/rodjek/puppet-lint/issues/251)
|
252
|
+
- Closing bracket from classes not "linting" [\#250](https://github.com/rodjek/puppet-lint/issues/250)
|
253
|
+
- Node variables being detected as a top-scope variable [\#246](https://github.com/rodjek/puppet-lint/issues/246)
|
254
|
+
- autoloader\_layout test overly dependant on the name of the current directory [\#245](https://github.com/rodjek/puppet-lint/issues/245)
|
255
|
+
- Bamboo plugin published [\#242](https://github.com/rodjek/puppet-lint/issues/242)
|
256
|
+
- puppet-lint says syntax error, puppet parser says ok [\#230](https://github.com/rodjek/puppet-lint/issues/230)
|
257
|
+
- warn when variable or parameter is not used [\#225](https://github.com/rodjek/puppet-lint/issues/225)
|
258
|
+
- Parser fails on arithmetic expressions [\#222](https://github.com/rodjek/puppet-lint/issues/222)
|
259
|
+
- Linting errors should be sent to stderr [\#218](https://github.com/rodjek/puppet-lint/issues/218)
|
260
|
+
- 2 space softabs does not always make sense when aligning array endings [\#213](https://github.com/rodjek/puppet-lint/issues/213)
|
261
|
+
- Ignore cron commands over 80 characters long [\#198](https://github.com/rodjek/puppet-lint/issues/198)
|
262
|
+
- facter fact selinux; WARNING: quoted boolean value found on line [\#197](https://github.com/rodjek/puppet-lint/issues/197)
|
263
|
+
- Recursive check [\#196](https://github.com/rodjek/puppet-lint/issues/196)
|
264
|
+
- emits ERROR when garbage outside the class definition. [\#193](https://github.com/rodjek/puppet-lint/issues/193)
|
265
|
+
- variables\_not\_enclosed sometimes fires where it shouldn't. [\#191](https://github.com/rodjek/puppet-lint/issues/191)
|
266
|
+
- Doesn't detect syntax error [\#187](https://github.com/rodjek/puppet-lint/issues/187)
|
267
|
+
- Puppet-lint doesn't fail on unbalanced curly braces [\#185](https://github.com/rodjek/puppet-lint/issues/185)
|
268
|
+
- Optionally fixing simple stuff instead of complaining [\#162](https://github.com/rodjek/puppet-lint/issues/162)
|
269
|
+
- Feature: Print the name of the file being linted [\#283](https://github.com/rodjek/puppet-lint/issues/283)
|
270
|
+
- Allow specifying a configuration file on the command line [\#267](https://github.com/rodjek/puppet-lint/issues/267)
|
271
|
+
- Future parser loop should allow for inline variable declaration without scoping [\#264](https://github.com/rodjek/puppet-lint/issues/264)
|
272
|
+
- Double Quoted Strings - should allow for strings containing single quotes [\#263](https://github.com/rodjek/puppet-lint/issues/263)
|
273
|
+
- 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)
|
274
|
+
- ERROR: Syntax error \(try running `puppet parser validate \<file\>`\) on line 15 [\#258](https://github.com/rodjek/puppet-lint/issues/258)
|
275
|
+
- Variables in each incorrectly idenentified as top scope. [\#249](https://github.com/rodjek/puppet-lint/issues/249)
|
276
|
+
- puppet-lint -f makes a mess of double-quoted strings that contain single quotes [\#248](https://github.com/rodjek/puppet-lint/issues/248)
|
277
|
+
- Need a way to ignore a lint check for a particular line [\#247](https://github.com/rodjek/puppet-lint/issues/247)
|
278
|
+
- Puppetlint should ignore template lines \> 80 characters [\#233](https://github.com/rodjek/puppet-lint/issues/233)
|
279
|
+
- Syntax error when parser future features used [\#232](https://github.com/rodjek/puppet-lint/issues/232)
|
280
|
+
- Issue with puppet-lint -f and trailing whitespace [\#224](https://github.com/rodjek/puppet-lint/issues/224)
|
281
|
+
- escape a variable interpolation to skip checking [\#219](https://github.com/rodjek/puppet-lint/issues/219)
|
282
|
+
- Trailing line comment to disable check [\#214](https://github.com/rodjek/puppet-lint/issues/214)
|
283
|
+
- wrong title for \>80char per line check site [\#209](https://github.com/rodjek/puppet-lint/issues/209)
|
284
|
+
- `rake lint` should respect .puppet-lint.rc in root of module [\#202](https://github.com/rodjek/puppet-lint/issues/202)
|
285
|
+
- lint analyzes inlined ruby code [\#201](https://github.com/rodjek/puppet-lint/issues/201)
|
286
|
+
- --with-context causes error [\#200](https://github.com/rodjek/puppet-lint/issues/200)
|
287
|
+
- Different results on Windows and Mac [\#195](https://github.com/rodjek/puppet-lint/issues/195)
|
288
|
+
- Fixing of double quoted strings doesn't escape single quote inside [\#182](https://github.com/rodjek/puppet-lint/issues/182)
|
289
|
+
- Fixing of string with array addressing wrong [\#181](https://github.com/rodjek/puppet-lint/issues/181)
|
290
|
+
- Puppet lint seems to ignore --no-class\_parameter\_defaults-check when inheriting the params class [\#173](https://github.com/rodjek/puppet-lint/issues/173)
|
291
|
+
- Quoting top level variable in class parameter cause false warning [\#170](https://github.com/rodjek/puppet-lint/issues/170)
|
292
|
+
- exec and Bash vars, false-postive "single quoted string containing a variable found on line" [\#113](https://github.com/rodjek/puppet-lint/issues/113)
|
293
|
+
- disable tests on arbitrary lines or over blocks of code [\#68](https://github.com/rodjek/puppet-lint/issues/68)
|
294
|
+
|
295
|
+
**Merged pull requests:**
|
296
|
+
|
297
|
+
- 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))
|
298
|
+
- 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))
|
299
|
+
- Update code documentation [\#298](https://github.com/rodjek/puppet-lint/pull/298) ([rodjek](https://github.com/rodjek))
|
300
|
+
- Add option to load config from specified file [\#297](https://github.com/rodjek/puppet-lint/pull/297) ([rodjek](https://github.com/rodjek))
|
301
|
+
- Ensure check methods can't modify tokens array [\#296](https://github.com/rodjek/puppet-lint/pull/296) ([rodjek](https://github.com/rodjek))
|
302
|
+
- Allow single quoted strings in double quoted strings [\#295](https://github.com/rodjek/puppet-lint/pull/295) ([rodjek](https://github.com/rodjek))
|
303
|
+
- Move dependency info into gemspec [\#294](https://github.com/rodjek/puppet-lint/pull/294) ([rodjek](https://github.com/rodjek))
|
304
|
+
- Support future parser loop local scope variables [\#293](https://github.com/rodjek/puppet-lint/pull/293) ([rodjek](https://github.com/rodjek))
|
305
|
+
- Fix problems after all checks have finished [\#292](https://github.com/rodjek/puppet-lint/pull/292) ([rodjek](https://github.com/rodjek))
|
306
|
+
- Enable --with-filename by default if checking multiple files [\#287](https://github.com/rodjek/puppet-lint/pull/287) ([rodjek](https://github.com/rodjek))
|
307
|
+
- Automatically convert multiline comments into many single line comments [\#286](https://github.com/rodjek/puppet-lint/pull/286) ([rodjek](https://github.com/rodjek))
|
308
|
+
- Move to rspec3 [\#285](https://github.com/rodjek/puppet-lint/pull/285) ([rodjek](https://github.com/rodjek))
|
309
|
+
- Automatically fix ensure\_not\_symlink\_target problems [\#284](https://github.com/rodjek/puppet-lint/pull/284) ([rodjek](https://github.com/rodjek))
|
310
|
+
- Allow strings containing only a variable if they're used as hash keys [\#280](https://github.com/rodjek/puppet-lint/pull/280) ([rodjek](https://github.com/rodjek))
|
311
|
+
- Compressed arrow\_alignment [\#279](https://github.com/rodjek/puppet-lint/pull/279) ([rodjek](https://github.com/rodjek))
|
312
|
+
- Array ref variables [\#278](https://github.com/rodjek/puppet-lint/pull/278) ([rodjek](https://github.com/rodjek))
|
313
|
+
- Add docs badge to README [\#277](https://github.com/rodjek/puppet-lint/pull/277) ([rrrene](https://github.com/rrrene))
|
314
|
+
- Make array refs part of the variable name [\#276](https://github.com/rodjek/puppet-lint/pull/276) ([rodjek](https://github.com/rodjek))
|
315
|
+
- Don't automatically pad comment content with whitespace [\#275](https://github.com/rodjek/puppet-lint/pull/275) ([rodjek](https://github.com/rodjek))
|
316
|
+
- Use \#write instead of \#puts when writing fixed manifest [\#274](https://github.com/rodjek/puppet-lint/pull/274) ([rodjek](https://github.com/rodjek))
|
317
|
+
- Add --fix back to optionparser [\#273](https://github.com/rodjek/puppet-lint/pull/273) ([rodjek](https://github.com/rodjek))
|
318
|
+
- Initial spike of control comment logic [\#266](https://github.com/rodjek/puppet-lint/pull/266) ([rodjek](https://github.com/rodjek))
|
319
|
+
- Abort rake on lint error [\#255](https://github.com/rodjek/puppet-lint/pull/255) ([rodjek](https://github.com/rodjek))
|
320
|
+
- Add --relative command line argument for autoload structure testing [\#252](https://github.com/rodjek/puppet-lint/pull/252) ([ryanuber](https://github.com/ryanuber))
|
321
|
+
- DRY up the checks [\#244](https://github.com/rodjek/puppet-lint/pull/244) ([rodjek](https://github.com/rodjek))
|
322
|
+
- Refactor out linenumber in problems [\#243](https://github.com/rodjek/puppet-lint/pull/243) ([rodjek](https://github.com/rodjek))
|
323
|
+
- Ignore 80chars on lines that have long template\(\) paths [\#241](https://github.com/rodjek/puppet-lint/pull/241) ([rodjek](https://github.com/rodjek))
|
324
|
+
- Have the rake task read options from .puppet-lint.rc [\#240](https://github.com/rodjek/puppet-lint/pull/240) ([rodjek](https://github.com/rodjek))
|
325
|
+
- Support pipe char \(used in the "future" parser\) [\#239](https://github.com/rodjek/puppet-lint/pull/239) ([rodjek](https://github.com/rodjek))
|
326
|
+
- Rejig tests [\#238](https://github.com/rodjek/puppet-lint/pull/238) ([rodjek](https://github.com/rodjek))
|
327
|
+
- Allow double quotes for puppet supported escape sequences [\#234](https://github.com/rodjek/puppet-lint/pull/234) ([xarses](https://github.com/xarses))
|
328
|
+
- Allow specifying a list of checks that should run [\#228](https://github.com/rodjek/puppet-lint/pull/228) ([rodjek](https://github.com/rodjek))
|
329
|
+
- Split checking and reporting logic [\#227](https://github.com/rodjek/puppet-lint/pull/227) ([rodjek](https://github.com/rodjek))
|
330
|
+
- Refactor check plugins to have slightly less awful magic [\#226](https://github.com/rodjek/puppet-lint/pull/226) ([rodjek](https://github.com/rodjek))
|
331
|
+
- Add %{column} to help text of --log-format [\#221](https://github.com/rodjek/puppet-lint/pull/221) ([bdd](https://github.com/bdd))
|
332
|
+
- 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))
|
333
|
+
- Handle variables with array & hash references [\#212](https://github.com/rodjek/puppet-lint/pull/212) ([rodjek](https://github.com/rodjek))
|
334
|
+
- Add Modulo token [\#207](https://github.com/rodjek/puppet-lint/pull/207) ([dalen](https://github.com/dalen))
|
335
|
+
- Fix class\_inherits\_from\_params\_class docs link [\#206](https://github.com/rodjek/puppet-lint/pull/206) ([dcarley](https://github.com/dcarley))
|
336
|
+
- incorrect top-scope variable warning for define [\#205](https://github.com/rodjek/puppet-lint/pull/205) ([blalor](https://github.com/blalor))
|
337
|
+
- --fix doesn't modify my file [\#203](https://github.com/rodjek/puppet-lint/pull/203) ([BillWeiss](https://github.com/BillWeiss))
|
338
|
+
- 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))
|
339
|
+
- Doesn't recognize paramater containing default value if value is double quoted. [\#194](https://github.com/rodjek/puppet-lint/pull/194) ([jcray](https://github.com/jcray))
|
340
|
+
- 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))
|
341
|
+
- Puppet-lint fails to handle mac line endings [\#183](https://github.com/rodjek/puppet-lint/pull/183) ([devicenull](https://github.com/devicenull))
|
342
|
+
- Lone dollar sign should not be removed [\#180](https://github.com/rodjek/puppet-lint/pull/180) ([Seldaek](https://github.com/Seldaek))
|
343
|
+
- Fix illegal replacement of double quotes by single quotes [\#179](https://github.com/rodjek/puppet-lint/pull/179) ([Seldaek](https://github.com/Seldaek))
|
344
|
+
- 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))
|
345
|
+
- Warn about unquoted node names [\#177](https://github.com/rodjek/puppet-lint/pull/177) ([bitfield](https://github.com/bitfield))
|
346
|
+
- Fix the check\_classes check for certain cases. [\#176](https://github.com/rodjek/puppet-lint/pull/176) ([vStone](https://github.com/vStone))
|
347
|
+
- Invalid warning about mandatory class parameters without defaults [\#167](https://github.com/rodjek/puppet-lint/pull/167) ([svend](https://github.com/svend))
|
348
|
+
- Add check for puppet:/// URIs without modules/ [\#166](https://github.com/rodjek/puppet-lint/pull/166) ([rodjek](https://github.com/rodjek))
|
349
|
+
|
350
|
+
## [0.4.0.pre1](https://github.com/rodjek/puppet-lint/tree/0.4.0.pre1) (2013-01-28)
|
351
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.2...0.4.0.pre1)
|
352
|
+
|
353
|
+
**Closed issues:**
|
354
|
+
|
355
|
+
- error installing puppet-lint [\#172](https://github.com/rodjek/puppet-lint/issues/172)
|
356
|
+
- puppet-lint seems to miss obvious syntax error [\#171](https://github.com/rodjek/puppet-lint/issues/171)
|
357
|
+
- ERROR with file containing DOS EOL character [\#165](https://github.com/rodjek/puppet-lint/issues/165)
|
358
|
+
- ssh key parameter will always be longer than 80 chars [\#70](https://github.com/rodjek/puppet-lint/issues/70)
|
359
|
+
|
360
|
+
**Merged pull requests:**
|
361
|
+
|
362
|
+
- Fix where . is located in docs [\#169](https://github.com/rodjek/puppet-lint/pull/169) ([gmjosack](https://github.com/gmjosack))
|
363
|
+
- Update README.md [\#168](https://github.com/rodjek/puppet-lint/pull/168) ([levilovelock](https://github.com/levilovelock))
|
364
|
+
|
365
|
+
## [0.3.2](https://github.com/rodjek/puppet-lint/tree/0.3.2) (2012-10-19)
|
366
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.1...0.3.2)
|
367
|
+
|
368
|
+
**Closed issues:**
|
369
|
+
|
370
|
+
- Check "string containing only a variable" performs invalid suggestion. [\#164](https://github.com/rodjek/puppet-lint/issues/164)
|
371
|
+
- puppet-lint/lexer.rb:184:in `tokenise': ' } \(PuppetLint::LexerError\) on Ruby 1.8.7 [\#161](https://github.com/rodjek/puppet-lint/issues/161)
|
372
|
+
- Warning for 'more than 80 characters on line' is not catching all instances [\#159](https://github.com/rodjek/puppet-lint/issues/159)
|
373
|
+
- captilised variables error on puppet not with lint [\#158](https://github.com/rodjek/puppet-lint/issues/158)
|
374
|
+
- warning for 'class param without default' is not catching all instances in a file [\#157](https://github.com/rodjek/puppet-lint/issues/157)
|
375
|
+
- puppet-lint crashes if HOME environment is not set [\#156](https://github.com/rodjek/puppet-lint/issues/156)
|
376
|
+
- String monkeypatch breaks Facter under Ruby 1.8 [\#154](https://github.com/rodjek/puppet-lint/issues/154)
|
377
|
+
- Crash on string with \\ and variable [\#152](https://github.com/rodjek/puppet-lint/issues/152)
|
378
|
+
|
379
|
+
**Merged pull requests:**
|
380
|
+
|
381
|
+
- \(\#152\) Fix crash on string with \\ and variable [\#163](https://github.com/rodjek/puppet-lint/pull/163) ([dalen](https://github.com/dalen))
|
382
|
+
- fixes \#154 string monkeypatch failure [\#155](https://github.com/rodjek/puppet-lint/pull/155) ([vStone](https://github.com/vStone))
|
383
|
+
|
384
|
+
## [0.3.1](https://github.com/rodjek/puppet-lint/tree/0.3.1) (2012-09-26)
|
385
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.3.0...0.3.1)
|
386
|
+
|
387
|
+
**Closed issues:**
|
388
|
+
|
389
|
+
- class\_inherits\_from\_params\_class throws exception in 0.3.0 [\#150](https://github.com/rodjek/puppet-lint/issues/150)
|
390
|
+
|
391
|
+
**Merged pull requests:**
|
392
|
+
|
393
|
+
- Fixes \#150 class inherits from params class exception [\#151](https://github.com/rodjek/puppet-lint/pull/151) ([vStone](https://github.com/vStone))
|
394
|
+
|
395
|
+
## [0.3.0](https://github.com/rodjek/puppet-lint/tree/0.3.0) (2012-09-25)
|
396
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.1...0.3.0)
|
397
|
+
|
398
|
+
**Closed issues:**
|
399
|
+
|
400
|
+
- False positive unquoted resource title for colons in resource parameters [\#146](https://github.com/rodjek/puppet-lint/issues/146)
|
401
|
+
- should exit with non 0 exit code on error [\#140](https://github.com/rodjek/puppet-lint/issues/140)
|
402
|
+
- using fully qualified class names in inheritance is wrongly reported as inheritance across namespaces [\#148](https://github.com/rodjek/puppet-lint/issues/148)
|
403
|
+
- False positive on duplicate parameter checks [\#145](https://github.com/rodjek/puppet-lint/issues/145)
|
404
|
+
- Crash on \\ at end of single quoted string [\#144](https://github.com/rodjek/puppet-lint/issues/144)
|
405
|
+
- Strings ending in backslash cause exceptions [\#142](https://github.com/rodjek/puppet-lint/issues/142)
|
406
|
+
- --no-class\_parameter\_defaults-check [\#139](https://github.com/rodjek/puppet-lint/issues/139)
|
407
|
+
- Provide context for the problems [\#130](https://github.com/rodjek/puppet-lint/issues/130)
|
408
|
+
|
409
|
+
**Merged pull requests:**
|
410
|
+
|
411
|
+
- Fixes \#145: False positive on duplicate parameter. [\#147](https://github.com/rodjek/puppet-lint/pull/147) ([vStone](https://github.com/vStone))
|
412
|
+
- Pass exit value to the shell [\#141](https://github.com/rodjek/puppet-lint/pull/141) ([vStone](https://github.com/vStone))
|
413
|
+
- \(\#148\) Allow class inheritance within the same module [\#149](https://github.com/rodjek/puppet-lint/pull/149) ([dcarley](https://github.com/dcarley))
|
414
|
+
- use .puppet-lint.rc, as .puppet-lintrc is deprecated [\#143](https://github.com/rodjek/puppet-lint/pull/143) ([ghoneycutt](https://github.com/ghoneycutt))
|
415
|
+
|
416
|
+
## [0.2.1](https://github.com/rodjek/puppet-lint/tree/0.2.1) (2012-08-27)
|
417
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.0...0.2.1)
|
418
|
+
|
419
|
+
**Closed issues:**
|
420
|
+
|
421
|
+
- Rake task breaks in 0.2.0 [\#138](https://github.com/rodjek/puppet-lint/issues/138)
|
422
|
+
- False warning : parameterised class parameter without a default value [\#137](https://github.com/rodjek/puppet-lint/issues/137)
|
423
|
+
|
424
|
+
## [0.2.0](https://github.com/rodjek/puppet-lint/tree/0.2.0) (2012-08-23)
|
425
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.2.0.pre1...0.2.0)
|
426
|
+
|
427
|
+
**Closed issues:**
|
428
|
+
|
429
|
+
- `require': iconv will be deprecated in the future, use String\#encode instead. [\#133](https://github.com/rodjek/puppet-lint/issues/133)
|
430
|
+
- False positive in "optional parameter listed before required parameter"? [\#126](https://github.com/rodjek/puppet-lint/issues/126)
|
431
|
+
- 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)
|
432
|
+
- Introduce a way to tweak warning/error level for checks [\#91](https://github.com/rodjek/puppet-lint/issues/91)
|
433
|
+
- Didn't pick up $ipaddress\_bond0 as a fact [\#61](https://github.com/rodjek/puppet-lint/issues/61)
|
434
|
+
- Variables standing by themselves should not be quoted [\#20](https://github.com/rodjek/puppet-lint/issues/20)
|
435
|
+
- write class\_parameter\_defaults check [\#134](https://github.com/rodjek/puppet-lint/issues/134)
|
436
|
+
- False positive when using function call for parameter default [\#132](https://github.com/rodjek/puppet-lint/issues/132)
|
437
|
+
- Fix up the website [\#131](https://github.com/rodjek/puppet-lint/issues/131)
|
438
|
+
- Linked list style functionality for tokens [\#129](https://github.com/rodjek/puppet-lint/issues/129)
|
439
|
+
- False positive unquoted resource title in case statements [\#128](https://github.com/rodjek/puppet-lint/issues/128)
|
440
|
+
- Crash on arrow alignment check [\#127](https://github.com/rodjek/puppet-lint/issues/127)
|
441
|
+
- duplicate parameter detection [\#122](https://github.com/rodjek/puppet-lint/issues/122)
|
442
|
+
- Does not work on ruby 1.9.3 [\#120](https://github.com/rodjek/puppet-lint/issues/120)
|
443
|
+
- Bad class format causes exception [\#118](https://github.com/rodjek/puppet-lint/issues/118)
|
444
|
+
- case statement in inline\_template false warning [\#117](https://github.com/rodjek/puppet-lint/issues/117)
|
445
|
+
- False warning with puppet-lint-0.2 [\#116](https://github.com/rodjek/puppet-lint/issues/116)
|
446
|
+
- :lint rake tasks should not print "Evaluating" lines [\#114](https://github.com/rodjek/puppet-lint/issues/114)
|
447
|
+
- when content is specified directly, double quotes are needed to get newlines [\#109](https://github.com/rodjek/puppet-lint/issues/109)
|
448
|
+
- Incorrect variable count in string parsing [\#104](https://github.com/rodjek/puppet-lint/issues/104)
|
449
|
+
- misparses empty hash in defined resource prototype [\#101](https://github.com/rodjek/puppet-lint/issues/101)
|
450
|
+
- Allow file modes to be 'undef' [\#100](https://github.com/rodjek/puppet-lint/issues/100)
|
451
|
+
- Arrow alignment check shouldn't span over several resources [\#78](https://github.com/rodjek/puppet-lint/issues/78)
|
452
|
+
- Ignore commented lines for arrow alignment [\#77](https://github.com/rodjek/puppet-lint/issues/77)
|
453
|
+
- /etc/puppet-lint.rc please! [\#71](https://github.com/rodjek/puppet-lint/issues/71)
|
454
|
+
- checking of correct docs format [\#59](https://github.com/rodjek/puppet-lint/issues/59)
|
455
|
+
- Multiline string should not be checked for double quotes [\#51](https://github.com/rodjek/puppet-lint/issues/51)
|
456
|
+
|
457
|
+
## [0.2.0.pre1](https://github.com/rodjek/puppet-lint/tree/0.2.0.pre1) (2012-07-11)
|
458
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.13...0.2.0.pre1)
|
459
|
+
|
460
|
+
**Closed issues:**
|
461
|
+
|
462
|
+
- Getting double quote warning with Augeas [\#111](https://github.com/rodjek/puppet-lint/issues/111)
|
463
|
+
- NoMethodError with Ruby 1.9.2 [\#103](https://github.com/rodjek/puppet-lint/issues/103)
|
464
|
+
- new to the lint [\#97](https://github.com/rodjek/puppet-lint/issues/97)
|
465
|
+
- inline\_templates only evaluate in double quotes, yet lint warns of no vars. [\#94](https://github.com/rodjek/puppet-lint/issues/94)
|
466
|
+
- Stop duplicate output [\#93](https://github.com/rodjek/puppet-lint/issues/93)
|
467
|
+
- add noop to variables\_in\_scope list [\#92](https://github.com/rodjek/puppet-lint/issues/92)
|
468
|
+
- Can't handle single quotes? \(slurpstring\) [\#90](https://github.com/rodjek/puppet-lint/issues/90)
|
469
|
+
- Detect missing commas [\#89](https://github.com/rodjek/puppet-lint/issues/89)
|
470
|
+
- Weird \(probably UTF-8\) problem gives false positives on 80char limit. [\#84](https://github.com/rodjek/puppet-lint/issues/84)
|
471
|
+
- Autoload module check and JenkinsCI [\#83](https://github.com/rodjek/puppet-lint/issues/83)
|
472
|
+
- "Should align arrows within blocks of attributes" check doesn't seem to work [\#75](https://github.com/rodjek/puppet-lint/issues/75)
|
473
|
+
- puppet-lintrc is ignored when running "rake lint" [\#74](https://github.com/rodjek/puppet-lint/issues/74)
|
474
|
+
- docs mention --disable-XXX, should be --no-XXX [\#73](https://github.com/rodjek/puppet-lint/issues/73)
|
475
|
+
- Added support for detecting bad string interpolation [\#40](https://github.com/rodjek/puppet-lint/issues/40)
|
476
|
+
|
477
|
+
**Merged pull requests:**
|
478
|
+
|
479
|
+
- Make rake task respect PuppetLint.configuration.fail\_on\_warnings [\#115](https://github.com/rodjek/puppet-lint/pull/115) ([wfarr](https://github.com/wfarr))
|
480
|
+
- fixes spelling and typo errors in README [\#112](https://github.com/rodjek/puppet-lint/pull/112) ([ghoneycutt](https://github.com/ghoneycutt))
|
481
|
+
- This fixes the build on Travis CI for ruby1.9 [\#110](https://github.com/rodjek/puppet-lint/pull/110) ([vStone](https://github.com/vStone))
|
482
|
+
- Fix utf8 char issues: see bug \#84 [\#108](https://github.com/rodjek/puppet-lint/pull/108) ([vStone](https://github.com/vStone))
|
483
|
+
- Add support for ignoring certain globs in the rake task [\#106](https://github.com/rodjek/puppet-lint/pull/106) ([wfarr](https://github.com/wfarr))
|
484
|
+
- Fix bug introduced in \#81 [\#98](https://github.com/rodjek/puppet-lint/pull/98) ([deizel](https://github.com/deizel))
|
485
|
+
|
486
|
+
## [0.1.13](https://github.com/rodjek/puppet-lint/tree/0.1.13) (2012-03-26)
|
487
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.12...0.1.13)
|
488
|
+
|
489
|
+
**Closed issues:**
|
490
|
+
|
491
|
+
- Getting `warning: class variable access from toplevel` with bundler [\#85](https://github.com/rodjek/puppet-lint/issues/85)
|
492
|
+
- Suppress "string containing only a variable" warnings on defines? [\#79](https://github.com/rodjek/puppet-lint/issues/79)
|
493
|
+
- puppet-lint equivalent to rakefile's require 'puppet-lint/tasks/puppet-lint' [\#72](https://github.com/rodjek/puppet-lint/issues/72)
|
494
|
+
- Support symbolic file modes for \>= 2.7.10 [\#60](https://github.com/rodjek/puppet-lint/issues/60)
|
495
|
+
|
496
|
+
**Merged pull requests:**
|
497
|
+
|
498
|
+
- Update readme to reflect the current names of the flags for disabling checks [\#88](https://github.com/rodjek/puppet-lint/pull/88) ([garethr](https://github.com/garethr))
|
499
|
+
- Add additional puppet variables. [\#82](https://github.com/rodjek/puppet-lint/pull/82) ([nanliu](https://github.com/nanliu))
|
500
|
+
- Add support run puppet-lint on directory. [\#81](https://github.com/rodjek/puppet-lint/pull/81) ([nanliu](https://github.com/nanliu))
|
501
|
+
- Update travis support for multiple puppet version. [\#80](https://github.com/rodjek/puppet-lint/pull/80) ([nanliu](https://github.com/nanliu))
|
502
|
+
- Find booleans in double quoted strings [\#67](https://github.com/rodjek/puppet-lint/pull/67) ([richardc](https://github.com/richardc))
|
503
|
+
- Fixup the variable not enclosed in {} test [\#66](https://github.com/rodjek/puppet-lint/pull/66) ([richardc](https://github.com/richardc))
|
504
|
+
- Feature/symbolic filemodes \(cfr ticket \#60\) [\#62](https://github.com/rodjek/puppet-lint/pull/62) ([vStone](https://github.com/vStone))
|
505
|
+
|
506
|
+
## [0.1.12](https://github.com/rodjek/puppet-lint/tree/0.1.12) (2012-01-27)
|
507
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.11...0.1.12)
|
508
|
+
|
509
|
+
**Closed issues:**
|
510
|
+
|
511
|
+
- ssh\_key can't be broken up by \ [\#58](https://github.com/rodjek/puppet-lint/issues/58)
|
512
|
+
- Autoload module check doesn't seem to work [\#57](https://github.com/rodjek/puppet-lint/issues/57)
|
513
|
+
- included parameterized classes check does not work [\#56](https://github.com/rodjek/puppet-lint/issues/56)
|
514
|
+
- invalid quoted string warning on resource titles [\#44](https://github.com/rodjek/puppet-lint/issues/44)
|
515
|
+
- turn off particular tests? .puppet-lintrc? [\#34](https://github.com/rodjek/puppet-lint/issues/34)
|
516
|
+
|
517
|
+
## [0.1.11](https://github.com/rodjek/puppet-lint/tree/0.1.11) (2012-01-11)
|
518
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.10...0.1.11)
|
519
|
+
|
520
|
+
## [0.1.10](https://github.com/rodjek/puppet-lint/tree/0.1.10) (2012-01-11)
|
521
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.9...0.1.10)
|
522
|
+
|
523
|
+
**Closed issues:**
|
524
|
+
|
525
|
+
- Alert when more than one class/define is present in a .pp file [\#54](https://github.com/rodjek/puppet-lint/issues/54)
|
526
|
+
- Invalid top-scope variable warning in definitions. [\#50](https://github.com/rodjek/puppet-lint/issues/50)
|
527
|
+
- Regex capture variables [\#49](https://github.com/rodjek/puppet-lint/issues/49)
|
528
|
+
|
529
|
+
**Merged pull requests:**
|
530
|
+
|
531
|
+
- Feature/unified problems [\#52](https://github.com/rodjek/puppet-lint/pull/52) ([vStone](https://github.com/vStone))
|
532
|
+
|
533
|
+
## [0.1.9](https://github.com/rodjek/puppet-lint/tree/0.1.9) (2011-12-27)
|
534
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.8...0.1.9)
|
535
|
+
|
536
|
+
**Merged pull requests:**
|
537
|
+
|
538
|
+
- Consolidated option checking logic [\#48](https://github.com/rodjek/puppet-lint/pull/48) ([jamtur01](https://github.com/jamtur01))
|
539
|
+
|
540
|
+
## [0.1.8](https://github.com/rodjek/puppet-lint/tree/0.1.8) (2011-12-27)
|
541
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.7...0.1.8)
|
542
|
+
|
543
|
+
**Closed issues:**
|
544
|
+
|
545
|
+
- Add option to control which error level is returned [\#45](https://github.com/rodjek/puppet-lint/issues/45)
|
546
|
+
- "false" != false \(ditto for true\) [\#43](https://github.com/rodjek/puppet-lint/issues/43)
|
547
|
+
- Facter variables are seen as unnamespaced top-level variables [\#42](https://github.com/rodjek/puppet-lint/issues/42)
|
548
|
+
- WARNING: =\> on line 13 isn't aligned with the previous line [\#37](https://github.com/rodjek/puppet-lint/issues/37)
|
549
|
+
- single quotes in a manifest causes an exception [\#36](https://github.com/rodjek/puppet-lint/issues/36)
|
550
|
+
- Invalid "optional parameter listed before required parameter" warning. [\#35](https://github.com/rodjek/puppet-lint/issues/35)
|
551
|
+
- Resource types containing only a variable [\#30](https://github.com/rodjek/puppet-lint/issues/30)
|
552
|
+
|
553
|
+
**Merged pull requests:**
|
554
|
+
|
555
|
+
- \[\#9\] add stack to allow nested hashes [\#47](https://github.com/rodjek/puppet-lint/pull/47) ([zsprackett](https://github.com/zsprackett))
|
556
|
+
- Fixed \#45 - Added selective error level reporting [\#46](https://github.com/rodjek/puppet-lint/pull/46) ([jamtur01](https://github.com/jamtur01))
|
557
|
+
- Added check for dashes in variables [\#41](https://github.com/rodjek/puppet-lint/pull/41) ([jamtur01](https://github.com/jamtur01))
|
558
|
+
- 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))
|
559
|
+
|
560
|
+
## [0.1.7](https://github.com/rodjek/puppet-lint/tree/0.1.7) (2011-10-18)
|
561
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.4...0.1.7)
|
562
|
+
|
563
|
+
**Closed issues:**
|
564
|
+
|
565
|
+
- missing dependency on "puppet" gem [\#33](https://github.com/rodjek/puppet-lint/issues/33)
|
566
|
+
- "class defined inside a class" even when class is a resource \(parameterized Class\) [\#32](https://github.com/rodjek/puppet-lint/issues/32)
|
567
|
+
- Classes inside classes should be allowed when order matters [\#31](https://github.com/rodjek/puppet-lint/issues/31)
|
568
|
+
- doesn't work...at all [\#29](https://github.com/rodjek/puppet-lint/issues/29)
|
569
|
+
- "mode should be represented as a 4 digit octal value" when variable [\#28](https://github.com/rodjek/puppet-lint/issues/28)
|
570
|
+
|
571
|
+
## [0.1.4](https://github.com/rodjek/puppet-lint/tree/0.1.4) (2011-09-09)
|
572
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.3...0.1.4)
|
573
|
+
|
574
|
+
**Closed issues:**
|
575
|
+
|
576
|
+
- String containing escape char \(and no var\) incorrectly flagged [\#26](https://github.com/rodjek/puppet-lint/issues/26)
|
577
|
+
- False alignment positives [\#21](https://github.com/rodjek/puppet-lint/issues/21)
|
578
|
+
|
579
|
+
## [0.1.3](https://github.com/rodjek/puppet-lint/tree/0.1.3) (2011-09-09)
|
580
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.2...0.1.3)
|
581
|
+
|
582
|
+
## [0.1.2](https://github.com/rodjek/puppet-lint/tree/0.1.2) (2011-09-09)
|
583
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.1...0.1.2)
|
584
|
+
|
585
|
+
**Closed issues:**
|
586
|
+
|
587
|
+
- double quote within single quote [\#24](https://github.com/rodjek/puppet-lint/issues/24)
|
588
|
+
- False positive in commented line [\#22](https://github.com/rodjek/puppet-lint/issues/22)
|
589
|
+
|
590
|
+
## [0.1.1](https://github.com/rodjek/puppet-lint/tree/0.1.1) (2011-09-07)
|
591
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.1.0...0.1.1)
|
592
|
+
|
593
|
+
**Closed issues:**
|
594
|
+
|
595
|
+
- $name is detected as a top-scope variable [\#23](https://github.com/rodjek/puppet-lint/issues/23)
|
596
|
+
- Not detecting comma and semicolon being mixed up [\#13](https://github.com/rodjek/puppet-lint/issues/13)
|
597
|
+
|
598
|
+
## [0.1.0](https://github.com/rodjek/puppet-lint/tree/0.1.0) (2011-08-23)
|
599
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.7...0.1.0)
|
600
|
+
|
601
|
+
**Closed issues:**
|
602
|
+
|
603
|
+
- display order of class/define parameters [\#19](https://github.com/rodjek/puppet-lint/issues/19)
|
604
|
+
- class inheritance [\#18](https://github.com/rodjek/puppet-lint/issues/18)
|
605
|
+
- classes and defined types within classes [\#17](https://github.com/rodjek/puppet-lint/issues/17)
|
606
|
+
- relationship declarations [\#16](https://github.com/rodjek/puppet-lint/issues/16)
|
607
|
+
- defaults for case statements and selectors [\#15](https://github.com/rodjek/puppet-lint/issues/15)
|
608
|
+
- namespacing variables [\#14](https://github.com/rodjek/puppet-lint/issues/14)
|
609
|
+
- =\> alignment warnings in selectors is broken [\#11](https://github.com/rodjek/puppet-lint/issues/11)
|
610
|
+
|
611
|
+
## [0.0.7](https://github.com/rodjek/puppet-lint/tree/0.0.7) (2011-08-21)
|
612
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.6...0.0.7)
|
613
|
+
|
614
|
+
## [0.0.6](https://github.com/rodjek/puppet-lint/tree/0.0.6) (2011-08-19)
|
615
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.5...0.0.6)
|
616
|
+
|
617
|
+
**Closed issues:**
|
618
|
+
|
619
|
+
- Please add logic to the \>80 chars check [\#12](https://github.com/rodjek/puppet-lint/issues/12)
|
620
|
+
|
621
|
+
## [0.0.5](https://github.com/rodjek/puppet-lint/tree/0.0.5) (2011-08-19)
|
622
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.4...0.0.5)
|
623
|
+
|
624
|
+
**Closed issues:**
|
625
|
+
|
626
|
+
- When ensure is the only attribute it is the first one too. [\#10](https://github.com/rodjek/puppet-lint/issues/10)
|
627
|
+
- Shell commands with curly brackets \(e.g. awk\) [\#9](https://github.com/rodjek/puppet-lint/issues/9)
|
628
|
+
- "single quoted string containing a variable" should check for nested quotes [\#7](https://github.com/rodjek/puppet-lint/issues/7)
|
629
|
+
|
630
|
+
## [0.0.4](https://github.com/rodjek/puppet-lint/tree/0.0.4) (2011-08-18)
|
631
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.3...0.0.4)
|
632
|
+
|
633
|
+
**Closed issues:**
|
634
|
+
|
635
|
+
- "ensure is not the first attribute" does not check for aggregated resources [\#8](https://github.com/rodjek/puppet-lint/issues/8)
|
636
|
+
- Square brackets trigger "WARNING: unquoted resource title" [\#5](https://github.com/rodjek/puppet-lint/issues/5)
|
637
|
+
- Nasty stacktrace when trying to run lint against a non existance file [\#4](https://github.com/rodjek/puppet-lint/issues/4)
|
638
|
+
|
639
|
+
## [0.0.3](https://github.com/rodjek/puppet-lint/tree/0.0.3) (2011-08-17)
|
640
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.2...0.0.3)
|
641
|
+
|
642
|
+
**Closed issues:**
|
643
|
+
|
644
|
+
- Invalid "ensure is not the first attribute" [\#3](https://github.com/rodjek/puppet-lint/issues/3)
|
645
|
+
- Empty variables break check\_strings plugin [\#2](https://github.com/rodjek/puppet-lint/issues/2)
|
646
|
+
|
647
|
+
## [0.0.2](https://github.com/rodjek/puppet-lint/tree/0.0.2) (2011-08-17)
|
648
|
+
[Full Changelog](https://github.com/rodjek/puppet-lint/compare/0.0.1...0.0.2)
|
649
|
+
|
650
|
+
**Merged pull requests:**
|
651
|
+
|
652
|
+
- Here, have some Rake support [\#1](https://github.com/rodjek/puppet-lint/pull/1) ([builddoctor](https://github.com/builddoctor))
|
653
|
+
|
654
|
+
## [0.0.1](https://github.com/rodjek/puppet-lint/tree/0.0.1) (2011-08-15)
|
655
|
+
|
656
|
+
|
657
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|