From 715092ba1a271e668827d9b4e258c19a100f05e2 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-core Date: Wed, 5 Mar 2025 11:44:45 +0000 Subject: [PATCH] Prepare before 1.11.1 release --- .changes/1.11.1.md | 16 ++++++++++++++++ .changes/v1.11/BUG FIXES-20250225-083056.yaml | 5 ----- .changes/v1.11/BUG FIXES-20250226-140931.yaml | 5 ----- .changes/v1.11/BUG FIXES-20250226-181429.yaml | 5 ----- .changes/v1.11/BUG FIXES-20250303-125722.yaml | 5 ----- .changes/v1.11/BUG FIXES-20250303-144020.yaml | 5 ----- CHANGELOG.md | 18 +++++++++++++++++- version/VERSION | 2 +- 8 files changed, 34 insertions(+), 27 deletions(-) create mode 100644 .changes/1.11.1.md delete mode 100644 .changes/v1.11/BUG FIXES-20250225-083056.yaml delete mode 100644 .changes/v1.11/BUG FIXES-20250226-140931.yaml delete mode 100644 .changes/v1.11/BUG FIXES-20250226-181429.yaml delete mode 100644 .changes/v1.11/BUG FIXES-20250303-125722.yaml delete mode 100644 .changes/v1.11/BUG FIXES-20250303-144020.yaml diff --git a/.changes/1.11.1.md b/.changes/1.11.1.md new file mode 100644 index 000000000000..4f2a739a2883 --- /dev/null +++ b/.changes/1.11.1.md @@ -0,0 +1,16 @@ +## 1.11.1 (March 5, 2025) + + +BUG FIXES: + +* Temporarily revert updated Windows symlink handling until we can account for known existing configurations using non-symlink junctions. ([#36575](https://github.com/hashicorp/terraform/issues/36575)) + +* `terraform test`: Fix crash when a run block attempts to cleanup after a non-applyable plan. ([#36582](https://github.com/hashicorp/terraform/issues/36582)) + +* Updated dependency golang.org/x/oauth2 from v0.23.0 => v0.27.0 to integrate latest changes (fix for CVE-2025-22868) ([#36584](https://github.com/hashicorp/terraform/issues/36584)) + +* lang/funcs/transpose: Avoid crash due to map with null values ([#36611](https://github.com/hashicorp/terraform/issues/36611)) + +* Combining ephemeral and sensitive marks could fail when serializing planned changes ([#36619](https://github.com/hashicorp/terraform/issues/36619)) + + diff --git a/.changes/v1.11/BUG FIXES-20250225-083056.yaml b/.changes/v1.11/BUG FIXES-20250225-083056.yaml deleted file mode 100644 index daace46b28b0..000000000000 --- a/.changes/v1.11/BUG FIXES-20250225-083056.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: Temporarily revert updated Windows symlink handling until we can account for known existing configurations using non-symlink junctions. -time: 2025-02-25T08:30:56.226882-05:00 -custom: - Issue: "36575" diff --git a/.changes/v1.11/BUG FIXES-20250226-140931.yaml b/.changes/v1.11/BUG FIXES-20250226-140931.yaml deleted file mode 100644 index 7008e3f06433..000000000000 --- a/.changes/v1.11/BUG FIXES-20250226-140931.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: '`terraform test`: Fix crash when a run block attempts to cleanup after a non-applyable plan.' -time: 2025-02-26T14:09:31.83904+01:00 -custom: - Issue: "36582" diff --git a/.changes/v1.11/BUG FIXES-20250226-181429.yaml b/.changes/v1.11/BUG FIXES-20250226-181429.yaml deleted file mode 100644 index 71e173eaebb8..000000000000 --- a/.changes/v1.11/BUG FIXES-20250226-181429.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: Updated dependency golang.org/x/oauth2 from v0.23.0 => v0.27.0 to integrate latest changes (fix for CVE-2025-22868) -time: 2025-02-26T18:14:29.297297Z -custom: - Issue: "36584" diff --git a/.changes/v1.11/BUG FIXES-20250303-125722.yaml b/.changes/v1.11/BUG FIXES-20250303-125722.yaml deleted file mode 100644 index ca7b00822766..000000000000 --- a/.changes/v1.11/BUG FIXES-20250303-125722.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: 'lang/funcs/transpose: Avoid crash due to map with null values' -time: 2025-03-03T12:57:22.400359Z -custom: - Issue: "36611" diff --git a/.changes/v1.11/BUG FIXES-20250303-144020.yaml b/.changes/v1.11/BUG FIXES-20250303-144020.yaml deleted file mode 100644 index 0a1be9fa3cc0..000000000000 --- a/.changes/v1.11/BUG FIXES-20250303-144020.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: BUG FIXES -body: Combining ephemeral and sensitive marks could fail when serializing planned changes -time: 2025-03-03T14:40:20.606817-05:00 -custom: - Issue: "36619" diff --git a/CHANGELOG.md b/CHANGELOG.md index add7ae5c4124..98a7352398e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ -## 1.11.1 (Unreleased) +## 1.11.1 (March 5, 2025) + + +BUG FIXES: + +* Temporarily revert updated Windows symlink handling until we can account for known existing configurations using non-symlink junctions. ([#36575](https://github.com/hashicorp/terraform/issues/36575)) + +* `terraform test`: Fix crash when a run block attempts to cleanup after a non-applyable plan. ([#36582](https://github.com/hashicorp/terraform/issues/36582)) + +* Updated dependency golang.org/x/oauth2 from v0.23.0 => v0.27.0 to integrate latest changes (fix for CVE-2025-22868) ([#36584](https://github.com/hashicorp/terraform/issues/36584)) + +* lang/funcs/transpose: Avoid crash due to map with null values ([#36611](https://github.com/hashicorp/terraform/issues/36611)) + +* Combining ephemeral and sensitive marks could fail when serializing planned changes ([#36619](https://github.com/hashicorp/terraform/issues/36619)) + ## 1.11.0 (February 27, 2025) @@ -45,6 +59,8 @@ BUG FIXES: * backends: Fix crash when interrupting during interactive prompt for values ([#36448](https://github.com/hashicorp/terraform/issues/36448)) * Fixes hanging behavior seen when applying a saved plan with -auto-approve using the cloud backend ([#36453](https://github.com/hashicorp/terraform/issues/36453)) + + ## Previous Releases For information on prior major and minor releases, refer to their changelogs: diff --git a/version/VERSION b/version/VERSION index 095b66727677..720c7384c619 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -1.11.1-dev +1.11.1