Skip to content

Commit ec43cd6

Browse files
committed
Bump up version to v0.45.0
1 parent 6cf62be commit ec43cd6

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-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.44.1'
49+
placeholder: '0.45.0'
5050
validations:
5151
required: true
5252
- type: input

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## 0.45.0 (2023-02-13)
2+
3+
This release adds support for some CLI flags. File arguments (e.g. `tflint main.tf`) have been deprecated by the new `--filter` flag. It works in v0.45 but will be removed in a future version. We recommend migrating to `tflint --filter=main.tf`.
4+
5+
All arguments are deprecated from this release. If you're using arguments, you'll need to migrate to the `--chdir` or `--filter` flags.
6+
7+
This release updates the expiration date of the built-in GPG public key. Existing keys will expire on 2023-05-01, so you are encouraged to update by then.
8+
9+
### Enhancements
10+
11+
- [#1638](https://github.com/terraform-linters/tflint/pull/1638): cmd: Add `--filter` option ([@wata727](https://github.com/wata727))
12+
- [#1654](https://github.com/terraform-linters/tflint/pull/1654): cmd: Add `--minimum-failure-severity` flag, sets minimum issue severity for non-zero exit ([@nicolajv](https://github.com/nicolajv))
13+
- [#1671](https://github.com/terraform-linters/tflint/pull/1671): cmd: Add` --no-module` option ([@wata727](https://github.com/wata727))
14+
- [#1679](https://github.com/terraform-linters/tflint/pull/1679): plugin: Set the GPG key expiration to 2025-05-01 ([@wata727](https://github.com/wata727))
15+
16+
### BugFixes
17+
18+
- [#1664](https://github.com/terraform-linters/tflint/pull/1664): plugin: Fix panic when plugin path could not be loaded ([@wata727](https://github.com/wata727))
19+
- [#1678](https://github.com/terraform-linters/tflint/pull/1678): cmd: Reject all directory arguments with --chdir/--recursive ([@wata727](https://github.com/wata727))
20+
21+
### Chores
22+
23+
- [#1642](https://github.com/terraform-linters/tflint/pull/1642): build(deps): Bump golang.org/x/text from 0.5.0 to 0.6.0
24+
- [#1651](https://github.com/terraform-linters/tflint/pull/1651): build(deps): Bump golangci/golangci-lint-action from 3.3.1 to 3.4.0
25+
- [#1652](https://github.com/terraform-linters/tflint/pull/1652): build(deps): Bump github.com/fatih/color from 1.13.0 to 1.14.1
26+
- [#1653](https://github.com/terraform-linters/tflint/pull/1653): build(deps): Bump alpine from 3.17.0 to 3.17.1
27+
- [#1658](https://github.com/terraform-linters/tflint/pull/1658): docs: Fix typo in architecture guide ([@Ankushpandey-ti](https://github.com/Ankushpandey-ti))
28+
- [#1659](https://github.com/terraform-linters/tflint/pull/1659): build(deps): Bump github.com/hashicorp/hcl/v2 from 2.15.0 to 2.16.0
29+
- [#1660](https://github.com/terraform-linters/tflint/pull/1660): build(deps): Bump google.golang.org/grpc from 1.51.0 to 1.52.3
30+
- [#1661](https://github.com/terraform-linters/tflint/pull/1661): docs: Mention OPA ruleset ([@wata727](https://github.com/wata727))
31+
- [#1666](https://github.com/terraform-linters/tflint/pull/1666): docs: Add Environment Variables documentation ([@wata727](https://github.com/wata727))
32+
- [#1667](https://github.com/terraform-linters/tflint/pull/1667): docs: Mention Renovate TFLint plugins support ([@wata727](https://github.com/wata727))
33+
- [#1670](https://github.com/terraform-linters/tflint/pull/1670): tflint: Allow config to be merged even with initial values ([@wata727](https://github.com/wata727))
34+
- [#1673](https://github.com/terraform-linters/tflint/pull/1673): build(deps): Bump docker/build-push-action from 3 to 4
35+
- [#1674](https://github.com/terraform-linters/tflint/pull/1674): build(deps): Bump golang from 1.19-alpine3.16 to 1.20-alpine3.16
36+
137
## 0.44.1 (2022-12-30)
238

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

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

0 commit comments

Comments
 (0)