From 4c6c498ea1e20e7d1172a94be8139780bcf00da1 Mon Sep 17 00:00:00 2001 From: Kazuma Watanabe Date: Sun, 9 Apr 2023 13:48:42 +0000 Subject: [PATCH] Bump up version to v0.23.0 --- .goreleaser.yml | 3 +-- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ README.md | 2 +- project/main.go | 2 +- 4 files changed, 32 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index e8359bf..4c7ac62 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -24,8 +24,6 @@ checksum: name_template: 'checksums.txt' signs: - cmd: cosign - env: - - COSIGN_EXPERIMENTAL=1 signature: '${artifact}.keyless.sig' certificate: '${artifact}.pem' output: true @@ -35,6 +33,7 @@ signs: - '--output-certificate=${certificate}' - '--output-signature=${signature}' - '${artifact}' + - --yes release: github: owner: terraform-linters diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd3e88..e90b8b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +## 0.23.0 (2023-04-09) + +### Breaking Changes + +- [#262](https://github.com/terraform-linters/tflint-ruleset-google/pull/262): Update Magic Modules + - Rename `google_bigquery_routine_invalid_determinism_level` to `google_big_query_routine_invalid_determinism_level` + - Rename `google_bigquery_routine_invalid_language` to `google_big_query_routine_invalid_language` + - Rename `google_bigquery_routine_invalid_routine_type` to `google_big_query_routine_invalid_routine_type` + - Rename `google_cloudbuild_trigger_invalid_include_build_logs` to `google_cloud_build_trigger_invalid_include_build_logs` + - Rename `google_cloudiot_device_invalid_log_level` to `google_cloud_iot_device_invalid_log_level` + - Rename `google_scc_source_invalid_display_name` to `google_security_center_source_invalid_display_name` + +### Enhancements + +- [#260](https://github.com/terraform-linters/tflint-ruleset-google/pull/260): Add support for g2 instance types +- [#261](https://github.com/terraform-linters/tflint-ruleset-google/pull/261): Add a2-ultra and m2-hypermem machine types + +### Chores + +- [#239](https://github.com/terraform-linters/tflint-ruleset-google/pull/239): Use NewRunner hook +- [#247](https://github.com/terraform-linters/tflint-ruleset-google/pull/247): Bump golang.org/x/net from 0.3.0 to 0.7.0 +- [#250](https://github.com/terraform-linters/tflint-ruleset-google/pull/250): Bump sigstore/cosign-installer from 2 to 3 +- [#254](https://github.com/terraform-linters/tflint-ruleset-google/pull/254): Bump actions/setup-go from 3 to 4 +- [#256](https://github.com/terraform-linters/tflint-ruleset-google/pull/256): Bump google.golang.org/api from 0.109.0 to 0.114.0 +- [#257](https://github.com/terraform-linters/tflint-ruleset-google/pull/257): Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.24.1 to 2.26.1 +- [#258](https://github.com/terraform-linters/tflint-ruleset-google/pull/258): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.15.0 to 0.16.0 +- [#263](https://github.com/terraform-linters/tflint-ruleset-google/pull/263): Follow up of the EnsureNoError deprecation +- [#264](https://github.com/terraform-linters/tflint-ruleset-google/pull/264): deps: Go 1.20 + ## 0.22.2 (2023-02-05) ### Enhancements diff --git a/README.md b/README.md index 69e1931..08b0eae 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli ```hcl plugin "google" { enabled = true - version = "0.22.2" + version = "0.23.0" source = "github.com/terraform-linters/tflint-ruleset-google" } ``` diff --git a/project/main.go b/project/main.go index 4a6b948..8954b1e 100644 --- a/project/main.go +++ b/project/main.go @@ -3,7 +3,7 @@ package project import "fmt" // Version is ruleset version -const Version string = "0.22.2" +const Version string = "0.23.0" // ReferenceLink returns the rule reference link func ReferenceLink(name string) string {