From c0a3a56625789a134abd7e8550439a14fb997e9f Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Wed, 18 Sep 2024 13:40:33 +0000 Subject: [PATCH] Update changelog --- .changes/0.24.0.md | 15 +++++++++++++++ .../BREAKING CHANGES-20240510-105824.yaml | 6 ------ .../unreleased/BUG FIXES-20240917-162414.yaml | 5 ----- .changes/unreleased/NOTES-20240510-105942.yaml | 6 ------ .changes/unreleased/NOTES-20240906-165207.yaml | 7 ------- CHANGELOG.md | 15 +++++++++++++++ 6 files changed, 30 insertions(+), 24 deletions(-) create mode 100644 .changes/0.24.0.md delete mode 100644 .changes/unreleased/BREAKING CHANGES-20240510-105824.yaml delete mode 100644 .changes/unreleased/BUG FIXES-20240917-162414.yaml delete mode 100644 .changes/unreleased/NOTES-20240510-105942.yaml delete mode 100644 .changes/unreleased/NOTES-20240906-165207.yaml diff --git a/.changes/0.24.0.md b/.changes/0.24.0.md new file mode 100644 index 000000000..1ddd45414 --- /dev/null +++ b/.changes/0.24.0.md @@ -0,0 +1,15 @@ +## 0.24.0 (September 18, 2024) + +BREAKING CHANGES: + +* tfprotov5+tfprotov6: Removed temporary `ResourceServerWithMoveResourceState` interface type. Use `ResourceServer` instead. ([#408](https://github.com/hashicorp/terraform-plugin-go/issues/408)) + +NOTES: + +* all: If using terraform-plugin-mux, it must be upgraded to v0.16.0 or later to prevent compilation errors ([#408](https://github.com/hashicorp/terraform-plugin-go/issues/408)) +* all: This Go module has been updated to Go 1.22 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.22 release notes](https://go.dev/doc/go1.22) before upgrading. Any consumers building on earlier Go versions may experience errors. ([#428](https://github.com/hashicorp/terraform-plugin-go/issues/428)) + +BUG FIXES: + +* logging: Add existing `MoveResourceState` server capability to v5 and v6 logging ([#432](https://github.com/hashicorp/terraform-plugin-go/issues/432)) + diff --git a/.changes/unreleased/BREAKING CHANGES-20240510-105824.yaml b/.changes/unreleased/BREAKING CHANGES-20240510-105824.yaml deleted file mode 100644 index a6177cdef..000000000 --- a/.changes/unreleased/BREAKING CHANGES-20240510-105824.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BREAKING CHANGES -body: 'tfprotov5+tfprotov6: Removed temporary `ResourceServerWithMoveResourceState` - interface type. Use `ResourceServer` instead.' -time: 2024-05-10T10:58:24.383876-04:00 -custom: - Issue: "408" diff --git a/.changes/unreleased/BUG FIXES-20240917-162414.yaml b/.changes/unreleased/BUG FIXES-20240917-162414.yaml deleted file mode 100644 index 814d8c56d..000000000 --- a/.changes/unreleased/BUG FIXES-20240917-162414.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: 'logging: Add existing `MoveResourceState` server capability to v5 and v6 logging' -time: 2024-09-17T16:24:14.06442-04:00 -custom: - Issue: "432" diff --git a/.changes/unreleased/NOTES-20240510-105942.yaml b/.changes/unreleased/NOTES-20240510-105942.yaml deleted file mode 100644 index f9c11c00a..000000000 --- a/.changes/unreleased/NOTES-20240510-105942.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: NOTES -body: 'all: If using terraform-plugin-mux, it must be upgraded to v0.16.0 or later - to prevent compilation errors' -time: 2024-05-10T10:59:42.325131-04:00 -custom: - Issue: "408" diff --git a/.changes/unreleased/NOTES-20240906-165207.yaml b/.changes/unreleased/NOTES-20240906-165207.yaml deleted file mode 100644 index 5fcf02439..000000000 --- a/.changes/unreleased/NOTES-20240906-165207.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: NOTES -body: 'all: This Go module has been updated to Go 1.22 per the [Go support policy](https://go.dev/doc/devel/release#policy). - It is recommended to review the [Go 1.22 release notes](https://go.dev/doc/go1.22) - before upgrading. Any consumers building on earlier Go versions may experience errors.' -time: 2024-09-06T16:52:07.507987-04:00 -custom: - Issue: "428" diff --git a/CHANGELOG.md b/CHANGELOG.md index fafbf8d4c..09b0b168a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.24.0 (September 18, 2024) + +BREAKING CHANGES: + +* tfprotov5+tfprotov6: Removed temporary `ResourceServerWithMoveResourceState` interface type. Use `ResourceServer` instead. ([#408](https://github.com/hashicorp/terraform-plugin-go/issues/408)) + +NOTES: + +* all: If using terraform-plugin-mux, it must be upgraded to v0.16.0 or later to prevent compilation errors ([#408](https://github.com/hashicorp/terraform-plugin-go/issues/408)) +* all: This Go module has been updated to Go 1.22 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.22 release notes](https://go.dev/doc/go1.22) before upgrading. Any consumers building on earlier Go versions may experience errors. ([#428](https://github.com/hashicorp/terraform-plugin-go/issues/428)) + +BUG FIXES: + +* logging: Add existing `MoveResourceState` server capability to v5 and v6 logging ([#432](https://github.com/hashicorp/terraform-plugin-go/issues/432)) + ## 0.23.0 (May 06, 2024) BREAKING CHANGES: