-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
908828b
commit 11af9a2
Showing
11 changed files
with
180 additions
and
59 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
EXPERIMENTS: | ||
|
||
Experiments are only enabled in alpha releases of Terraform CLI. The following features are not yet available in stable releases. | ||
|
||
- `terraform test` accepts a new option `-junit-xml=FILENAME`. If specified, and if the test configuration is valid enough to begin executing, then Terraform writes a JUnit XML test result report to the given filename, describing similar information as included in the normal test output. ([#34291](https://github.com/hashicorp/terraform/issues/34291)) | ||
- The new command `terraform rpcapi` exposes some Terraform Core functionality through an RPC interface compatible with [`go-plugin`](https://github.com/hashicorp/go-plugin). The exact RPC API exposed here is currently subject to change at any time, because it's here primarily as a vehicle to support the [Terraform Stacks](https://www.hashicorp.com/blog/terraform-stacks-explained) private preview and so will be broken if necessary to respond to feedback from private preview participants, or possibly for other reasons. Do not use this mechanism yet outside of Terraform Stacks private preview. | ||
- 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. This experiment is under active development, and so it's not yet useful to participate in this experiment | ||
|
||
## Previous Releases | ||
|
||
For information on prior major and minor releases, refer to their changelogs: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
- [v1.10](https://github.com/hashicorp/terraform/blob/v1.10/CHANGELOG.md) | ||
- [v1.9](https://github.com/hashicorp/terraform/blob/v1.9/CHANGELOG.md) | ||
- [v1.8](https://github.com/hashicorp/terraform/blob/v1.8/CHANGELOG.md) | ||
- [v1.7](https://github.com/hashicorp/terraform/blob/v1.7/CHANGELOG.md) | ||
- [v1.6](https://github.com/hashicorp/terraform/blob/v1.6/CHANGELOG.md) | ||
- [v1.5](https://github.com/hashicorp/terraform/blob/v1.5/CHANGELOG.md) | ||
- [v1.4](https://github.com/hashicorp/terraform/blob/v1.4/CHANGELOG.md) | ||
- [v1.3](https://github.com/hashicorp/terraform/blob/v1.3/CHANGELOG.md) | ||
- [v1.2](https://github.com/hashicorp/terraform/blob/v1.2/CHANGELOG.md) | ||
- [v1.1](https://github.com/hashicorp/terraform/blob/v1.1/CHANGELOG.md) | ||
- [v1.0](https://github.com/hashicorp/terraform/blob/v1.0/CHANGELOG.md) | ||
- [v0.15](https://github.com/hashicorp/terraform/blob/v0.15/CHANGELOG.md) | ||
- [v0.14](https://github.com/hashicorp/terraform/blob/v0.14/CHANGELOG.md) | ||
- [v0.13](https://github.com/hashicorp/terraform/blob/v0.13/CHANGELOG.md) | ||
- [v0.12](https://github.com/hashicorp/terraform/blob/v0.12/CHANGELOG.md) | ||
- [v0.11 and earlier](https://github.com/hashicorp/terraform/blob/v0.11/CHANGELOG.md) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: ENHANCEMENTS | ||
body: "`init`: Provider installation will utilise credentials configured in a `.netrc` file for the download and shasum URLs returned by provider registries." | ||
time: 2025-01-02T13:00:22.419624+01:00 | ||
custom: | ||
Issue: "35843" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: ENHANCEMENTS | ||
body: "New command `modules -json`: Displays a full list of all installed modules in a working directory, including whether each module is currently referenced by the working directory's configuration." | ||
time: 2025-01-02T13:10:22.419624+01:00 | ||
custom: | ||
Issue: "35884" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) HashiCorp, Inc. | ||
# SPDX-License-Identifier: BUSL-1.1 | ||
|
||
|
||
changesDir: .changes | ||
unreleasedDir: unreleased | ||
versionFooterPath: version_footer.tpl.md | ||
changelogPath: CHANGELOG.md | ||
versionExt: md | ||
versionFormat: '## {{.Version}} ({{.Time.Format "January 2, 2006"}})' | ||
kindFormat: "{{.Kind}}:" | ||
changeFormat: "* {{.Body}} {{- if .Custom.Issue }} ([#{{.Custom.Issue}}](https://github.com/hashicorp/terraform/issues/{{.Custom.Issue}})){{- end}}" | ||
custom: | ||
- key: Issue | ||
label: Issue/PR Number | ||
type: int | ||
minInt: 1 | ||
kinds: | ||
- label: NEW FEATURES | ||
- label: ENHANCEMENTS | ||
- label: BUG FIXES | ||
- label: NOTES | ||
- label: UPGRADE NOTES | ||
- label: BREAKING CHANGES | ||
newlines: | ||
afterChangelogHeader: 0 | ||
beforeKind: 1 | ||
afterKind: 1 | ||
afterChange: 1 | ||
afterVersion: 1 | ||
beforeChangelogVersion: 0 | ||
endOfVersion: 2 | ||
envPrefix: CHANGIE_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters