Skip to content

Commit 6d9a862

Browse files
committed
Bump up version to v0.17.0
1 parent 2b51ea9 commit 6d9a862

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.17.0 (2022-09-08)
2+
3+
The minimum supported version of TFLint has changed in this version. TFLint v0.40.0+ is required for this plugin to work.
4+
5+
### Breaking Changes
6+
7+
- [#369](https://github.com/terraform-linters/tflint-ruleset-aws/pull/369): Bump tflint-plugin-sdk to v0.12.0 ([@wata727](https://github.com/wata727))
8+
9+
### Enhancements
10+
11+
- [#366](https://github.com/terraform-linters/tflint-ruleset-aws/pull/366): autogenerated maintenance
12+
13+
### Chores
14+
15+
- [#365](https://github.com/terraform-linters/tflint-ruleset-aws/pull/365): Bump github.com/zclconf/go-cty from 1.10.0 to 1.11.0
16+
- [#368](https://github.com/terraform-linters/tflint-ruleset-aws/pull/368): Bump github.com/hashicorp/hcl/v2 from 2.13.0 to 2.14.0
17+
- [#371](https://github.com/terraform-linters/tflint-ruleset-aws/pull/371): build: Improve Go workflows ([@wata727](https://github.com/wata727))
18+
119
## 0.16.1 (2022-08-27)
220

321
### Enhancements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This ruleset focus on possible errors and best practices about AWS resources. Ma
99

1010
## Requirements
1111

12-
- TFLint v0.35+
12+
- TFLint v0.40+
1313
- Go v1.19
1414

1515
## Installation
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "aws" {
2121
enabled = true
22-
version = "0.16.1"
22+
version = "0.17.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/map-attribute/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/rule-config/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_s3_bucket_name",
66
"severity": "warning",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.16.1/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_s3_bucket_name.md"
88
},
99
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
1010
"range": {

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.16.1"
6+
const Version string = "0.17.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)