Skip to content

Commit 0518b68

Browse files
committed
Bump up version to v0.34.0
1 parent c33f679 commit 0518b68

File tree

6 files changed

+42
-6
lines changed

6 files changed

+42
-6
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## 0.34.0 (2024-10-15)
2+
3+
### Breaking Changes
4+
5+
- [#719](https://github.com/terraform-linters/tflint-ruleset-aws/pull/719): Remove worklink rules ([@wata727](https://github.com/wata727))
6+
- The following rules are removed
7+
- `aws_worklink_fleet_invalid_audit_stream_arn`
8+
- `aws_worklink_fleet_invalid_device_ca_certificate`
9+
- `aws_worklink_fleet_invalid_display_name`
10+
- `aws_worklink_fleet_invalid_name`
11+
- `aws_worklink_website_certificate_authority_association_invalid_certificate`
12+
- `aws_worklink_website_certificate_authority_association_invalid_display_name`
13+
- `aws_worklink_website_certificate_authority_association_invalid_fleet_arn`
14+
15+
### Enhancements
16+
17+
- [#720](https://github.com/terraform-linters/tflint-ruleset-aws/pull/720): Update AWS provider/module and generated content
18+
19+
### Bug Fixes
20+
21+
- [#721](https://github.com/terraform-linters/tflint-ruleset-aws/pull/721): Fix incorrect mapping about aws_servicecatalog_portfolio_share type ([@wata727](https://github.com/wata727))
22+
23+
### Chores
24+
25+
- [#692](https://github.com/terraform-linters/tflint-ruleset-aws/pull/692) [#712](https://github.com/terraform-linters/tflint-ruleset-aws/pull/712): Bump github.com/aws/aws-sdk-go-v2/service/ecs from 1.44.3 to 1.47.3
26+
- [#693](https://github.com/terraform-linters/tflint-ruleset-aws/pull/693): Bump github.com/hashicorp/aws-sdk-go-base/v2 from 2.0.0-beta.54 to 2.0.0-beta.58
27+
- [#694](https://github.com/terraform-linters/tflint-ruleset-aws/pull/694) [#717](https://github.com/terraform-linters/tflint-ruleset-aws/pull/717): Bump github.com/aws/aws-sdk-go-v2/service/iam from 1.34.3 to 1.37.2
28+
- [#695](https://github.com/terraform-linters/tflint-ruleset-aws/pull/695) [#714](https://github.com/terraform-linters/tflint-ruleset-aws/pull/714): Bump github.com/aws/aws-sdk-go-v2/service/rds from 1.82.0 to 1.87.2
29+
- [#696](https://github.com/terraform-linters/tflint-ruleset-aws/pull/696) [#715](https://github.com/terraform-linters/tflint-ruleset-aws/pull/715): Bump github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing from 1.26.3 to 1.28.2
30+
- [#697](https://github.com/terraform-linters/tflint-ruleset-aws/pull/697) [#713](https://github.com/terraform-linters/tflint-ruleset-aws/pull/713): Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.173.0 to 1.182.0
31+
- [#698](https://github.com/terraform-linters/tflint-ruleset-aws/pull/698) [#718](https://github.com/terraform-linters/tflint-ruleset-aws/pull/718): Bump github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 from 1.34.0 to 1.40.0
32+
- [#699](https://github.com/terraform-linters/tflint-ruleset-aws/pull/699) [#716](https://github.com/terraform-linters/tflint-ruleset-aws/pull/716): Bump github.com/aws/aws-sdk-go-v2/service/elasticache from 1.40.5 to 1.43.0
33+
- [#702](https://github.com/terraform-linters/tflint-ruleset-aws/pull/702): Bump golang.org/x/net from 0.29.0 to 0.30.0
34+
- [#722](https://github.com/terraform-linters/tflint-ruleset-aws/pull/722): Bump GoReleaser to v2 ([@wata727](https://github.com/wata727))
35+
- [#723](https://github.com/terraform-linters/tflint-ruleset-aws/pull/723): Remove patch version pin from go.mod ([@wata727](https://github.com/wata727))
36+
137
## 0.33.0 (2024-09-10)
238

339
### Enhancements

README.md

Lines changed: 1 addition & 1 deletion
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.33.0"
22+
version = "0.34.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

Lines changed: 1 addition & 1 deletion
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.33.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.34.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

Lines changed: 1 addition & 1 deletion
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.33.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.34.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

Lines changed: 2 additions & 2 deletions
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.33.0/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.34.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.33.0/docs/rules/aws_s3_bucket_name.md"
27+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.34.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

Lines changed: 1 addition & 1 deletion
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.33.0"
6+
const Version string = "0.34.0"
77

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

0 commit comments

Comments
 (0)