Skip to content

Commit

Permalink
Bump up version to v0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Dec 8, 2024
1 parent f970307 commit 158193b
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.36.0 (2024-12-08)

### Breaking Changes

- [#759](https://github.com/terraform-linters/tflint-ruleset-aws/pull/759): glue: disable connection type and properties checks ([@bendrucker](https://github.com/bendrucker))
- Removed `aws_glue_connection_invalid_connection_type` rule

### Enhancements

- [#758](https://github.com/terraform-linters/tflint-ruleset-aws/pull/758) [#768](https://github.com/terraform-linters/tflint-ruleset-aws/pull/768) [#779](https://github.com/terraform-linters/tflint-ruleset-aws/pull/779) [#780](https://github.com/terraform-linters/tflint-ruleset-aws/pull/780): Update AWS provider/module and generated content

### Chores

- [#755](https://github.com/terraform-linters/tflint-ruleset-aws/pull/755): Bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0
- [#765](https://github.com/terraform-linters/tflint-ruleset-aws/pull/765): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0
- [#769](https://github.com/terraform-linters/tflint-ruleset-aws/pull/769): Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.187.1 to 1.194.0
- [#777](https://github.com/terraform-linters/tflint-ruleset-aws/pull/777): Bump the aws-sdk group with 7 updates
- [#778](https://github.com/terraform-linters/tflint-ruleset-aws/pull/778): Bump github.com/zclconf/go-cty from 1.15.0 to 1.15.1
- [#781](https://github.com/terraform-linters/tflint-ruleset-aws/pull/781): Enable Dependabot auto-merge ([@wata727](https://github.com/wata727))
- [#782](https://github.com/terraform-linters/tflint-ruleset-aws/pull/782): Bump golang.org/x/net from 0.31.0 to 0.32.0
- [#783](https://github.com/terraform-linters/tflint-ruleset-aws/pull/783): Squash auto-merge Dependabot PRs ([@wata727](https://github.com/wata727))
- [#784](https://github.com/terraform-linters/tflint-ruleset-aws/pull/784): Bump actions/attest-build-provenance from 1 to 2

## 0.35.0 (2024-11-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.35.0"
version = "0.36.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.35.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.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.35.0/docs/rules/aws_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.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.35.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.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.35.0/docs/rules/aws_s3_bucket_name.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.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.35.0"
const Version string = "0.36.0"

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

0 comments on commit 158193b

Please sign in to comment.