Skip to content

Commit

Permalink
Bump up version to v0.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed May 22, 2023
1 parent 5b6795a commit e5d1ad1
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```
Expand Down
2 changes: 1 addition & 1 deletion integration/cty-based-eval/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion integration/map-attribute/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion integration/rule-config/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e5d1ad1

Please sign in to comment.