Skip to content

Commit 31233ac

Browse files
committed
Bump up version to v0.13.0
1 parent 18b19a5 commit 31233ac

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.13.0 (2022-03-27)
2+
3+
The minimum supported version of TFLint has changed in this version. TFLint v0.35.0+ is required for this plugin to work.
4+
5+
### Breaking Changes
6+
7+
- [#274](https://github.com/terraform-linters/tflint-ruleset-aws/pull/274): Bump tflint-plugin-sdk for gRPC-based new plugin system ([@wata727](https://github.com/wata727))
8+
- [#310](https://github.com/terraform-linters/tflint-ruleset-aws/pull/310): aws_spot_instance_request.instance_interruption_behaviour renamed ([@PatMyron](https://github.com/PatMyron))
9+
- [#317](https://github.com/terraform-linters/tflint-ruleset-aws/pull/317) [#318](https://github.com/terraform-linters/tflint-ruleset-aws/pull/318): Update aws-sdk-go and AWS provider rules ([@wata727](https://github.com/wata727))
10+
- Removed `aws_amplify_domain_association_invalid_domain_name` rule.
11+
12+
### Enhancements
13+
14+
- [#309](https://github.com/terraform-linters/tflint-ruleset-aws/pull/309): refactor previous generation instance type rules ([@PatMyron](https://github.com/PatMyron))
15+
- [#315](https://github.com/terraform-linters/tflint-ruleset-aws/pull/315): rules: Add new `aws_elastic_beanstalk_environment_invalid_name_format` rule ([@samhpickering](https://github.com/samhpickering))
16+
17+
### Chores
18+
19+
- [#312](https://github.com/terraform-linters/tflint-ruleset-aws/pull/312): Bump actions/checkout from 2 to 3
20+
- [#313](https://github.com/terraform-linters/tflint-ruleset-aws/pull/313): Bump github.com/hashicorp/aws-sdk-go-base from 1.0.0 to 1.1.0
21+
- [#314](https://github.com/terraform-linters/tflint-ruleset-aws/pull/314): go 1.18 ([@PatMyron](https://github.com/PatMyron))
22+
- [#319](https://github.com/terraform-linters/tflint-ruleset-aws/pull/319): Bump GoReleaser version ([@wata727](https://github.com/wata727))
23+
124
## 0.12.0 (2022-01-28)
225

326
### Enhancements

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This ruleset focus on possible errors and best practices about AWS resources. Ma
99

1010
## Requirements
1111

12-
- TFLint v0.30+
12+
- TFLint v0.35+
1313
- Go v1.18
1414

1515
## Installation
@@ -19,15 +19,13 @@ 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.12.0"
22+
version = "0.13.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```
2626

2727
For more configuration about the plugin, see [Plugin Configuration](docs/configuration.md).
2828

29-
**NOTE:** This plugin is bundled with the TFLint binary for backward compatibility, so you can use it without installing it separately. And it is automatically enabled when your Terraform configuration requires AWS provider.
30-
3129
## Getting Started
3230

3331
Terraform is a great tool for Infrastructure as Code. However, many of these tools don't validate provider-specific issues. For example, see the following configuration file:

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.12.0"
6+
const Version string = "0.13.0"
77

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

0 commit comments

Comments
 (0)