Skip to content

Commit f978a90

Browse files
committed
Bump up version to v0.42.0
1 parent 1129275 commit f978a90

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Example:
5757
5858
```console
5959
$ tflint -v
60-
TFLint version 0.41.0
60+
TFLint version 0.42.0
6161
$ terraform -v
62-
Terraform v1.3.0
62+
Terraform v1.3.3
6363
```
6464
-->

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## 0.42.0 (2022-10-23)
2+
3+
This release adds support for evaluating `local.*`, `each.key`, `each.value`, and `count.index`. Support for `each.*` and `count.index` requires plugins built with SDK v0.14+.
4+
5+
Starting with this release, resources/modules with `count` or `for_each` set will be expanded. Previously it was only expanded if `count = 0` or `for_each = {}`, but it is now always expanded and multiple resources/modules are passed to plugins.
6+
7+
### Enhancements
8+
9+
- [#1525](https://github.com/terraform-linters/tflint/pull/1525): terraform: Add local values support ([@wata727](https://github.com/wata727))
10+
- [#1530](https://github.com/terraform-linters/tflint/pull/1530): plugin: Add support for schema mode ([@wata727](https://github.com/wata727))
11+
- [#1535](https://github.com/terraform-linters/tflint/pull/1535): plugin: Allow plugins to set TFLint version constraints ([@wata727](https://github.com/wata727))
12+
- [#1537](https://github.com/terraform-linters/tflint/pull/1537): terraform: Add support for count/each value ([@wata727](https://github.com/wata727))
13+
- [#1560](https://github.com/terraform-linters/tflint/pull/1560): Bump tflint-plugin-sdk and bundled terraform plugin ([@wata727](https://github.com/wata727))
14+
15+
### BugFixes
16+
17+
- [#1557](https://github.com/terraform-linters/tflint/pull/1557): plugin: Fix crash when evaluating nested sensitive values ([@wata727](https://github.com/wata727))
18+
19+
### Chores
20+
21+
- [#1526](https://github.com/terraform-linters/tflint/pull/1526): Move block expanding to under the terraform package ([@wata727](https://github.com/wata727))
22+
- [#1527](https://github.com/terraform-linters/tflint/pull/1527): docs: Update compatibility guide ([@wata727](https://github.com/wata727))
23+
- [#1528](https://github.com/terraform-linters/tflint/pull/1528) [#1539](https://github.com/terraform-linters/tflint/pull/1539): build(deps): Bump sigstore/cosign-installer from 2.6.0 to 2.8.0
24+
- [#1529](https://github.com/terraform-linters/tflint/pull/1529): workflow(docker): Improve multi-arch image build ([@wata727](https://github.com/wata727))
25+
- [#1534](https://github.com/terraform-linters/tflint/pull/1534): docs: Add notice about Chocolatey package ([@wata727](https://github.com/wata727))
26+
- [#1538](https://github.com/terraform-linters/tflint/pull/1538): build(deps): Bump google.golang.org/grpc from 1.49.0 to 1.50.0
27+
- [#1550](https://github.com/terraform-linters/tflint/pull/1550): build(deps): Bump github.com/zclconf/go-cty from 1.11.0 to 1.11.1
28+
- [#1558](https://github.com/terraform-linters/tflint/pull/1558): docs: Add API compatibility note ([@wata727](https://github.com/wata727))
29+
- [#1559](https://github.com/terraform-linters/tflint/pull/1559): Add test when the count is string ([@wata727](https://github.com/wata727))
30+
- [#1561](https://github.com/terraform-linters/tflint/pull/1561): build(deps): Bump golang.org/x/text from 0.3.7 to 0.4.0
31+
132
## 0.41.0 (2022-09-24)
233

334
### Enhancements

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.41.0",
5+
"message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.42.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.41.0"))
10+
var Version *version.Version = version.Must(version.NewVersion("0.42.0"))
1111

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

0 commit comments

Comments
 (0)