Skip to content

Commit ad85df6

Browse files
committed
Bump up version to v0.31.0
1 parent b57d0d4 commit ad85df6

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.31.0 (2025-02-23)
2+
3+
### Breaking Changes
4+
5+
- [#389](https://github.com/terraform-linters/tflint-ruleset-google/pull/389): Update Magic Modules
6+
- The following rules are removed
7+
- `google_datastore_index_invalid_ancestor`
8+
- `google_sql_source_representation_instance_invalid_database_version`
9+
10+
### Enhancements
11+
12+
- [#387](https://github.com/terraform-linters/tflint-ruleset-google/pull/387): Add support for principalSet and principal IAM member types
13+
- [#392](https://github.com/terraform-linters/tflint-ruleset-google/pull/392): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.20.0 to 0.22.0
14+
15+
### Chores
16+
17+
- [#378](https://github.com/terraform-linters/tflint-ruleset-google/pull/378): Bump github.com/hashicorp/hcl/v2 from 2.21.0 to 2.22.0
18+
- [#386](https://github.com/terraform-linters/tflint-ruleset-google/pull/386): Bump google.golang.org/api from 0.189.0 to 0.201.0
19+
- [#390](https://github.com/terraform-linters/tflint-ruleset-google/pull/390): Bump golang.org/x/crypto from 0.28.0 to 0.31.0
20+
- [#391](https://github.com/terraform-linters/tflint-ruleset-google/pull/391): Bump golang.org/x/net from 0.30.0 to 0.33.0
21+
- [#393](https://github.com/terraform-linters/tflint-ruleset-google/pull/393): Bump GoReleaser to v2
22+
123
## 0.30.0 (2024-07-23)
224

325
### Enhancements

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ TFLint ruleset plugin for Terraform Google Cloud Platform provider
88
## Requirements
99

1010
- TFLint v0.42+
11-
- Go v1.22
11+
- Go v1.24
1212

1313
## Installation
1414

@@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1717
```hcl
1818
plugin "google" {
1919
enabled = true
20-
version = "0.30.0"
20+
version = "0.31.0"
2121
source = "github.com/terraform-linters/tflint-ruleset-google"
2222
}
2323
```

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.30.0"
6+
const Version string = "0.31.0"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)