From b7497c5cc4d00702551fc69f9a7ae1264bcb5bf8 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Tue, 5 Mar 2024 17:08:37 +0000 Subject: [PATCH] Update changelog --- .changes/1.6.1.md | 12 ++++++++++++ .changes/unreleased/BUG FIXES-20240228-103338.yaml | 5 ----- .changes/unreleased/BUG FIXES-20240228-151959.yaml | 6 ------ .changes/unreleased/BUG FIXES-20240228-152155.yaml | 6 ------ .changes/unreleased/NOTES-20240229-142101.yaml | 7 ------- CHANGELOG.md | 12 ++++++++++++ 6 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 .changes/1.6.1.md delete mode 100644 .changes/unreleased/BUG FIXES-20240228-103338.yaml delete mode 100644 .changes/unreleased/BUG FIXES-20240228-151959.yaml delete mode 100644 .changes/unreleased/BUG FIXES-20240228-152155.yaml delete mode 100644 .changes/unreleased/NOTES-20240229-142101.yaml diff --git a/.changes/1.6.1.md b/.changes/1.6.1.md new file mode 100644 index 000000000..878b4a512 --- /dev/null +++ b/.changes/1.6.1.md @@ -0,0 +1,12 @@ +## 1.6.1 (March 05, 2024) + +NOTES: + +* all: The `v1.6.0` release updated this Go module to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers building on earlier Go versions may experience errors ([#937](https://github.com/hashicorp/terraform-plugin-framework/issues/937)) + +BUG FIXES: + +* resource/schema: Ensured invalid attribute default value errors are raised ([#930](https://github.com/hashicorp/terraform-plugin-framework/issues/930)) +* function: Added implementation validation to `function.Definition` to ensure all parameter names (including the variadic parameter) are unique. ([#926](https://github.com/hashicorp/terraform-plugin-framework/issues/926)) +* function: Updated the default parameter name to include the position of the parameter (i.e. `param1`, `param2`, etc.). Variadic parameters will default to `varparam`. ([#926](https://github.com/hashicorp/terraform-plugin-framework/issues/926)) + diff --git a/.changes/unreleased/BUG FIXES-20240228-103338.yaml b/.changes/unreleased/BUG FIXES-20240228-103338.yaml deleted file mode 100644 index 9bbdc6947..000000000 --- a/.changes/unreleased/BUG FIXES-20240228-103338.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: 'resource/schema: Ensured invalid attribute default value errors are raised' -time: 2024-02-28T10:33:38.517635-05:00 -custom: - Issue: "930" diff --git a/.changes/unreleased/BUG FIXES-20240228-151959.yaml b/.changes/unreleased/BUG FIXES-20240228-151959.yaml deleted file mode 100644 index 59b5f8420..000000000 --- a/.changes/unreleased/BUG FIXES-20240228-151959.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'function: Added implementation validation to `function.Definition` to ensure - all parameter names (including the variadic parameter) are unique.' -time: 2024-02-28T15:19:59.843244-05:00 -custom: - Issue: "926" diff --git a/.changes/unreleased/BUG FIXES-20240228-152155.yaml b/.changes/unreleased/BUG FIXES-20240228-152155.yaml deleted file mode 100644 index 6c384fd91..000000000 --- a/.changes/unreleased/BUG FIXES-20240228-152155.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'function: Updated the default parameter name to include the position of the - parameter (i.e. `param1`, `param2`, etc.). Variadic parameters will default to `varparam`.' -time: 2024-02-28T15:21:55.182389-05:00 -custom: - Issue: "926" diff --git a/.changes/unreleased/NOTES-20240229-142101.yaml b/.changes/unreleased/NOTES-20240229-142101.yaml deleted file mode 100644 index 4adfa3d35..000000000 --- a/.changes/unreleased/NOTES-20240229-142101.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: NOTES -body: 'all: The `v1.6.0` release updated this Go module to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). - It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers - building on earlier Go versions may experience errors' -time: 2024-02-29T14:21:01.157532Z -custom: - Issue: "937" diff --git a/CHANGELOG.md b/CHANGELOG.md index 768f54ab6..40eac57cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.6.1 (March 05, 2024) + +NOTES: + +* all: The `v1.6.0` release updated this Go module to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers building on earlier Go versions may experience errors ([#937](https://github.com/hashicorp/terraform-plugin-framework/issues/937)) + +BUG FIXES: + +* resource/schema: Ensured invalid attribute default value errors are raised ([#930](https://github.com/hashicorp/terraform-plugin-framework/issues/930)) +* function: Added implementation validation to `function.Definition` to ensure all parameter names (including the variadic parameter) are unique. ([#926](https://github.com/hashicorp/terraform-plugin-framework/issues/926)) +* function: Updated the default parameter name to include the position of the parameter (i.e. `param1`, `param2`, etc.). Variadic parameters will default to `varparam`. ([#926](https://github.com/hashicorp/terraform-plugin-framework/issues/926)) + ## 1.6.0 (February 28, 2024) BREAKING CHANGES: