Skip to content

Commit 7087a53

Browse files
committed
Bump up version to v0.27.0
1 parent 9039d7a commit 7087a53

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 0.27.0 (2024-07-22)
2+
3+
### Enhancements
4+
5+
- [#330](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/330): autogenerated maintenance
6+
- [#332](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/332): Adds a rule to check that the name of a windows virtual machine is valid
7+
- [#334](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/334): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.19.0 to 0.20.0
8+
- [#339](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/339): feat(vm_size): Updates vm sizes to state at 2024-06-11
9+
- [#345](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/345): Bump API versions
10+
11+
### Chores
12+
13+
- [#324](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/324): idempotent azure-docs watching
14+
- [#333](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/333): Bump golang.org/x/net from 0.21.0 to 0.23.0
15+
- [#335](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/335): release: Introduce Artifact Attestations
16+
- [#337](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/337): Bump goreleaser/goreleaser-action from 5 to 6
17+
- [#340](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/340): Bump github.com/hashicorp/hcl/v2 from 2.20.0 to 2.21.0 in /tools
18+
- [#341](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/341): Bump github.com/hashicorp/hcl/v2 from 2.20.0 to 2.21.0
19+
- [#343](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/343): deps: Go 1.22.5
20+
- [#344](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/344): Update snapshots
21+
122
## 0.26.0 (2024-03-31)
223

324
### Breaking Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1717
```hcl
1818
plugin "azurerm" {
1919
enabled = true
20-
version = "0.26.0"
20+
version = "0.27.0"
2121
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
2222
}
2323
```

integration/basic/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "azurerm_virtual_machine_invalid_vm_size",
66
"severity": "error",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.26.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
88
},
99
"message": "\"Standard_DS1_v3\" is an invalid value as vm_size",
1010
"range": {

integration/tags/result.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "azurerm_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.26.0/docs/rules/azurerm_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.0/docs/rules/azurerm_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Department\", \"Environment\".",
1010
"range": {
@@ -24,7 +24,7 @@
2424
"rule": {
2525
"name": "azurerm_resource_missing_tags",
2626
"severity": "info",
27-
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.26.0/docs/rules/azurerm_resource_missing_tags.md"
27+
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.0/docs/rules/azurerm_resource_missing_tags.md"
2828
},
2929
"message": "The resource is missing the following tags: \"Department\".",
3030
"range": {

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.26.0"
6+
const Version string = "0.27.0"
77

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

0 commit comments

Comments
 (0)