Skip to content

Commit cbd4c30

Browse files
jamestoyergithub-actions[bot]
authored andcommitted
Update Terraform Chocolatey packages
1 parent 3996611 commit cbd4c30

3 files changed

Lines changed: 10 additions & 41 deletions

File tree

terraform/terraform.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"1.10": "1.10.5",
1313
"1.11": "1.11.4",
1414
"1.12": "1.12.2",
15-
"1.13": "1.13.2",
15+
"1.13": "1.13.3",
1616
"1.14": "1.14.0-alpha20250911"
1717
}

terraform/terraform.nuspec

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
66
<id>terraform</id>
77
<title>Terraform</title>
8-
<version>1.14.0-alpha20250911</version>
8+
<version>1.13.3</version>
99
<authors>HashiCorp</authors>
1010
<owners>James Toyer</owners>
1111
<summary>Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions.</summary>
@@ -22,55 +22,24 @@ The key features of Terraform are:
2222
For more information, see the [introduction section](http://www.terraform.io/intro) of the Terraform website.
2323
</description>
2424
<releaseNotes>
25-
## 1.14.0-alpha20250911 (September 11, 2025)
26-
27-
28-
NEW FEATURES:
29-
30-
* A new GenerateResourceConfiguration RPC allows providers to create more precise configuration values during import. ([#37515](https://github.com/hashicorp/terraform/issues/37515))
31-
32-
33-
ENHANCEMENTS:
34-
35-
* terraform test: expected diagnostics will be included in test output when running in verbose mode" ([#37362](https://github.com/hashicorp/terraform/issues/37362))
36-
37-
* terraform test: ignore prevent_destroy attribute during when cleaning up tests" ([#37364](https://github.com/hashicorp/terraform/issues/37364))
25+
## 1.13.3 (September 17, 2025)
3826

3927

4028
BUG FIXES:
4129

42-
* 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))
43-
44-
* 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))
45-
46-
47-
UPGRADE NOTES:
48-
49-
* The parallelism of Terraform operations within container runtimes may be reduced depending on the CPU bandwidth limit setting. ([#37436](https://github.com/hashicorp/terraform/issues/37436))
50-
51-
* Building Terraform 1.14 requires macOS Monterey or later (due to being built on Go 1.25 which imposes these requirements) ([#37436](https://github.com/hashicorp/terraform/issues/37436))
52-
53-
54-
EXPERIMENTS:
55-
56-
Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases.
30+
* variable validation: keep sensitive and ephemeral metadata when evaluating variable conditions. ([#37595](https://github.com/hashicorp/terraform/issues/37595))
5731

58-
- 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.
59-
- `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.
60-
- `terraform test`: `backend` blocks and `skip_cleanup` attributes:
61-
- 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.
62-
- 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.
6332

6433
## Previous Releases
65-
For more information on previous releases, check out the changelog on [GitHub](https://github.com/hashicorp/terraform/blob/v1.14.0-alpha20250911/CHANGELOG.md).</releaseNotes>
34+
For more information on previous releases, check out the changelog on [GitHub](https://github.com/hashicorp/terraform/blob/v1.13.3/CHANGELOG.md).</releaseNotes>
6635
<projectUrl>http://www.terraform.io</projectUrl>
6736
<docsUrl>https://www.terraform.io/docs/index.html</docsUrl>
6837
<bugTrackerUrl>https://github.com/hashicorp/terraform/issues</bugTrackerUrl>
6938
<projectSourceUrl>https://github.com/hashicorp/terraform</projectSourceUrl>
7039
<packageSourceUrl>https://github.com/jamestoyer/chocolatey-packages</packageSourceUrl>
7140
<tags>terraform hashicorp</tags>
7241
<copyright>HashiCorp 2015-2024</copyright>
73-
<licenseUrl>https://github.com/hashicorp/terraform/blob/v1.14.0-alpha20250911/LICENSE</licenseUrl>
42+
<licenseUrl>https://github.com/hashicorp/terraform/blob/v1.13.3/LICENSE</licenseUrl>
7443
<requireLicenseAcceptance>false</requireLicenseAcceptance>
7544
<!-- Important note about https://cdn.rawgit.com: Files are cached permanently after the first request. Use commit URLs when updating the icon. -->
7645
<iconUrl>https://raw.githubusercontent.com/jamestoyer/chocolatey-packages/58ab86c08224c2ba79af2080346c53c1cc440afc/terraform/icons/terraform.png</iconUrl>

terraform/tools/chocolateyInstall.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
$ErrorActionPreference = 'Stop'
22

33
# DO NOT CHANGE THESE MANUALLY. USE update.ps1
4-
$url = 'https://releases.hashicorp.com/terraform/1.14.0-alpha20250911/terraform_1.14.0-alpha20250911_windows_386.zip'
5-
$url64 = 'https://releases.hashicorp.com/terraform/1.14.0-alpha20250911/terraform_1.14.0-alpha20250911_windows_amd64.zip'
6-
$checksum = '32671cd21b44620b572a287f0eb3d6a7717e6c933b82c0c590bf57857593b753'
7-
$checksum64 = 'cd8cb589782593bf1d39499fd5656e27c80e0b66ac9c82575e02bcf8b0ad6968'
4+
$url = 'https://releases.hashicorp.com/terraform/1.13.3/terraform_1.13.3_windows_386.zip'
5+
$url64 = 'https://releases.hashicorp.com/terraform/1.13.3/terraform_1.13.3_windows_amd64.zip'
6+
$checksum = '9ea6b7a0e32e1236e13f0f2bfd4263bb1935e8c16b87f1ec6130ea6492580e4d'
7+
$checksum64 = 'e75a97238f2dc43ab90fca1af554c18f995b16a4b06a4ec27bcdbab52c1d2dc8'
88

99
$unzipLocation = Split-Path -Parent $MyInvocation.MyCommand.Definition
1010

0 commit comments

Comments
 (0)