Release v0.14.0-alpha20200910

This commit is contained in:
hashicorp-ci 2020-09-10 15:17:37 +00:00
parent f7e6e83a17
commit 31917ed59e
No known key found for this signature in database
GPG Key ID: 51852D87348FFC4C
2 changed files with 7 additions and 7 deletions

View File

@ -2,17 +2,17 @@
ENHANCEMENTS:
* cli: A new global command line option `-chdir=...`, placed before the selected subcommand, instructs Terraform to switch to a different working directory before executing the subcommand. This is similar to switching to a new directory with `cd` before running Terraform, but it avoids changing the state of the calling shell. [GH-26087]
* command: Added an experimental concise diff renderer. By default, Terraform plans now hide most unchanged fields, only displaying the most relevant changes and some identifying context. This experiment can be disabled by setting a `TF_X_CONCISE_DIFF` environment variable to `0`. [GH-26187]
* cli: A new global command line option `-chdir=...`, placed before the selected subcommand, instructs Terraform to switch to a different working directory before executing the subcommand. This is similar to switching to a new directory with `cd` before running Terraform, but it avoids changing the state of the calling shell. ([#26087](https://github.com/hashicorp/terraform/issues/26087))
* command: Added an experimental concise diff renderer. By default, Terraform plans now hide most unchanged fields, only displaying the most relevant changes and some identifying context. This experiment can be disabled by setting a `TF_X_CONCISE_DIFF` environment variable to `0`. ([#26187](https://github.com/hashicorp/terraform/issues/26187))
BREAKING CHANGES:
* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. [GH-26135]
* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. ([#26135](https://github.com/hashicorp/terraform/issues/26135))
BUG FIXES:
* command/clistate: return an error on a state unlock failure [GH-25729]
* lang/funcs: fix panic when element() is called with a negative offset [GH-26079]
* states/remote: fix `state push -force` to work for all backends [GH-26190]
* command/clistate: return an error on a state unlock failure [[#25729](https://github.com/hashicorp/terraform/issues/25729)]
* lang/funcs: fix panic when element() is called with a negative offset ([#26079](https://github.com/hashicorp/terraform/issues/26079))
* states/remote: fix `state push -force` to work for all backends ([#26190](https://github.com/hashicorp/terraform/issues/26190))
## Previous Releases

View File

@ -16,7 +16,7 @@ var Version = "0.14.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var Prerelease = "dev"
var Prerelease = "alpha20200910"
// SemVer is an instance of version.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a