From e6b2d53f61105f4ac01670ab70cccf5d90eeadf8 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Tue, 4 Feb 2025 16:39:21 +0000 Subject: [PATCH] Update changelog --- .changes/2.36.0.md | 12 ++++++++++++ .changes/unreleased/FEATURES-20250121-165644.yaml | 6 ------ .changes/unreleased/FEATURES-20250121-170105.yaml | 6 ------ .changes/unreleased/FEATURES-20250203-151933.yaml | 5 ----- .changes/unreleased/NOTES-20250121-170545.yaml | 5 ----- CHANGELOG.md | 12 ++++++++++++ 6 files changed, 24 insertions(+), 22 deletions(-) create mode 100644 .changes/2.36.0.md delete mode 100644 .changes/unreleased/FEATURES-20250121-165644.yaml delete mode 100644 .changes/unreleased/FEATURES-20250121-170105.yaml delete mode 100644 .changes/unreleased/FEATURES-20250203-151933.yaml delete mode 100644 .changes/unreleased/NOTES-20250121-170545.yaml diff --git a/.changes/2.36.0.md b/.changes/2.36.0.md new file mode 100644 index 0000000000..6dca450594 --- /dev/null +++ b/.changes/2.36.0.md @@ -0,0 +1,12 @@ +## 2.36.0 (February 04, 2025) + +NOTES: + +* Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) + +FEATURES: + +* helper/schema: Added `WriteOnly` schema behavior for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) +* helper/validation: Added `PreferWriteOnlyAttribute()` validator that warns practitioners when a write-only version of a configured attribute is available. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) +* schema/resource: Added `ValidateRawResourceConfigFuncs` field which allows resources to define validation logic during the `ValidateResourceTypeConfig` RPC. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) + diff --git a/.changes/unreleased/FEATURES-20250121-165644.yaml b/.changes/unreleased/FEATURES-20250121-165644.yaml deleted file mode 100644 index 83ff178c9d..0000000000 --- a/.changes/unreleased/FEATURES-20250121-165644.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'helper/schema: Added `WriteOnly` schema behavior 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-01-21T16:56:44.038893-05:00 -custom: - Issue: "1375" diff --git a/.changes/unreleased/FEATURES-20250121-170105.yaml b/.changes/unreleased/FEATURES-20250121-170105.yaml deleted file mode 100644 index 900b07887e..0000000000 --- a/.changes/unreleased/FEATURES-20250121-170105.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'helper/validation: Added `PreferWriteOnlyAttribute()` validator that warns practitioners when a write-only version of -a configured attribute is available.' -time: 2025-01-21T17:01:05.40229-05:00 -custom: - Issue: "1375" diff --git a/.changes/unreleased/FEATURES-20250203-151933.yaml b/.changes/unreleased/FEATURES-20250203-151933.yaml deleted file mode 100644 index 488d65d4f1..0000000000 --- a/.changes/unreleased/FEATURES-20250203-151933.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: 'schema/resource: Added `ValidateRawResourceConfigFuncs` field which allows resources to define validation logic during the `ValidateResourceTypeConfig` RPC.' -time: 2025-02-03T15:19:33.669857-05:00 -custom: - Issue: "1375" diff --git a/.changes/unreleased/NOTES-20250121-170545.yaml b/.changes/unreleased/NOTES-20250121-170545.yaml deleted file mode 100644 index fb75dba49a..0000000000 --- a/.changes/unreleased/NOTES-20250121-170545.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-01-21T17:05:45.398836-05:00 -custom: - Issue: "1375" diff --git a/CHANGELOG.md b/CHANGELOG.md index 08e9f098d2..4193e2353e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 2.36.0 (February 04, 2025) + +NOTES: + +* Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) + +FEATURES: + +* helper/schema: Added `WriteOnly` schema behavior for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) +* helper/validation: Added `PreferWriteOnlyAttribute()` validator that warns practitioners when a write-only version of a configured attribute is available. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) +* schema/resource: Added `ValidateRawResourceConfigFuncs` field which allows resources to define validation logic during the `ValidateResourceTypeConfig` RPC. ([#1375](https://github.com/hashicorp/terraform-plugin-sdk/issues/1375)) + ## 2.35.0 (October 31, 2024) NOTES: