diff --git a/CHANGELOG.md b/CHANGELOG.md index f0993517..3e3b6c17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.26.0 (2023-08-14) + +### Breaking Changes + +- [#531](https://github.com/terraform-linters/tflint-ruleset-aws/pull/531): Update AWS provider/module and generated content + - Removed `aws_budgets_budget_invalid_name` rule + +### BugFixes + +- [#530](https://github.com/terraform-linters/tflint-ruleset-aws/pull/530): resource_missing_tags: Fix panic for unknown and null values ([@wata727](https://github.com/wata727)) + +### Chores + +- [#529](https://github.com/terraform-linters/tflint-ruleset-aws/pull/529): Bump golang.org/x/net from 0.12.0 to 0.14.0 + ## 0.25.0 (2023-07-29) ### Enhancements diff --git a/README.md b/README.md index bf9d6ebd..b69162e0 100644 --- a/README.md +++ b/README.md @@ -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.25.0" + version = "0.26.0" source = "github.com/terraform-linters/tflint-ruleset-aws" } ``` diff --git a/integration/cty-based-eval/result.json b/integration/cty-based-eval/result.json index 0e52235d..dccd1c53 100644 --- a/integration/cty-based-eval/result.json +++ b/integration/cty-based-eval/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_resource_missing_tags", "severity": "info", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.25.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.26.0/docs/rules/aws_resource_missing_tags.md" }, "message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".", "range": { diff --git a/integration/map-attribute/result.json b/integration/map-attribute/result.json index a030c28f..d6145ab7 100644 --- a/integration/map-attribute/result.json +++ b/integration/map-attribute/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_resource_missing_tags", "severity": "info", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.25.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.26.0/docs/rules/aws_resource_missing_tags.md" }, "message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".", "range": { diff --git a/integration/rule-config/result.json b/integration/rule-config/result.json index ec32f4fc..08623331 100644 --- a/integration/rule-config/result.json +++ b/integration/rule-config/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_s3_bucket_name", "severity": "warning", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.25.0/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.26.0/docs/rules/aws_s3_bucket_name.md" }, "message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"", "range": { diff --git a/project/main.go b/project/main.go index d4489b9e..2972ebdb 100644 --- a/project/main.go +++ b/project/main.go @@ -3,7 +3,7 @@ package project import "fmt" // Version is ruleset version -const Version string = "0.25.0" +const Version string = "0.26.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {