Skip to content

Commit 31291c5

Browse files
Prepare before 1.14.0-alpha20250911 release (#37590)
1 parent 31a982e commit 31291c5

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## 1.14.0 (Unreleased)
1+
## 1.14.0-alpha20250911 (September 11, 2025)
2+
3+
4+
NEW FEATURES:
5+
6+
* A new GenerateResourceConfiguration RPC allows providers to create more precise configuration values during import. ([#37515](https://github.com/hashicorp/terraform/issues/37515))
27

38

49
ENHANCEMENTS:
@@ -10,6 +15,8 @@ ENHANCEMENTS:
1015

1116
BUG FIXES:
1217

18+
* Retrieve all workspace variables while doing a `terraform import`, include variables inherited from variable sets but not overwritten by the workspace. ([#37241](https://github.com/hashicorp/terraform/issues/37241))
19+
1320
* Fix OSS backend proxy support by adding a proxy layer for OSS backend operations. Resolves hashicorp/terraform#36897. ([#36897](https://github.com/hashicorp/terraform/issues/36897))
1421

1522

@@ -25,6 +32,10 @@ EXPERIMENTS:
2532
Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.
2633

2734
- The experimental "deferred actions" feature, enabled by passing the `-allow-deferral` option to `terraform plan`, permits `count` and `for_each` arguments in `module`, `resource`, and `data` blocks to have unknown values and allows providers to react more flexibly to unknown values.
35+
- `terraform test cleanup`: The experimental `test cleanup` command. In experimental builds of Terraform, a manifest file and state files for each failed cleanup operation during test operations are saved within the `.terraform` local directory. The `test cleanup` command will attempt to clean up the local state files left behind automatically, without requiring manual intervention.
36+
- `terraform test`: `backend` blocks and `skip_cleanup` attributes:
37+
- Test authors can now specify `backend` blocks within `run` blocks in Terraform Test files. Run blocks with `backend` blocks will load state from the specified backend instead of starting from empty state on every execution. This allows test authors to keep long-running test infrastructure alive between test operations, saving time during regular test operations.
38+
- Test authors can now specify `skip_cleanup` attributes within test files and within run blocks. The `skip_cleanup` attribute tells `terraform test` not to clean up state files produced by run blocks with this attribute set to true. The state files for affected run blocks will be written to disk within the `.terraform` directory, where they can then be cleaned up manually using the also experimental `terraform test cleanup` command.
2839

2940
## Previous Releases
3041

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.0-dev
1+
1.14.0-alpha20250911

0 commit comments

Comments
 (0)