From 100e7fb3af5fedf1405784127b8156ab6b02d67a Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Mon, 3 Jul 2023 16:21:58 +0000 Subject: [PATCH] Update changelog --- .changes/0.18.0.md | 12 ++++++++++++ .changes/unreleased/BUG FIXES-20230630-103655.yaml | 6 ------ .changes/unreleased/BUG FIXES-20230630-144701.yaml | 6 ------ .changes/unreleased/BUG FIXES-20230630-144945.yaml | 5 ----- .../unreleased/ENHANCEMENTS-20230630-143817.yaml | 6 ------ CHANGELOG.md | 12 ++++++++++++ 6 files changed, 24 insertions(+), 23 deletions(-) create mode 100644 .changes/0.18.0.md delete mode 100644 .changes/unreleased/BUG FIXES-20230630-103655.yaml delete mode 100644 .changes/unreleased/BUG FIXES-20230630-144701.yaml delete mode 100644 .changes/unreleased/BUG FIXES-20230630-144945.yaml delete mode 100644 .changes/unreleased/ENHANCEMENTS-20230630-143817.yaml diff --git a/.changes/0.18.0.md b/.changes/0.18.0.md new file mode 100644 index 00000000..d64b08ec --- /dev/null +++ b/.changes/0.18.0.md @@ -0,0 +1,12 @@ +## 0.18.0 (July 03, 2023) + +ENHANCEMENTS: + +* tftypes: Added `AttributePath` type `NextStep()` method, which returns the next step in the path without first copying via `Steps()` ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) + +BUG FIXES: + +* tftypes: Significantly reduced compute and memory usage of `Value` type walking and transformation ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) +* tftypes: Removed unnecessary memory allocations from `AttributePath` type `Equal()`, `LastStep()`, and `WithoutLastStep()` methods ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) +* tftypes: Removed unnecessary memory allocations from `NewValue()` function ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) + diff --git a/.changes/unreleased/BUG FIXES-20230630-103655.yaml b/.changes/unreleased/BUG FIXES-20230630-103655.yaml deleted file mode 100644 index 4ae13ffa..00000000 --- a/.changes/unreleased/BUG FIXES-20230630-103655.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'tftypes: Significantly reduced compute and memory usage of `Value` type - walking and transformation' -time: 2023-06-30T10:36:55.119505-04:00 -custom: - Issue: "307" diff --git a/.changes/unreleased/BUG FIXES-20230630-144701.yaml b/.changes/unreleased/BUG FIXES-20230630-144701.yaml deleted file mode 100644 index 311dd559..00000000 --- a/.changes/unreleased/BUG FIXES-20230630-144701.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: BUG FIXES -body: 'tftypes: Removed unnecessary memory allocations from `AttributePath` type - `Equal()`, `LastStep()`, and `WithoutLastStep()` methods' -time: 2023-06-30T14:47:01.127283-04:00 -custom: - Issue: "307" diff --git a/.changes/unreleased/BUG FIXES-20230630-144945.yaml b/.changes/unreleased/BUG FIXES-20230630-144945.yaml deleted file mode 100644 index 2ab382ad..00000000 --- a/.changes/unreleased/BUG FIXES-20230630-144945.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: 'tftypes: Removed unnecessary memory allocations from `NewValue()` function' -time: 2023-06-30T14:49:45.828209-04:00 -custom: - Issue: "307" diff --git a/.changes/unreleased/ENHANCEMENTS-20230630-143817.yaml b/.changes/unreleased/ENHANCEMENTS-20230630-143817.yaml deleted file mode 100644 index 133bfbd9..00000000 --- a/.changes/unreleased/ENHANCEMENTS-20230630-143817.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'tftypes: Added `AttributePath` type `NextStep()` method, which returns the - next step in the path without first copying via `Steps()`' -time: 2023-06-30T14:38:17.600608-04:00 -custom: - Issue: "307" diff --git a/CHANGELOG.md b/CHANGELOG.md index bcbea795..d420c7bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.18.0 (July 03, 2023) + +ENHANCEMENTS: + +* tftypes: Added `AttributePath` type `NextStep()` method, which returns the next step in the path without first copying via `Steps()` ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) + +BUG FIXES: + +* tftypes: Significantly reduced compute and memory usage of `Value` type walking and transformation ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) +* tftypes: Removed unnecessary memory allocations from `AttributePath` type `Equal()`, `LastStep()`, and `WithoutLastStep()` methods ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) +* tftypes: Removed unnecessary memory allocations from `NewValue()` function ([#307](https://github.com/hashicorp/terraform-plugin-go/issues/307)) + ## 0.17.0 (June 28, 2023) ENHANCEMENTS: