From e5d1ad19112211cf7b0c51ec5ff60c679195941d Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Mon, 22 May 2023 14:39:47 +0000 Subject: [PATCH] Bump up version to v0.23.1 --- CHANGELOG.md | 11 +++++++++++ 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, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f79b349..97198f59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.23.1 (2023-05-22) + +### Enhancements + +- [#484](https://github.com/terraform-linters/tflint-ruleset-aws/pull/484): `aws_route_not_specified_target`: Add core_network_arn as target ([@ttretau](https://github.com/ttretau)) +- [#485](https://github.com/terraform-linters/tflint-ruleset-aws/pull/485) [#487](https://github.com/terraform-linters/tflint-ruleset-aws/pull/487) [#490](https://github.com/terraform-linters/tflint-ruleset-aws/pull/490) [#495](https://github.com/terraform-linters/tflint-ruleset-aws/pull/495): Update AWS provider/module and generated content + +### Chores + +- [#493](https://github.com/terraform-linters/tflint-ruleset-aws/pull/493): Bump golang.org/x/net from 0.9.0 to 0.10.0 + ## 0.23.0 (2023-04-22) ### Enhancements diff --git a/README.md b/README.md index 19b9e996..7bdf6916 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.23.0" + version = "0.23.1" 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 6369438b..324b88d2 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.23.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.1/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 7f47e8da..bf533d14 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.23.0/docs/rules/aws_resource_missing_tags.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.1/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 66264c90..47bca1fe 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.23.0/docs/rules/aws_s3_bucket_name.md" + "link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.1/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 6490cdf7..1e9fb4c1 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.23.0" +const Version string = "0.23.1" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {