From 081db0f34444a077f3032ee8508fe85ca770ad0e Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Thu, 17 Oct 2024 19:07:09 +0000 Subject: [PATCH] Update changelog --- .changes/0.14.0.md | 15 +++++++++++++++ .../unreleased/ENHANCEMENTS-20241014-121220.yaml | 6 ------ .changes/unreleased/FEATURES-20240920-164852.yaml | 5 ----- .changes/unreleased/NOTES-20240906-162141.yaml | 7 ------- .changes/unreleased/NOTES-20241014-121711.yaml | 7 ------- CHANGELOG.md | 15 +++++++++++++++ 6 files changed, 30 insertions(+), 25 deletions(-) create mode 100644 .changes/0.14.0.md delete mode 100644 .changes/unreleased/ENHANCEMENTS-20241014-121220.yaml delete mode 100644 .changes/unreleased/FEATURES-20240920-164852.yaml delete mode 100644 .changes/unreleased/NOTES-20240906-162141.yaml delete mode 100644 .changes/unreleased/NOTES-20241014-121711.yaml diff --git a/.changes/0.14.0.md b/.changes/0.14.0.md new file mode 100644 index 0000000..b52df76 --- /dev/null +++ b/.changes/0.14.0.md @@ -0,0 +1,15 @@ +## 0.14.0 (October 17, 2024) + +NOTES: + +* 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. ([#229](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/229)) +* all: Previously, creating validators with invalid data would result in a `nil` value being returned and a panic from `terraform-plugin-framework`. This has been updated to return an implementation diagnostic referencing the invalid data/validator during config validation. ([#235](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/235)) + +FEATURES: + +* boolvalidator: Added `Equals` validator ([#232](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/232)) + +ENHANCEMENTS: + +* all: Implemented parameter interfaces for all value-based validators. This allows these validators to be used with provider-defined functions. ([#235](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/235)) + diff --git a/.changes/unreleased/ENHANCEMENTS-20241014-121220.yaml b/.changes/unreleased/ENHANCEMENTS-20241014-121220.yaml deleted file mode 100644 index 56a4511..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20241014-121220.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'all: Implemented parameter interfaces for all value-based validators. This - allows these validators to be used with provider-defined functions.' -time: 2024-10-14T12:12:20.607373-04:00 -custom: - Issue: "235" diff --git a/.changes/unreleased/FEATURES-20240920-164852.yaml b/.changes/unreleased/FEATURES-20240920-164852.yaml deleted file mode 100644 index 0a90941..0000000 --- a/.changes/unreleased/FEATURES-20240920-164852.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: 'boolvalidator: Added `Equals` validator' -time: 2024-09-20T16:48:52.562758-04:00 -custom: - Issue: "232" diff --git a/.changes/unreleased/NOTES-20240906-162141.yaml b/.changes/unreleased/NOTES-20240906-162141.yaml deleted file mode 100644 index 79d8486..0000000 --- a/.changes/unreleased/NOTES-20240906-162141.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:21:41.853159-04:00 -custom: - Issue: "229" diff --git a/.changes/unreleased/NOTES-20241014-121711.yaml b/.changes/unreleased/NOTES-20241014-121711.yaml deleted file mode 100644 index 392757d..0000000 --- a/.changes/unreleased/NOTES-20241014-121711.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: NOTES -body: 'all: Previously, creating validators with invalid data would result in a `nil` - value being returned and a panic from `terraform-plugin-framework`. This has been - updated to return an implementation diagnostic referencing the invalid data/validator during config validation.' -time: 2024-10-14T12:17:11.811926-04:00 -custom: - Issue: "235" diff --git a/CHANGELOG.md b/CHANGELOG.md index 762e213..8276814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.14.0 (October 17, 2024) + +NOTES: + +* 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. ([#229](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/229)) +* all: Previously, creating validators with invalid data would result in a `nil` value being returned and a panic from `terraform-plugin-framework`. This has been updated to return an implementation diagnostic referencing the invalid data/validator during config validation. ([#235](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/235)) + +FEATURES: + +* boolvalidator: Added `Equals` validator ([#232](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/232)) + +ENHANCEMENTS: + +* all: Implemented parameter interfaces for all value-based validators. This allows these validators to be used with provider-defined functions. ([#235](https://github.com/hashicorp/terraform-plugin-framework-validators/issues/235)) + ## 0.13.0 (July 09, 2024) NOTES: