From 5901298b7833445abac56013c61ce7fb57df81b1 Mon Sep 17 00:00:00 2001 From: Matt Dotson Date: Wed, 2 Oct 2024 12:26:52 -0700 Subject: [PATCH] Prepare for release of v3.1 (#481) * Refactor changeFormat in .changie.yaml to use Microsoft repository URL * update changelog --------- Co-authored-by: github-actions[bot] --- .changes/3.1.0.md | 11 +++++++++++ .changes/unreleased/added-20240930-125638.yaml | 5 ----- .changes/unreleased/added-20241002-142330.yaml | 5 ----- .changes/unreleased/fixed-20240927-111725.yaml | 5 ----- .changes/unreleased/fixed-20241001-211351.yaml | 5 ----- .changie.yaml | 16 ++++++++-------- CHANGELOG.md | 12 ++++++++++++ 7 files changed, 31 insertions(+), 28 deletions(-) create mode 100644 .changes/3.1.0.md delete mode 100644 .changes/unreleased/added-20240930-125638.yaml delete mode 100644 .changes/unreleased/added-20241002-142330.yaml delete mode 100644 .changes/unreleased/fixed-20240927-111725.yaml delete mode 100644 .changes/unreleased/fixed-20241001-211351.yaml diff --git a/.changes/3.1.0.md b/.changes/3.1.0.md new file mode 100644 index 000000000..aad86f750 --- /dev/null +++ b/.changes/3.1.0.md @@ -0,0 +1,11 @@ +## 3.1.0 - 2024-10-02 + +### ✨ Added + +* [#471](https://github.com/microsoft/terraform-provider-power-platform/issues/471) adding `unique_name` to `powerplatform_environments` & `powerplatform_environment` +* [#467](https://github.com/microsoft/terraform-provider-power-platform/issues/467) added `disable_on_destroy` attribute to `powerplatform_record` + +### 🪲 Fixed + +* [#468](https://github.com/microsoft/terraform-provider-power-platform/issues/468) `powerplatform_environment`: `environment_type` change triggers update not recreate +* [#477](https://github.com/microsoft/terraform-provider-power-platform/issues/477) Fixed `powerplatform_rest` resources that only have a destroy diff --git a/.changes/unreleased/added-20240930-125638.yaml b/.changes/unreleased/added-20240930-125638.yaml deleted file mode 100644 index d909f0fff..000000000 --- a/.changes/unreleased/added-20240930-125638.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: added -body: adding unique_name to powerplatform_environments & powerplatform_environment -time: 2024-09-30T12:56:38.478335764Z -custom: - Issue: "471" diff --git a/.changes/unreleased/added-20241002-142330.yaml b/.changes/unreleased/added-20241002-142330.yaml deleted file mode 100644 index e155dbf97..000000000 --- a/.changes/unreleased/added-20241002-142330.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: added -body: added `disable_on_destroy` attribute to powerplatform_record -time: 2024-10-02T14:23:30.934797698Z -custom: - Issue: "467" diff --git a/.changes/unreleased/fixed-20240927-111725.yaml b/.changes/unreleased/fixed-20240927-111725.yaml deleted file mode 100644 index eb961a5e3..000000000 --- a/.changes/unreleased/fixed-20240927-111725.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: 'powerplatform_environment: environment_type change triggers update not recreate' -time: 2024-09-27T11:17:25.556290715Z -custom: - Issue: "468" diff --git a/.changes/unreleased/fixed-20241001-211351.yaml b/.changes/unreleased/fixed-20241001-211351.yaml deleted file mode 100644 index f5644c0e9..000000000 --- a/.changes/unreleased/fixed-20241001-211351.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Fixed powerplatform_rest resources that only have a destroy -time: 2024-10-01T21:13:51.168664977Z -custom: - Issue: "477" diff --git a/.changie.yaml b/.changie.yaml index 67dc2ce37..b2341d1ec 100644 --- a/.changie.yaml +++ b/.changie.yaml @@ -5,29 +5,29 @@ changelogPath: CHANGELOG.md versionExt: md versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}' kindFormat: '### {{.Kind}}' -changeFormat: "* [#{{.Custom.Issue}}](https://github.com/{{.Env.GITHUB_REPOSITORY}}/issues/{{.Custom.Issue}}) {{.Body}}" +changeFormat: "* [#{{.Custom.Issue}}](https://github.com/microsoft/terraform-provider-power-platform/issues/{{.Custom.Issue}}) {{.Body}}" kinds: - label: 💥 Breaking key: breaking - # auto: major + auto: major - label: ✨ Added key: added - # auto: minor + auto: minor - label: 💫 Changed key: changed - # auto: minor + auto: minor - label: ⚰️ Deprecated key: deprecated - # auto: minor + auto: minor - label: 🗑️ Removed key: removed - # auto: major + auto: major - label: 🪲 Fixed key: fixed - # auto: patch + auto: patch - label: 🚨 Security key: security - # auto: patch + auto: patch newlines: afterChangelogHeader: 1 beforeChangelogVersion: 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 915ca8589..0471700ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## 3.1.0 - 2024-10-02 + +### ✨ Added + +* [#471](https://github.com/microsoft/terraform-provider-power-platform/issues/471) adding `unique_name` to `powerplatform_environments` & `powerplatform_environment` +* [#467](https://github.com/microsoft/terraform-provider-power-platform/issues/467) added `disable_on_destroy` attribute to `powerplatform_record` + +### 🪲 Fixed + +* [#468](https://github.com/microsoft/terraform-provider-power-platform/issues/468) `powerplatform_environment`: `environment_type` change triggers update not recreate +* [#477](https://github.com/microsoft/terraform-provider-power-platform/issues/477) Fixed `powerplatform_rest` resources that only have a destroy + ## 3.0.0 - 2024-09-24 ### 💥 Breaking