From 300933d9ead77d91b6ed8e07002a83253ed5fb81 Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Sat, 8 Jun 2024 09:36:40 +0000 Subject: [PATCH] Bump up version to v0.32.0 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- integration/cty-based-eval/result.json | 2 +- integration/map-attribute/result.json | 2 +- integration/rule-config/result.json | 4 ++-- project/main.go | 2 +- 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca78952f..4663677c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.32.0 (2024-06-08) + +### Enhancements + +- [#633](https://github.com/terraform-linters/tflint-ruleset-aws/pull/633): New rule: aws_provider_missing_tags ([@bootswithdefer](https://github.com/bootswithdefer)) +- [#637](https://github.com/terraform-linters/tflint-ruleset-aws/pull/637): Update AWS provider/module and generated content + +### Chores + +- [#638](https://github.com/terraform-linters/tflint-ruleset-aws/pull/638): release: Introduce Artifact Attestations ([@wata727](https://github.com/wata727)) +- [#642](https://github.com/terraform-linters/tflint-ruleset-aws/pull/642) [#645](https://github.com/terraform-linters/tflint-ruleset-aws/pull/645): Bump golang.org/x/net from 0.24.0 to 0.26.0 +- [#643](https://github.com/terraform-linters/tflint-ruleset-aws/pull/643): Bump github.com/hashicorp/terraform-json from 0.21.0 to 0.22.1 +- [#646](https://github.com/terraform-linters/tflint-ruleset-aws/pull/646): Bump goreleaser/goreleaser-action from 5 to 6 +- [#647](https://github.com/terraform-linters/tflint-ruleset-aws/pull/647): deps: Go 1.22.4 ([@wata727](https://github.com/wata727)) + ## 0.31.0 (2024-05-03) ### Enhancements diff --git a/README.md b/README.md index 0f886320..1c66a899 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.31.0" + version = "0.32.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 fa8e203c..96de2ef6 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.31.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.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 5da45f75..912f0cee 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.31.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.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 e8c0b1c7..488694c1 100644 --- a/integration/rule-config/result.json +++ b/integration/rule-config/result.json @@ -4,7 +4,7 @@ "rule": { "name": "aws_s3_bucket_name", "severity": "error", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.31.0/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.0/docs/rules/aws_s3_bucket_name.md" }, "message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"", "range": { @@ -24,7 +24,7 @@ "rule": { "name": "aws_s3_bucket_name", "severity": "error", - "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.31.0/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.0/docs/rules/aws_s3_bucket_name.md" }, "message": "Bucket names can consist only of lowercase letters, numbers, dots (.), and hyphens (-). (name: \"foo_bar\", regex: \"[^a-z0-9\\\\.\\\\-]\")", "range": { diff --git a/project/main.go b/project/main.go index e0743464..7eeb7553 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.31.0" +const Version string = "0.32.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {