Skip to content

Commit bd64fbf

Browse files
committed
Bump up version to 0.24.0
1 parent 6db68fa commit bd64fbf

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Example:
2727
2828
```console
2929
$ tflint -v
30-
TFLint version 0.23.1
31-
+ ruleset.aws (0.1.2-bundled)
30+
TFLint version 0.24.0
31+
+ ruleset.aws (0.2.0-bundled)
3232
$ terraform -v
33-
Terraform v0.14.3
33+
Terraform v0.14.5
3434
```
3535
-->

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.24.0 (2021-01-31)
2+
3+
This release fixes some bugs about the plugin system. For this update, the plugin must be built with tflint-plugin-sdk v0.8.0 to work with TFLint v0.24.0. For details, please see the CHANGELOG of tflint-plugin-sdk.
4+
5+
### Breaking Changes
6+
7+
- [#1052](https://github.com/terraform-linters/tflint/pull/1052): Bump tflint-plugin-sdk and bundled plugins ([@wata727](https://github.com/wata727))
8+
- This change breaks plugin API backward compatibility. In order for plugins to work against v0.24.0, you need to build with tflint-plugin-sdk v0.8.0.
9+
10+
### Changes
11+
12+
- [#1043](https://github.com/terraform-linters/tflint/pull/1043): Call ApplyConfig before ValidateRules ([@richardTowers](https://github.com/richardTowers))
13+
14+
### BugFixes
15+
16+
- [#1040](https://github.com/terraform-linters/tflint/pull/1040): Fix panic on empty backend in Config() ([@syndicut](https://github.com/syndicut))
17+
- [#1041](https://github.com/terraform-linters/tflint/pull/1041): Fix gob encoder error on unknown value ([@syndicut](https://github.com/syndicut))
18+
19+
### Chores
20+
21+
- [#1034](https://github.com/terraform-linters/tflint/pull/1034): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.8.1 to 2.8.2
22+
- [#1035](https://github.com/terraform-linters/tflint/pull/1035) [#1044](https://github.com/terraform-linters/tflint/pull/1044): build(deps): Bump github.com/hashicorp/terraform from 0.14.3 to 0.14.5
23+
- [#1046](https://github.com/terraform-linters/tflint/pull/1046): go: cache builds ([@bendrucker](https://github.com/bendrucker))
24+
- [#1047](https://github.com/terraform-linters/tflint/pull/1047): add module/build caching to e2e + gen ([@bendrucker](https://github.com/bendrucker))
25+
126
## 0.23.1 (2021-01-11)
227

328
### BugFixes

docs/user-guide/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Compatibility with Terraform
22

3-
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.3.
3+
Since TFLint embeds a specific version of Terraform as a library, some features implicitly assume the behavior of Terraform v0.14.5.
44

55
Of course, TFLint may work correctly if you run it on other versions. But, false positives/negatives can occur based on this assumption.
66

tflint/meta.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package tflint
33
import "fmt"
44

55
// Version is application version
6-
const Version string = "0.23.1"
6+
const Version string = "0.24.0"
77

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

0 commit comments

Comments
 (0)