From d0b4f084cf53b4eda36cceda31ec4f21073c756a Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-provider-devex Date: Mon, 30 Oct 2023 11:20:22 +0000 Subject: [PATCH] Update changelog --- .changes/0.2.0.md | 11 +++++++++++ .changes/unreleased/ENHANCEMENTS-20231019-120611.yaml | 5 ----- .changes/unreleased/ENHANCEMENTS-20231020-170209.yaml | 6 ------ .changes/unreleased/FEATURES-20231026-162053.yaml | 6 ------ CHANGELOG.md | 11 +++++++++++ 5 files changed, 22 insertions(+), 17 deletions(-) create mode 100644 .changes/0.2.0.md delete mode 100644 .changes/unreleased/ENHANCEMENTS-20231019-120611.yaml delete mode 100644 .changes/unreleased/ENHANCEMENTS-20231020-170209.yaml delete mode 100644 .changes/unreleased/FEATURES-20231026-162053.yaml diff --git a/.changes/0.2.0.md b/.changes/0.2.0.md new file mode 100644 index 0000000..7f3ad7f --- /dev/null +++ b/.changes/0.2.0.md @@ -0,0 +1,11 @@ +## 0.2.0 (October 30, 2023) + +FEATURES: + +* Added schema.ignores option to generator config for resources, data sources, and providers. Allows excluding attributes from OAS mapping ([#81](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/81)) + +ENHANCEMENTS: + +* Added data source support for response body arrays ([#16](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/16)) +* Schemas that have the `properties` keyword defined with no type will now default to `object` ([#79](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/79)) + diff --git a/.changes/unreleased/ENHANCEMENTS-20231019-120611.yaml b/.changes/unreleased/ENHANCEMENTS-20231019-120611.yaml deleted file mode 100644 index 67aff74..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20231019-120611.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: ENHANCEMENTS -body: Added data source support for response body arrays -time: 2023-10-19T12:06:11.101382-04:00 -custom: - Issue: "16" diff --git a/.changes/unreleased/ENHANCEMENTS-20231020-170209.yaml b/.changes/unreleased/ENHANCEMENTS-20231020-170209.yaml deleted file mode 100644 index 44960fc..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20231020-170209.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: Schemas that have the `properties` keyword defined with no type will now default - to `object` -time: 2023-10-20T17:02:09.205328-04:00 -custom: - Issue: "79" diff --git a/.changes/unreleased/FEATURES-20231026-162053.yaml b/.changes/unreleased/FEATURES-20231026-162053.yaml deleted file mode 100644 index 90adf35..0000000 --- a/.changes/unreleased/FEATURES-20231026-162053.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: Added schema.ignores option to generator config for resources, data sources, - and providers. Allows excluding attributes from OAS mapping -time: 2023-10-26T16:20:53.404821-04:00 -custom: - Issue: "81" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ded3b4..5e2383f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.2.0 (October 30, 2023) + +FEATURES: + +* Added schema.ignores option to generator config for resources, data sources, and providers. Allows excluding attributes from OAS mapping ([#81](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/81)) + +ENHANCEMENTS: + +* Added data source support for response body arrays ([#16](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/16)) +* Schemas that have the `properties` keyword defined with no type will now default to `object` ([#79](https://github.com/hashicorp/terraform-plugin-codegen-openapi/issues/79)) + ## 0.1.0 (October 17, 2023) NOTES: