Release v0.14.7

pull/27807/head v0.14.7
hashicorp-ci 5 years ago
parent f2bc0cd2fd
commit fce896d6df
No known key found for this signature in database
GPG Key ID: 51852D87348FFC4C

@ -1,15 +1,15 @@
## 0.14.7 (Unreleased)
## 0.14.7 (February 17, 2021)
ENHANCEMENTS:
* cli: Emit an "already installed" event when a provider is found already installed [GH-27722]
* provisioner/remote-exec: Can now run in a mode that expects the remote system to be running Windows and excuting commands using the Windows command interpreter, rather than a Unix-style shell. Specify the `target_platform` as `"windows"` in the `connection` block. [GH-26865]
* cli: Emit an "already installed" event when a provider is found already installed ([#27722](https://github.com/hashicorp/terraform/issues/27722))
* provisioner/remote-exec: Can now run in a mode that expects the remote system to be running Windows and excuting commands using the Windows command interpreter, rather than a Unix-style shell. Specify the `target_platform` as `"windows"` in the `connection` block. ([#26865](https://github.com/hashicorp/terraform/issues/26865))
BUG FIXES:
* cli: Fix `show -json` not outputting the full module tree when some child modules have no resources [GH-27352]
* cli: Fix excessively slow rendering of very large multi-line string outputs [GH-27746]
* cli: Fix missing provider requirements in JSON plan when specified using `required_providers` instead of provider config [GH-27697]
* cli: Fix `show -json` not outputting the full module tree when some child modules have no resources ([#27352](https://github.com/hashicorp/terraform/issues/27352))
* cli: Fix excessively slow rendering of very large multi-line string outputs ([#27746](https://github.com/hashicorp/terraform/issues/27746))
* cli: Fix missing provider requirements in JSON plan when specified using `required_providers` instead of provider config ([#27697](https://github.com/hashicorp/terraform/issues/27697))
## 0.14.6 (February 04, 2021)

@ -16,7 +16,7 @@ var Version = "0.14.7"
// 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 = ""
// SemVer is an instance of version.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a

Loading…
Cancel
Save