Skip to content

Commit 158193b

Browse files
committed
Bump up version to v0.36.0
1 parent f970307 commit 158193b

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.36.0 (2024-12-08)
2+
3+
### Breaking Changes
4+
5+
- [#759](https://github.com/terraform-linters/tflint-ruleset-aws/pull/759): glue: disable connection type and properties checks ([@bendrucker](https://github.com/bendrucker))
6+
- Removed `aws_glue_connection_invalid_connection_type` rule
7+
8+
### Enhancements
9+
10+
- [#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
11+
12+
### Chores
13+
14+
- [#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
15+
- [#765](https://github.com/terraform-linters/tflint-ruleset-aws/pull/765): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0
16+
- [#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
17+
- [#777](https://github.com/terraform-linters/tflint-ruleset-aws/pull/777): Bump the aws-sdk group with 7 updates
18+
- [#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
19+
- [#781](https://github.com/terraform-linters/tflint-ruleset-aws/pull/781): Enable Dependabot auto-merge ([@wata727](https://github.com/wata727))
20+
- [#782](https://github.com/terraform-linters/tflint-ruleset-aws/pull/782): Bump golang.org/x/net from 0.31.0 to 0.32.0
21+
- [#783](https://github.com/terraform-linters/tflint-ruleset-aws/pull/783): Squash auto-merge Dependabot PRs ([@wata727](https://github.com/wata727))
22+
- [#784](https://github.com/terraform-linters/tflint-ruleset-aws/pull/784): Bump actions/attest-build-provenance from 1 to 2
23+
124
## 0.35.0 (2024-11-17)
225

326
### Enhancements

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "aws" {
2121
enabled = true
22-
version = "0.35.0"
22+
version = "0.36.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.35.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/map-attribute/result.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.35.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.0/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/rule-config/result.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_s3_bucket_name",
66
"severity": "error",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.35.0/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.0/docs/rules/aws_s3_bucket_name.md"
88
},
99
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
1010
"range": {
@@ -24,7 +24,7 @@
2424
"rule": {
2525
"name": "aws_s3_bucket_name",
2626
"severity": "error",
27-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.35.0/docs/rules/aws_s3_bucket_name.md"
27+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.36.0/docs/rules/aws_s3_bucket_name.md"
2828
},
2929
"message": "Bucket names can consist only of lowercase letters, numbers, dots (.), and hyphens (-). (name: \"foo_bar\", regex: \"[^a-z0-9\\\\.\\\\-]\")",
3030
"range": {

project/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.35.0"
6+
const Version string = "0.36.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)