From 06ab7f6955c8992f2d5fb523134c93d08785f1c8 Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Sat, 22 Jul 2023 13:41:08 +0000 Subject: [PATCH] Bump up version to v0.24.3 --- CHANGELOG.md | 5 +++++ README.md | 2 +- integration/cty-based-eval/result.json | 2 +- integration/map-attribute/result.json | 2 +- integration/rule-config/result.json | 2 +- project/main.go | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02cc7fa6..94a0ef78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.24.3 (2023-07-22) + +- [#517](https://github.com/terraform-linters/tflint-ruleset-aws/pull/517): resource_missing_tags: rewrite to only consider keys ([@bendrucker](https://github.com/bendrucker)) +- [#519](https://github.com/terraform-linters/tflint-ruleset-aws/pull/519): resource_missing_tags: Ignore non-existent provider aliases ([@wata727](https://github.com/wata727)) + ## 0.24.2 (2023-07-19) ### Enhancements diff --git a/README.md b/README.md index 053b0360..d6cbbb84 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.24.2" + version = "0.24.3" 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 a7da2c5a..d83b9783 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.24.2/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.3/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 eb8486e8..453b7dda 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.24.2/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.3/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 0a5c8239..c3db8873 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.24.2/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.3/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 52d877aa..09cd5e58 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.24.2" +const Version string = "0.24.3" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {