Skip to content

Commit

Permalink
Bump up version to v0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jul 21, 2024
1 parent 9039d7a commit 7087a53
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.27.0 (2024-07-22)

### Enhancements

- [#330](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/330): autogenerated maintenance
- [#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
- [#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
- [#339](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/339): feat(vm_size): Updates vm sizes to state at 2024-06-11
- [#345](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/345): Bump API versions

### Chores

- [#324](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/324): idempotent azure-docs watching
- [#333](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/333): Bump golang.org/x/net from 0.21.0 to 0.23.0
- [#335](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/335): release: Introduce Artifact Attestations
- [#337](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/337): Bump goreleaser/goreleaser-action from 5 to 6
- [#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
- [#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
- [#343](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/343): deps: Go 1.22.5
- [#344](https://github.com/terraform-linters/tflint-ruleset-azurerm/pull/344): Update snapshots

## 0.26.0 (2024-03-31)

### 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.26.0"
version = "0.27.0"
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
}
```
Expand Down
2 changes: 1 addition & 1 deletion 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.26.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.0/docs/rules/azurerm_virtual_machine_invalid_vm_size.md"
},
"message": "\"Standard_DS1_v3\" is an invalid value as vm_size",
"range": {
Expand Down
4 changes: 2 additions & 2 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.26.0/docs/rules/azurerm_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.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.26.0/docs/rules/azurerm_resource_missing_tags.md"
"link": "https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.27.0/docs/rules/azurerm_resource_missing_tags.md"
},
"message": "The resource is missing the following tags: \"Department\".",
"range": {
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.26.0"
const Version string = "0.27.0"

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

0 comments on commit 7087a53

Please sign in to comment.