File tree 3 files changed +20
-8
lines changed
3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 9
9
- Test Ref resources to IAM Roles have good assume role documents. Example: Lambda Function Ref refers to an IAM Role that can be assume by Lambda.
10
10
- More Warnings around hard coded values (Regions, AccountIds) to help with the practice of reusability
11
11
12
+ ### 0.2.1
13
+ ###### Features
14
+ - Added AllowedValues for Cidr parameter checking Rule W2509
15
+ - Add Rule E2004 to check Allowed values for Cidr parameters are a valid Cidr range
16
+ - Disable mapping Name checks W7001 if dynamic mapping names are used (Ref, FindInMap)
17
+ - New Rule E1026 to make sure Ref's in 'Conditions' are to parameters and not resources
18
+ - Updated CloudFormation specs to June 5th, 2018
19
+ ###### Fixes
20
+ - Fixed an issue with Rule E1019 not giving errors when there was a bad pseudo parameter
21
+ - Fixed an issue where conditions with Refs were validated as strings instead of Refs
22
+ - Fix crash errors when an empty yaml file is provided
23
+ - Updated condition functions to return the full object (Ref isn't translated while looking for AWS::NoValue)
24
+ - Support Map Type properties when doing PrimitiveType check E3012
25
+ - Fix an issue when boolean values not being checked when using check_value
26
+
12
27
### 0.2.0
13
28
###### Features
14
29
- Standard cfn-lint Errors (E0000) for null, duplicate, and parse errors
Original file line number Diff line number Diff line change 25
25
sys .path .insert (0 , os .path .abspath ('src' ))
26
26
exec (open ('src/cfnlint/version.py' ).read ())
27
27
28
-
29
- try :
30
- import pypandoc
31
- long_description = pypandoc .convert ('README.md' , 'rst' )
32
- except (IOError , ImportError ):
33
- long_description = ''
28
+ with open ('README.md' ) as f :
29
+ readme = f .read ()
34
30
35
31
setup (
36
32
name = 'cfn-lint' ,
37
33
version = __version__ ,
38
34
description = ('checks cloudformation for practices and behaviour \
39
35
that could potentially be improved' ),
40
- long_description = long_description ,
36
+ long_description = readme ,
37
+ long_description_content_type = "text/markdown" ,
41
38
keywords = 'aws, lint' ,
42
39
author = 'kddejong' ,
43
40
Original file line number Diff line number Diff line change 15
15
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16
16
"""
17
17
18
- __version__ = '0.2.0 '
18
+ __version__ = '0.2.1 '
You can’t perform that action at this time.
0 commit comments