Skip to content

Commit

Permalink
Bump up version to v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Nov 18, 2023
1 parent b58242c commit 25176aa
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 0.28.0 (2023-11-18)

### Breaking Changes

- [#576](https://github.com/terraform-linters/tflint-ruleset-aws/pull/576): Fix aws_acm_certificate.private_key mapping and remove the rule ([@wata727](https://github.com/wata727))
- Removed `aws_acm_certificate_invalid_private_key` rule

### Enhancements

- [#554](https://github.com/terraform-linters/tflint-ruleset-aws/pull/554): s3_bucket_name: add length validation ([@davimmt](https://github.com/davimmt))
- [#566](https://github.com/terraform-linters/tflint-ruleset-aws/pull/566) [#567](https://github.com/terraform-linters/tflint-ruleset-aws/pull/567) [#568](https://github.com/terraform-linters/tflint-ruleset-aws/pull/568) [#575](https://github.com/terraform-linters/tflint-ruleset-aws/pull/575): Update AWS provider/module and generated content
- [#571](https://github.com/terraform-linters/tflint-ruleset-aws/pull/571): s3_bucket_name: add all documented naming rules ([@davimmt](https://github.com/davimmt))

### Chores

- [#550](https://github.com/terraform-linters/tflint-ruleset-aws/pull/550): Bump goreleaser/goreleaser-action from 4 to 5
- [#555](https://github.com/terraform-linters/tflint-ruleset-aws/pull/555) [#558](https://github.com/terraform-linters/tflint-ruleset-aws/pull/558) [#572](https://github.com/terraform-linters/tflint-ruleset-aws/pull/572): Bump golang.org/x/net from 0.15.0 to 0.18.0
- [#556](https://github.com/terraform-linters/tflint-ruleset-aws/pull/556): Bump github.com/zclconf/go-cty from 1.14.0 to 1.14.1
- [#559](https://github.com/terraform-linters/tflint-ruleset-aws/pull/559): Bump github.com/dave/dst from 0.27.2 to 0.27.3
- [#560](https://github.com/terraform-linters/tflint-ruleset-aws/pull/560): Bump github.com/google/go-cmp from 0.5.9 to 0.6.0
- [#561](https://github.com/terraform-linters/tflint-ruleset-aws/pull/561): Bump github.com/hashicorp/hcl/v2 from 2.18.0 to 2.19.1
- [#565](https://github.com/terraform-linters/tflint-ruleset-aws/pull/565): Bump google.golang.org/grpc from 1.57.0 to 1.57.1

## 0.27.0 (2023-09-17)

### 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.27.0"
version = "0.28.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.27.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.28.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.27.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.28.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.27.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.28.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.27.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.28.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.27.0"
const Version string = "0.28.0"

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

0 comments on commit 25176aa

Please sign in to comment.