Skip to content

Commit 3e4aa4a

Browse files
committed
Bump up version to v0.33.0
1 parent 47ee5a4 commit 3e4aa4a

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.32.1
30+
TFLint version 0.33.0
3131
$ terraform -v
32-
Terraform v1.0.6
32+
Terraform v1.0.9
3333
```
3434
-->

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.33.0 (2021-10-14)
2+
3+
### Breaking Changes
4+
5+
- [#1220](https://github.com/terraform-linters/tflint/pull/1220): build: Remove some os/arch build targets ([@wata727](https://github.com/wata727))
6+
- End of support for pre-built binaries for the following os/arch
7+
- All arch for FreeBSD/OpenBSD/NetBSD
8+
- windows/arm and windows/arm64
9+
- darwin/386
10+
11+
### Enhancements
12+
13+
- [#1228](https://github.com/terraform-linters/tflint/pull/1228): Adds SARIF as a supported output format ([@kadrach](https://github.com/kadrach))
14+
- [#1229](https://github.com/terraform-linters/tflint/pull/1229) [#1237](https://github.com/terraform-linters/tflint/pull/1237): build(deps): Bump github.com/terraform-linters/tflint-ruleset-aws from 0.7.1 to 0.8.0
15+
- [#1235](https://github.com/terraform-linters/tflint/pull/1235): config: Add `plugin_dir` config ([@wata727](https://github.com/wata727))
16+
17+
### BugFixes
18+
19+
- [#1225](https://github.com/terraform-linters/tflint/pull/1225): terraform_unused_required_providers: handle module provider overrides ([@bendrucker](https://github.com/bendrucker))
20+
- [#1226](https://github.com/terraform-linters/tflint/pull/1227): terraform_module_pinned_source: do not assume gitlab URLs are git protocol ([@bendrucker](https://github.com/bendrucker))
21+
22+
### Chores
23+
24+
- [#1222](https://github.com/terraform-linters/tflint/pull/1222) [#1236](https://github.com/terraform-linters/tflint/pull/1236): build(deps): Bump github.com/hashicorp/go-getter from 1.5.7 to 1.5.9
25+
- [#1223](https://github.com/terraform-linters/tflint/pull/1223): fix incorrect documentation ([@darrenjones24](https://github.com/darrenjones24))
26+
- [#1224](https://github.com/terraform-linters/tflint/pull/1224) [#1230](https://github.com/terraform-linters/tflint/pull/1230) [#1234](https://github.com/terraform-linters/tflint/pull/1234): build(deps): Bump github.com/mattn/go-colorable from 0.1.8 to 0.1.11
27+
- [#1231](https://github.com/terraform-linters/tflint/pull/1231): build(deps): Bump github.com/fatih/color from 1.12.0 to 1.13.0
28+
129
## 0.32.1 (2021-09-12)
230

331
### BugFixes

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

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

0 commit comments

Comments
 (0)