From a37a8f931be9019922cc9077d1fc3eecb0475e3b Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Wed, 28 Jun 2023 16:26:04 +0000 Subject: [PATCH] Update changelog --- .changes/2.27.0.md | 11 +++++++++++ .changes/unreleased/ENHANCEMENTS-20230601-101225.yaml | 6 ------ .changes/unreleased/ENHANCEMENTS-20230623-102412.yaml | 6 ------ .changes/unreleased/NOTES-20230623-102528.yaml | 7 ------- CHANGELOG.md | 11 +++++++++++ 5 files changed, 22 insertions(+), 19 deletions(-) create mode 100644 .changes/2.27.0.md delete mode 100644 .changes/unreleased/ENHANCEMENTS-20230601-101225.yaml delete mode 100644 .changes/unreleased/ENHANCEMENTS-20230623-102412.yaml delete mode 100644 .changes/unreleased/NOTES-20230623-102528.yaml diff --git a/.changes/2.27.0.md b/.changes/2.27.0.md new file mode 100644 index 0000000000..d58a8fdac9 --- /dev/null +++ b/.changes/2.27.0.md @@ -0,0 +1,11 @@ +## 2.27.0 (June 28, 2023) + +NOTES: + +* helper/schema: Consumers directly referencing the `Resource` type `Schema` field should switch to the `SchemaMap` method to ensure new `SchemaFunc` field data is properly retrieved ([#1217](https://github.com/hashicorp/terraform-plugin-sdk/issues/1217)) + +ENHANCEMENTS: + +* all: Improved SDK logging performance when messages would be skipped due to configured logging level ([#1202](https://github.com/hashicorp/terraform-plugin-sdk/issues/1202)) +* helper/schema: Added `Resource` type `SchemaFunc` field and `SchemaMap` method, which can reduce resident memory usage with large schemas ([#1217](https://github.com/hashicorp/terraform-plugin-sdk/issues/1217)) + diff --git a/.changes/unreleased/ENHANCEMENTS-20230601-101225.yaml b/.changes/unreleased/ENHANCEMENTS-20230601-101225.yaml deleted file mode 100644 index 0d416e8970..0000000000 --- a/.changes/unreleased/ENHANCEMENTS-20230601-101225.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'all: Improved SDK logging performance when messages would be skipped due to - configured logging level' -time: 2023-06-01T10:12:25.753902-04:00 -custom: - Issue: "1202" diff --git a/.changes/unreleased/ENHANCEMENTS-20230623-102412.yaml b/.changes/unreleased/ENHANCEMENTS-20230623-102412.yaml deleted file mode 100644 index 1469e81572..0000000000 --- a/.changes/unreleased/ENHANCEMENTS-20230623-102412.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'helper/schema: Added `Resource` type `SchemaFunc` field and `SchemaMap` method, - which can reduce resident memory usage with large schemas' -time: 2023-06-23T10:24:12.025356-04:00 -custom: - Issue: "1217" diff --git a/.changes/unreleased/NOTES-20230623-102528.yaml b/.changes/unreleased/NOTES-20230623-102528.yaml deleted file mode 100644 index 5f791f4ffd..0000000000 --- a/.changes/unreleased/NOTES-20230623-102528.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: NOTES -body: 'helper/schema: Consumers directly referencing the `Resource` type `Schema` - field should switch to the `SchemaMap` method to ensure new `SchemaFunc` field - data is properly retrieved' -time: 2023-06-23T10:25:28.864812-04:00 -custom: - Issue: "1217" diff --git a/CHANGELOG.md b/CHANGELOG.md index b28ced5f25..8d017174c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 2.27.0 (June 28, 2023) + +NOTES: + +* helper/schema: Consumers directly referencing the `Resource` type `Schema` field should switch to the `SchemaMap` method to ensure new `SchemaFunc` field data is properly retrieved ([#1217](https://github.com/hashicorp/terraform-plugin-sdk/issues/1217)) + +ENHANCEMENTS: + +* all: Improved SDK logging performance when messages would be skipped due to configured logging level ([#1202](https://github.com/hashicorp/terraform-plugin-sdk/issues/1202)) +* helper/schema: Added `Resource` type `SchemaFunc` field and `SchemaMap` method, which can reduce resident memory usage with large schemas ([#1217](https://github.com/hashicorp/terraform-plugin-sdk/issues/1217)) + ## 2.26.1 (March 21, 2023) BUG FIXES: