Skip to content

Commit

Permalink
Bump up version to v0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Sep 9, 2024
1 parent 489301a commit 5ee0f7e
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.33.0 (2024-09-10)

### Enhancements

- [#650](https://github.com/terraform-linters/tflint-ruleset-aws/pull/650) [#651](https://github.com/terraform-linters/tflint-ruleset-aws/pull/651) [#653](https://github.com/terraform-linters/tflint-ruleset-aws/pull/653) [#655](https://github.com/terraform-linters/tflint-ruleset-aws/pull/655) [#656](https://github.com/terraform-linters/tflint-ruleset-aws/pull/656) [#658](https://github.com/terraform-linters/tflint-ruleset-aws/pull/658) [#659](https://github.com/terraform-linters/tflint-ruleset-aws/pull/659) [#660](https://github.com/terraform-linters/tflint-ruleset-aws/pull/660): Update AWS provider/module and generated content

### Chores

- [#652](https://github.com/terraform-linters/tflint-ruleset-aws/pull/652): Fix HSMv2 type tests ([@wata727](https://github.com/wata727))
- [#654](https://github.com/terraform-linters/tflint-ruleset-aws/pull/654) [#668](https://github.com/terraform-linters/tflint-ruleset-aws/pull/668): Bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.22.0
- [#657](https://github.com/terraform-linters/tflint-ruleset-aws/pull/657) [#670](https://github.com/terraform-linters/tflint-ruleset-aws/pull/670): Bump golang.org/x/net from 0.26.0 to 0.29.0
- [#665](https://github.com/terraform-linters/tflint-ruleset-aws/pull/665): mappings: Migrate import paths from aws-sdk-go to aws-sdk-ruby ([@wata727](https://github.com/wata727))
- [#663](https://github.com/terraform-linters/tflint-ruleset-aws/pull/663): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.20.0 to 0.21.0
- [#667](https://github.com/terraform-linters/tflint-ruleset-aws/pull/667): Migrate aws-sdk-go to v2 ([@wata727](https://github.com/wata727))
- [#671](https://github.com/terraform-linters/tflint-ruleset-aws/pull/671): Bump peter-evans/create-pull-request from 6 to 7
- [#672](https://github.com/terraform-linters/tflint-ruleset-aws/pull/672): deps: Go 1.23.1

## 0.32.0 (2024-06-08)

### 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.32.0"
version = "0.33.0"
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.32.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.33.0/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.32.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.33.0/docs/rules/aws_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
"range": {
Expand Down
4 changes: 2 additions & 2 deletions 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": "error",
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.33.0/docs/rules/aws_s3_bucket_name.md"
},
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
"range": {
Expand All @@ -24,7 +24,7 @@
"rule": {
"name": "aws_s3_bucket_name",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.32.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.33.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": {
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.32.0"
const Version string = "0.33.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 5ee0f7e

Please sign in to comment.