Skip to content

Commit

Permalink
Bump up version to v0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jan 8, 2024
1 parent d8e419b commit 7e6472f
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.29.0 (2024-01-08)

### Enhancements

- [#580](https://github.com/terraform-linters/tflint-ruleset-aws/pull/580) [#581](https://github.com/terraform-linters/tflint-ruleset-aws/pull/581) [#582](https://github.com/terraform-linters/tflint-ruleset-aws/pull/582) [#583](https://github.com/terraform-linters/tflint-ruleset-aws/pull/583) [#585](https://github.com/terraform-linters/tflint-ruleset-aws/pull/585) [#586](https://github.com/terraform-linters/tflint-ruleset-aws/pull/586) [#587](https://github.com/terraform-linters/tflint-ruleset-aws/pull/587): Update AWS provider/module and generated content
- [#591](https://github.com/terraform-linters/tflint-ruleset-aws/pull/591): rds: add db.m6idn instance family ([@GeorgeSimpsonAtFanatics](https://github.com/GeorgeSimpsonAtFanatics))
- [#592](https://github.com/terraform-linters/tflint-ruleset-aws/pull/592): rds: Add m6in, r6idn, r6in instance classes ([@wata727](https://github.com/wata727))
- [#593](https://github.com/terraform-linters/tflint-ruleset-aws/pull/593): cache: Add cache.c7gn node types ([@wata727](https://github.com/wata727))
- [#594](https://github.com/terraform-linters/tflint-ruleset-aws/pull/594): Update Lambda deprecated runtimes ([@wata727](https://github.com/wata727))

### Chore

- [#584](https://github.com/terraform-linters/tflint-ruleset-aws/pull/584): Bump golang.org/x/net from 0.18.0 to 0.19.0
- [#588](https://github.com/terraform-linters/tflint-ruleset-aws/pull/588): Bump actions/setup-go from 4 to 5
- [#589](https://github.com/terraform-linters/tflint-ruleset-aws/pull/589): generator: use terraform-json types for provider schemas ([@HadrienPatte](https://github.com/HadrienPatte))

## 0.28.0 (2023-11-18)

### Breaking Changes
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.28.0"
version = "0.29.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.28.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.29.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.28.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.29.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.28.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.29.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.28.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.29.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.28.0"
const Version string = "0.29.0"

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

0 comments on commit 7e6472f

Please sign in to comment.