Skip to content

Commit

Permalink
Release v0.80.0 (aws-cloudformation#2471)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Nov 7, 2022
1 parent 26d0267 commit 71ee021
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### v0.80.0
###### Features
- Reduce storage on disk by reducing regional specs to only have differences from `us-east-1` spec (pull #[2457](https://github.com/aws-cloudformation/cfn-lint/pull/2457))
###### CloudFormation Specifications
- Update CloudFormation specs to `96.0.0` (pull #[2461](https://github.com/aws-cloudformation/cfn-lint/pull/2461))
###### Fixes
- Fix an issue with junit/pretty formatter/core process to get all rules even on parse failure (pull #[2462](https://github.com/aws-cloudformation/cfn-lint/pull/2462))
- Fix an issue when use stdin to pass a template and cfn-lint with parameters giving `E0000` (pull #[2470](https://github.com/aws-cloudformation/cfn-lint/pull/2470))

### v0.70.1
###### Features
- Add support for Python 3.11 (pull #[2463](https://github.com/aws-cloudformation/cfn-lint/pull/2463))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ If you'd like cfn-lint to be run automatically when making changes to files in y
```yaml
repos:
- repo: https://github.com/aws-cloudformation/cfn-lint
rev: v0.70.1 # The version of cfn-lint to use
rev: v0.80.0 # The version of cfn-lint to use
hooks:
- id: cfn-lint
files: path/to/cfn/dir/.*\.(json|yml|yaml)$
Expand All @@ -334,7 +334,7 @@ If you are using a `.cfnlintrc` and specifying the `templates` or `ignore_templa
```yaml
repos:
- repo: https://github.com/aws-cloudformation/cfn-lint
rev: v0.70.1 # The version of cfn-lint to use
rev: v0.80.0 # The version of cfn-lint to use
hooks:
- id: cfn-lint-rc
```
Expand Down
2 changes: 1 addition & 1 deletion src/cfnlint/decode/cfn_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def load(filename):
content = ''

if not sys.stdin.isatty():
filename = ['-'] if filename is None else filename
filename = '-' if filename is None else filename
if sys.version_info.major <= 3 and sys.version_info.minor <= 9:
for line in fileinput.input(files=filename):
content = content + line
Expand Down
2 changes: 1 addition & 1 deletion src/cfnlint/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPDX-License-Identifier: MIT-0
"""

__version__ = '0.70.1'
__version__ = '0.80.0'

0 comments on commit 71ee021

Please sign in to comment.