Skip to content

Commit

Permalink
Bump up version to v0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Apr 9, 2023
1 parent c433624 commit 4c6c498
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -35,6 +33,7 @@ signs:
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'
- --yes
release:
github:
owner: terraform-linters
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4c6c498

Please sign in to comment.