diff --git a/.changes/1.14.0.md b/.changes/1.14.0.md new file mode 100644 index 000000000..7d364f3b8 --- /dev/null +++ b/.changes/1.14.0.md @@ -0,0 +1,16 @@ +## 1.14.0 (February 19, 2025) + +NOTES: + +* Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. ([#1044](https://github.com/hashicorp/terraform-plugin-framework/issues/1044)) +* ephemeral: Ephemeral resources are now considered generally available and protected by compatibility promises. ([#1052](https://github.com/hashicorp/terraform-plugin-framework/issues/1052)) + +FEATURES: + +* resource/schema: Added `WriteOnly` schema field for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. ([#1044](https://github.com/hashicorp/terraform-plugin-framework/issues/1044)) + +BUG FIXES: + +* internal/fwschemadata: Set semantic equality logic has been adjusted and will now ignore order of elements during comparison. ([#1061](https://github.com/hashicorp/terraform-plugin-framework/issues/1061)) +* internal/fwserver: Fixed bug where dynamic attributes would not prompt invalid configuration error messages ([#1090](https://github.com/hashicorp/terraform-plugin-framework/issues/1090)) + diff --git a/.changes/unreleased/BUG FIXES-20250117-110109.yaml b/.changes/unreleased/BUG FIXES-20250117-110109.yaml deleted file mode 100644 index 8ce6b651d..000000000 --- a/.changes/unreleased/BUG FIXES-20250117-110109.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'internal/fwschemadata: Set semantic equality logic has been adjusted and will - now ignore order of elements during comparison.' -time: 2025-01-17T11:01:09.848503-05:00 -custom: - Issue: "1061" diff --git a/.changes/unreleased/BUG FIXES-20250213-164700.yaml b/.changes/unreleased/BUG FIXES-20250213-164700.yaml deleted file mode 100644 index 3c49a6f81..000000000 --- a/.changes/unreleased/BUG FIXES-20250213-164700.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: 'internal/fwserver: Fixed bug where dynamic attributes would not prompt invalid configuration error messages' -time: 2025-02-13T16:47:00.4821-05:00 -custom: - Issue: "1090" diff --git a/.changes/unreleased/FEATURES-20250206-114700.yaml b/.changes/unreleased/FEATURES-20250206-114700.yaml deleted file mode 100644 index ce306a4c9..000000000 --- a/.changes/unreleased/FEATURES-20250206-114700.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'resource/schema: Added `WriteOnly` schema field for managed resource schemas to indicate a write-only attribute. -Write-only attribute values are not saved to the Terraform plan or state artifacts.' -time: 2025-02-06T11:47:00.176842-05:00 -custom: - Issue: "1044" diff --git a/.changes/unreleased/NOTES-20250206-114436.yaml b/.changes/unreleased/NOTES-20250206-114436.yaml deleted file mode 100644 index 0ce8a7603..000000000 --- a/.changes/unreleased/NOTES-20250206-114436.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: NOTES -body: Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. -time: 2025-02-06T11:44:36.156747-05:00 -custom: - Issue: "1044" diff --git a/.changes/unreleased/NOTES-20250212-105343.yaml b/.changes/unreleased/NOTES-20250212-105343.yaml deleted file mode 100644 index 405d22b85..000000000 --- a/.changes/unreleased/NOTES-20250212-105343.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: NOTES -body: 'ephemeral: Ephemeral resources are now considered generally available and protected - by compatibility promises.' -time: 2025-02-12T10:53:43.499303-05:00 -custom: - Issue: "1052" diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f78f7fd..4492af198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 1.14.0 (February 19, 2025) + +NOTES: + +* Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. ([#1044](https://github.com/hashicorp/terraform-plugin-framework/issues/1044)) +* ephemeral: Ephemeral resources are now considered generally available and protected by compatibility promises. ([#1052](https://github.com/hashicorp/terraform-plugin-framework/issues/1052)) + +FEATURES: + +* resource/schema: Added `WriteOnly` schema field for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. ([#1044](https://github.com/hashicorp/terraform-plugin-framework/issues/1044)) + +BUG FIXES: + +* internal/fwschemadata: Set semantic equality logic has been adjusted and will now ignore order of elements during comparison. ([#1061](https://github.com/hashicorp/terraform-plugin-framework/issues/1061)) +* internal/fwserver: Fixed bug where dynamic attributes would not prompt invalid configuration error messages ([#1090](https://github.com/hashicorp/terraform-plugin-framework/issues/1090)) + ## 1.13.0 (October 31, 2024) NOTES: