From e795ff779f78a4d4de763f2bd90355a51bae33f8 Mon Sep 17 00:00:00 2001 From: wata_mac Date: Thu, 5 May 2022 17:43:24 +0900 Subject: [PATCH] Bump up version to v0.36.0 --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ tflint/meta.go | 2 +- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b1cdf736e..0aa38d1f7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -27,8 +27,8 @@ Example: ```console $ tflint -v -TFLint version 0.35.0 +TFLint version 0.36.0 $ terraform -v -Terraform v1.1.7 +Terraform v1.1.9 ``` --> diff --git a/CHANGELOG.md b/CHANGELOG.md index cfa392ef5..f065d765b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +## 0.36.0 (2022-05-05) + +### Enhancements + +- [#1369](https://github.com/terraform-linters/tflint/pull/1369): tflint: Add format option to the config file ([@wata727](https://github.com/wata727)) +- [#1370](https://github.com/terraform-linters/tflint/pull/1370): cmd: Add `--color` option ([@wata727](https://github.com/wata727)) + +### Plugin API Changes + +- [#1365](https://github.com/terraform-linters/tflint/pull/1365): Refactor tflint.LoadConfig ([@wata727](https://github.com/wata727)) + - Previously, `GetRuleConfigContent` always returned reserved attributes (e.g. `enabled`), regardless of the passed schema, but new gRPC server will not return them. +- [#1368](https://github.com/terraform-linters/tflint/pull/1368): plugin: Allow accepting IncludeNotCreated option ([@wata727](https://github.com/wata727)) + - See https://github.com/terraform-linters/tflint-plugin-sdk/pull/160 + +### Chores + +- [#1336](https://github.com/terraform-linters/tflint/pull/1336): build: Go 1.18 ([@wata727](https://github.com/wata727)) +- [#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 +- [#1344](https://github.com/terraform-linters/tflint/pull/1344): build: CI only checks docker build for linux/amd64 ([@wata727](https://github.com/wata727)) +- [#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 +- [#1348](https://github.com/terraform-linters/tflint/pull/1348): discovery: reword message on protocol version err ([@bendrucker](https://github.com/bendrucker)) +- [#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 +- [#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 +- [#1361](https://github.com/terraform-linters/tflint/pull/1361): Add signatures for keyless signing ([@wata727](https://github.com/wata727)) +- [#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 +- [#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 +- [#1367](https://github.com/terraform-linters/tflint/pull/1367): build(deps): Bump sigstore/cosign-installer from 2.2.1 to 2.3.0 + ## 0.35.0 (2022-03-27) 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 diff --git a/tflint/meta.go b/tflint/meta.go index f177142c3..9face15b5 100644 --- a/tflint/meta.go +++ b/tflint/meta.go @@ -3,7 +3,7 @@ package tflint import "fmt" // Version is application version -const Version string = "0.35.0" +const Version string = "0.36.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {