Skip to content

Commit 14d39fe

Browse files
committed
Bump up version to v0.18.0
1 parent 069cad7 commit 14d39fe

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.18.0 (2023-07-29)
2+
3+
### Breaking Changes
4+
5+
- [#268](https://github.com/terraform-linters/tflint-plugin-sdk/pull/268): helper: Un-export `NewLocalRunner` and `AddLocalFile`
6+
- [#273](https://github.com/terraform-linters/tflint-plugin-sdk/pull/273): Internalize unnecessarily published plugin packages
7+
- [#274](https://github.com/terraform-linters/tflint-plugin-sdk/pull/274): tflint: Remove deprecated IncludeNotCreated option
8+
9+
### Enhancements
10+
11+
- [#271](https://github.com/terraform-linters/tflint-plugin-sdk/pull/271): hclext: Add support for expression unwrapping in hclext.BoundExpr
12+
13+
### Chores
14+
15+
- [#267](https://github.com/terraform-linters/tflint-plugin-sdk/pull/267): Bump google.golang.org/protobuf from 1.30.0 to 1.31.0
16+
- [#270](https://github.com/terraform-linters/tflint-plugin-sdk/pull/270): Bump golang.org/x/tools from 0.10.0 to 0.11.0
17+
- [#272](https://github.com/terraform-linters/tflint-plugin-sdk/pull/272): Bump google.golang.org/grpc from 1.55.0 to 1.57.0
18+
119
## 0.17.0 (2023-06-18)
220

321
This release adds support for autofix API. The `EmitIssueWithFix` API allows you to implement autofix in your plugin using `tflint.Fixer`. Autofix is available in TFLint v0.47+. In earlier versions, the autofix is ignored.

plugin/internal/host2plugin/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
// SDKVersion is the SDK version.
13-
const SDKVersion = "0.17.0"
13+
const SDKVersion = "0.18.0"
1414

1515
// handShakeConfig is used for UX. ProcotolVersion will be updated by incompatible changes.
1616
var handshakeConfig = plugin.HandshakeConfig{

0 commit comments

Comments
 (0)