opentofu/CHANGELOG.md

26 lines
1.4 KiB
Markdown
Raw Normal View History

2020-10-15 10:38:46 -05:00
## 0.15.0 (Unreleased)
2020-09-15 13:21:18 -05:00
2020-10-29 11:09:44 -05:00
UPGRADE NOTES:
2020-11-04 19:07:53 -06:00
* config: The `list` and `map` functions, both of which were deprecated since Terraform v0.12, are now removed. You can replace uses of these functions with `tolist([...])` and `tomap({...})` respectively. [GH-26818]
* cli: Interrupting execution will now cause terraform to exit with a non-0 status. [GH-26738]
* backend/atlas: the `atlas` backend, which was deprecated since v0.12, has been removed. [GH-26651]
2020-10-29 11:09:44 -05:00
2020-10-19 09:05:59 -05:00
ENHANCEMENTS:
2020-10-26 11:58:02 -05:00
* cli: Improved support for Windows console UI on Windows 10, including bold colors and underline for HCL diagnostics. [GH-26588]
2020-10-29 11:09:44 -05:00
* cli: The family of error messages with the summary "Invalid for_each argument" will now include some additional context about which external values contributed to the result. [GH-26747]
2020-10-19 09:05:59 -05:00
2020-10-21 13:12:48 -05:00
BUG FIXES:
2020-10-26 11:58:02 -05:00
* cli: Exit with an error if unable to gather input from the UI. For example, this may happen when running in a non-interactive environment but without `-input=false`. Previously Terraform would interpret these errors as empty strings, which could be confusing. [GH-26509]
2020-10-21 13:12:48 -05:00
2020-04-28 11:27:10 -05:00
## Previous Releases
For information on prior major releases, see their changelogs:
2018-10-26 08:05:44 -05:00
2020-10-15 10:38:46 -05:00
* [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)