diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 89cf95bd7..78eb14742 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -46,7 +46,7 @@ body: - type: input attributes: label: TFLint Version - placeholder: '0.46.0' + placeholder: '0.46.1' validations: required: true - type: input diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cf01db8c..b10bd4408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.46.1 (2023-04-22) + +### BugFixes + +- [#1746](https://github.com/terraform-linters/tflint/pull/1746): sarif: fix incorrect `endLine` ([@tbutler-qontigo](https://github.com/tbutler-qontigo)) + +### Chores + +- [#1738](https://github.com/terraform-linters/tflint/pull/1738): build(deps): Bump sigstore/cosign-installer from 3.0.1 to 3.0.2 +- [#1739](https://github.com/terraform-linters/tflint/pull/1739): build(deps): Bump golang.org/x/crypto from 0.7.0 to 0.8.0 +- [#1741](https://github.com/terraform-linters/tflint/pull/1741): build(deps): Bump golang.org/x/oauth2 from 0.6.0 to 0.7.0 +- [#1743](https://github.com/terraform-linters/tflint/pull/1743): build(deps): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.16.0 to 0.16.1 + ## 0.46.0 (2023-04-09) This release adds deprecation warnings for future breaking changes. Warn when using command line arguments like `tflint dir` and `tflint main.tf`. The former can be replaced with `tflint --chdir=dir` and the latter with `tflint --filter=main.tf`. See https://github.com/terraform-linters/tflint/pull/1687 for details. diff --git a/integrationtest/inspection/incompatible-host/result.json b/integrationtest/inspection/incompatible-host/result.json index 489dd6cbf..e4224e377 100644 --- a/integrationtest/inspection/incompatible-host/result.json +++ b/integrationtest/inspection/incompatible-host/result.json @@ -2,7 +2,7 @@ "issues": [], "errors": [ { - "message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.46.0", + "message": "Failed to satisfy version constraints; tflint-ruleset-incompatiblehost requires >= 1.0, but TFLint version is 0.46.1", "severity": "error" } ] diff --git a/tflint/meta.go b/tflint/meta.go index eb24134f8..1df563130 100644 --- a/tflint/meta.go +++ b/tflint/meta.go @@ -7,7 +7,7 @@ import ( ) // Version is application version -var Version *version.Version = version.Must(version.NewVersion("0.46.0")) +var Version *version.Version = version.Must(version.NewVersion("0.46.1")) // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {