Skip to content

Commit 91a94f6

Browse files
committed
Bump up version to v0.43.0
1 parent fb0fd9f commit 91a94f6

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ body:
4646
- type: input
4747
attributes:
4848
label: TFLint Version
49-
placeholder: '0.42.2'
49+
placeholder: '0.43.0'
5050
validations:
5151
required: true
5252
- type: input

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.43.0 (2022-11-19)
2+
3+
This release adds support for dynamic blocks, including block expansion and iterator evaluation. Previously, dynamic blocks were always treated as a single block.
4+
5+
Plugin developers should be careful with dynamic blocks after this version. If you set `ExpandModeNone` (or `IncludeNotCreated`), dynamic blocks will not be fully expanded. Instead, dynamic blocks can be retrieved as-is via the `GetModuleContent` API.
6+
7+
### Enhancements
8+
9+
- [#1583](https://github.com/terraform-linters/tflint/pull/1583): Add support for dynamic blocks ([@wata727](https://github.com/wata727))
10+
11+
### BugFixes
12+
13+
- [#1579](https://github.com/terraform-linters/tflint/pull/1579) [#1591](https://github.com/terraform-linters/tflint/pull/1591): build(deps): Bump github.com/zclconf/go-cty from 1.11.1 to 1.12.1
14+
- [#1582](https://github.com/terraform-linters/tflint/pull/1582): terraform: Convert variable types before applying defaults ([@wata727](https://github.com/wata727))
15+
- [#1592](https://github.com/terraform-linters/tflint/pull/1592): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.14.1 to 2.15.0
16+
- [#1598](https://github.com/terraform-linters/tflint/pull/1598): Fix panic when file read fails ([@wata727](https://github.com/wata727))
17+
18+
### Chores
19+
20+
- [#1546](https://github.com/terraform-linters/tflint/pull/1546): Convert bug report issue template to form ([@bendrucker](https://github.com/bendrucker))
21+
- [#1584](https://github.com/terraform-linters/tflint/pull/1584): build(deps): Bump github.com/zclconf/go-cty-yaml from 1.0.2 to 1.0.3
22+
- [#1585](https://github.com/terraform-linters/tflint/pull/1585): Set up a security policy ([@wata727](https://github.com/wata727))
23+
- [#1586](https://github.com/terraform-linters/tflint/pull/1586): Follow up of upstream LICENSE updates ([@wata727](https://github.com/wata727))
24+
- [#1588](https://github.com/terraform-linters/tflint/pull/1588): Add COSIGN_EXPERIMENTAL=1 flag to the verification example ([@wata727](https://github.com/wata727))
25+
- [#1589](https://github.com/terraform-linters/tflint/pull/1589): Bump up GoReleaser version ([@wata727](https://github.com/wata727))
26+
- [#1590](https://github.com/terraform-linters/tflint/pull/1590): build(deps): Bump golangci/golangci-lint-action from 3.3.0 to 3.3.1
27+
- [#1593](https://github.com/terraform-linters/tflint/pull/1593): build(deps): Bump github.com/hashicorp/go-plugin from 1.4.5 to 1.4.6
28+
- [#1594](https://github.com/terraform-linters/tflint/pull/1594): build(deps): Bump alpine from 3.16.2 to 3.16.3
29+
130
## 0.42.2 (2022-10-26)
231

332
### BugFixes

integrationtest/inspection/incompatible-host/result.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"issues": [],
33
"errors": [
44
{
5-
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.2",
5+
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.43.0",
66
"severity": "error"
77
}
88
]

tflint/meta.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
// Version is application version
10-
var Version *version.Version = version.Must(version.NewVersion("0.42.2"))
10+
var Version *version.Version = version.Must(version.NewVersion("0.43.0"))
1111

1212
// ReferenceLink returns the rule reference link
1313
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)