diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c8b28bfe..8461ab6bef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,17 @@ - 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. - More Warnings around hard coded values (Regions, AccountIds) to help with the practice of reusability +### 0.3.1 +###### Features +- Update rule E3020 to validate A recordsets +###### Fixes +- Require "aws-sam-translator" dependency be at least 1.6.0 +- Add support for wildcards in rule E3013 +- Support conditions in Lists for rule E3002 +- Include filename when we run into Null and Duplicate values when parsing yaml +- Rule W2510 now allows for AllowedValues instead of just Min/MaxValue for compliance of Lambda MemorySize +- Rule E2530 updated to checked AllowedValues for compliance of Lambda MemorySize + ### 0.3.0 ###### Features - Serverless Transforms now handled by SAM libraries diff --git a/src/cfnlint/version.py b/src/cfnlint/version.py index 7af205d685..9c84686bb3 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -15,4 +15,4 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '0.3.0' +__version__ = '0.3.1'