Skip to content

Commit

Permalink
Bump up version to v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Mar 21, 2023
1 parent eb09ceb commit 92ac788
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 7 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 0.22.0 (2023-03-21)

### Enhancements

- [#258](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/258): Add support for HBv4 and HX series

### BugFixes

- [#252](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/252): Fix `azurerm_postgresql_server` rule by correcting import path

### Chores

- [#238](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/238): Bump golang.org/x/net from 0.3.0 to 0.7.0
- [#237](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/237) [#239](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/239) [#257](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/257) [#259](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/259): Bump terraform-provider-azurerm to v3.48.0 from v3.43.0
- [#242](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/242): Bump golang.org/x/text from 0.3.7 to 0.3.8 in /tools
- [#245](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/245): Bump sigstore/cosign-installer from 2 to 3
- [#247](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/247): Bump github.com/hashicorp/hcl/v2 from 2.16.0 to 2.16.2 in /tools
- [#248](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/248): Bump github.com/hashicorp/hcl/v2 from 2.16.0 to 2.16.2
- [#254](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/254): Bump github.com/zclconf/go-cty from 1.12.1 to 1.13.1 in /tools
- [#255](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/255): Bump github.com/zclconf/go-cty from 1.12.1 to 1.13.1
- [#256](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/256): Bump actions/setup-go from 3 to 4
- [#260](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/260): Fix signing for Cosign v2
- [#261](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/261): go 1.20

## 0.21.0 (2023-02-12)

### Breaking Changes
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 "azurerm" {
enabled = true
version = "0.21.0"
version = "0.22.0"
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
}
```
Expand Down
4 changes: 2 additions & 2 deletions integration/basic/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "azurerm_virtual_machine_invalid_vm_size",
"severity": "error",
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.21.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.22.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
},
"message": "\"Standard_DS1_v3\" is an invalid value as vm_size",
"range": {
Expand All @@ -22,4 +22,4 @@
}
],
"errors": []
}
}
6 changes: 3 additions & 3 deletions integration/tags/result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rule": {
"name": "azurerm_resource_missing_tags",
"severity": "info",
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.21.0/docs/rules/azurerm_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.22.0/docs/rules/azurerm_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Department\", \"Environment\".",
"range": {
Expand All @@ -24,7 +24,7 @@
"rule": {
"name": "azurerm_resource_missing_tags",
"severity": "info",
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.21.0/docs/rules/azurerm_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.22.0/docs/rules/azurerm_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Department\".",
"range": {
Expand All @@ -42,4 +42,4 @@
}
],
"errors": []
}
}
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.21.0"
const Version string = "0.22.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 92ac788

Please sign in to comment.