Skip to content

Commit 81d729b

Browse files
committed
Bump up version to v0.23.0
1 parent 18ba742 commit 81d729b

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.23.0 (2023-04-22)
2+
3+
### Enhancements
4+
5+
- [#471](https://github.com/terraform-linters/tflint-ruleset-aws/pull/471) [#480](https://github.com/terraform-linters/tflint-ruleset-aws/pull/480): Update AWS provider/module and generated content
6+
7+
### Chores
8+
9+
- [#436](https://github.com/terraform-linters/tflint-ruleset-aws/pull/436): Use NewRunner hook ([@wata727](https://github.com/wata727))
10+
- [#468](https://github.com/terraform-linters/tflint-ruleset-aws/pull/468): Bump actions/setup-go from 3 to 4
11+
- [#469](https://github.com/terraform-linters/tflint-ruleset-aws/pull/469): Bump github.com/zclconf/go-cty from 1.13.0 to 1.13.1
12+
- [#473](https://github.com/terraform-linters/tflint-ruleset-aws/pull/473): Bump peter-evans/create-pull-request from 4 to 5
13+
- [#475](https://github.com/terraform-linters/tflint-ruleset-aws/pull/475): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.15.0 to 0.16.1
14+
- [#477](https://github.com/terraform-linters/tflint-ruleset-aws/pull/477): docs: copy edits for deep check ([@bendrucker](https://github.com/bendrucker))
15+
- [#481](https://github.com/terraform-linters/tflint-ruleset-aws/pull/481): Follow up of the EnsureNoError deprecation ([@wata727](https://github.com/wata727))
16+
117
## 0.22.1 (2023-03-18)
218

319
- [#465](https://github.com/terraform-linters/tflint-ruleset-aws/pull/465): Fix Cosign v2 signing ([@wata727](https://github.com/wata727))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "aws" {
2121
enabled = true
22-
version = "0.22.1"
22+
version = "0.23.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.22.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/map-attribute/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.22.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/rule-config/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_s3_bucket_name",
66
"severity": "warning",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.22.1/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.23.0/docs/rules/aws_s3_bucket_name.md"
88
},
99
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
1010
"range": {

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.22.1"
6+
const Version string = "0.23.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)