Skip to content

Commit e795ff7

Browse files
committed
Bump up version to v0.36.0
1 parent 5ade5f8 commit e795ff7

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Example:
2727
2828
```console
2929
$ tflint -v
30-
TFLint version 0.35.0
30+
TFLint version 0.36.0
3131
$ terraform -v
32-
Terraform v1.1.7
32+
Terraform v1.1.9
3333
```
3434
-->

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.36.0 (2022-05-05)
2+
3+
### Enhancements
4+
5+
- [#1369](https://github.com/terraform-linters/tflint/pull/1369): tflint: Add format option to the config file ([@wata727](https://github.com/wata727))
6+
- [#1370](https://github.com/terraform-linters/tflint/pull/1370): cmd: Add `--color` option ([@wata727](https://github.com/wata727))
7+
8+
### Plugin API Changes
9+
10+
- [#1365](https://github.com/terraform-linters/tflint/pull/1365): Refactor tflint.LoadConfig ([@wata727](https://github.com/wata727))
11+
- Previously, `GetRuleConfigContent` always returned reserved attributes (e.g. `enabled`), regardless of the passed schema, but new gRPC server will not return them.
12+
- [#1368](https://github.com/terraform-linters/tflint/pull/1368): plugin: Allow accepting IncludeNotCreated option ([@wata727](https://github.com/wata727))
13+
- See https://github.com/terraform-linters/tflint-plugin-sdk/pull/160
14+
15+
### Chores
16+
17+
- [#1336](https://github.com/terraform-linters/tflint/pull/1336): build: Go 1.18 ([@wata727](https://github.com/wata727))
18+
- [#1339](https://github.com/terraform-linters/tflint/pull/1339) [#1347](https://github.com/terraform-linters/tflint/pull/1347) [#1350](https://github.com/terraform-linters/tflint/pull/1350): build(deps): Bump alpine from 3.15.1 to 3.15.4
19+
- [#1344](https://github.com/terraform-linters/tflint/pull/1344): build: CI only checks docker build for linux/amd64 ([@wata727](https://github.com/wata727))
20+
- [#1346](https://github.com/terraform-linters/tflint/pull/1346) [#1371](https://github.com/terraform-linters/tflint/pull/1371): build(deps): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.10.0 to 0.11.0
21+
- [#1348](https://github.com/terraform-linters/tflint/pull/1348): discovery: reword message on protocol version err ([@bendrucker](https://github.com/bendrucker))
22+
- [#1349](https://github.com/terraform-linters/tflint/pull/1349): build(deps): Bump github.com/hashicorp/go-uuid from 1.0.2 to 1.0.3
23+
- [#1360](https://github.com/terraform-linters/tflint/pull/1360): build(deps): Bump golang from 1.18.0-alpine3.15 to 1.18.1-alpine3.15
24+
- [#1361](https://github.com/terraform-linters/tflint/pull/1361): Add signatures for keyless signing ([@wata727](https://github.com/wata727))
25+
- [#1364](https://github.com/terraform-linters/tflint/pull/1364): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.11.1 to 2.12.0
26+
- [#1366](https://github.com/terraform-linters/tflint/pull/1366): build(deps): Bump github.com/google/go-cmp from 0.5.7 to 0.5.8
27+
- [#1367](https://github.com/terraform-linters/tflint/pull/1367): build(deps): Bump sigstore/cosign-installer from 2.2.1 to 2.3.0
28+
129
## 0.35.0 (2022-03-27)
230

331
This release contains major changes to the plugin system. All plugins must be built with tflint-plugin-sdk v0.10.0+ to support this version. See also https://github.com/terraform-linters/tflint-plugin-sdk/releases/tag/v0.10.0

tflint/meta.go

+1-1
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.35.0"
6+
const Version string = "0.36.0"
77

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

0 commit comments

Comments
 (0)