Skip to content

Commit

Permalink
Bump up version to v0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Sep 28, 2022
1 parent 63555be commit cbb9cd8
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 0.17.1 (2022-09-29)

### Enhancements

- [#373](https://github.com/terraform-linters/tflint-ruleset-aws/pull/373): autogenerated maintenance
- [#380](https://github.com/terraform-linters/tflint-ruleset-aws/pull/380): Update db instance type list with m6i and r6i ([@milestruecar](https://github.com/milestruecar))

### Chores

- [#374](https://github.com/terraform-linters/tflint-ruleset-aws/pull/374): Bump github.com/google/go-cmp from 0.5.8 to 0.5.9
- [#377](https://github.com/terraform-linters/tflint-ruleset-aws/pull/377): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.12.0 to 0.13.0
- [#378](https://github.com/terraform-linters/tflint-ruleset-aws/pull/378): Bump github.com/hashicorp/hcl/v2 from 2.14.0 to 2.14.1

## 0.17.0 (2022-09-08)

The minimum supported version of TFLint has changed in this version. TFLint v0.40.0+ is required for this plugin to work.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
```hcl
plugin "aws" {
enabled = true
version = "0.17.0"
version = "0.17.1"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
```
Expand Down
2 changes: 1 addition & 1 deletion integration/cty-based-eval/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "aws_resource_missing_tags",
"severity": "info",
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.1/docs/rules/aws_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
"range": {
Expand Down
2 changes: 1 addition & 1 deletion integration/map-attribute/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "aws_resource_missing_tags",
"severity": "info",
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.1/docs/rules/aws_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
"range": {
Expand Down
2 changes: 1 addition & 1 deletion integration/rule-config/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "aws_s3_bucket_name",
"severity": "warning",
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.17.1/docs/rules/aws_s3_bucket_name.md"
},
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
"range": {
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is ruleset version
const Version string = "0.17.0"
const Version string = "0.17.1"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit cbb9cd8

Please sign in to comment.