terraform/CHANGELOG.md

23 lines
1.5 KiB
Markdown
Raw Normal View History

2020-02-12 20:57:24 +01:00
## 0.13.0 (Unreleased)
BREAKING CHANGES:
2020-02-21 03:16:54 +01:00
* command/import: remove the deprecated `-provider` command line argument [GH-24090]
2020-02-12 20:57:24 +01:00
#22862 fixed a bug where the `import` command was not properly attaching the configured provider for a resource to be imported, making the `-provider` command line argument unnecessary.
2020-02-21 03:16:54 +01:00
* config: Inside `provisioner` blocks that have `when = destroy` set, and inside any `connection` blocks that are used by such `provisioner` blocks, it is now an error to refer to any objects other than `self`, `count`, or `each` [GH-24083]
2020-02-14 03:33:06 +01:00
* config: The `merge` function now returns more precise type information, making it usable for values passed to `for_each` [GH-24032]
2020-02-25 16:23:23 +01:00
ENHANCEMENTS:
* config: `templatefile` function will now return a helpful error message if a given variable has an invalid name, rather than relying on a syntax error in the template parsing itself. [GH-24184]
2020-02-14 03:33:06 +01:00
BUG FIXES:
2020-03-03 19:48:19 +01:00
* cli: Fix `terraform state mv` to correctly set the resource each mode based on the target address [GH-24254]
2020-02-20 01:00:57 +01:00
* cli: The `terraform plan` command (and the implied plan run by `terraform apply` with no arguments) will now print any warnings that were generated even if there are no changes to be made. [GH-24095]
2020-02-14 03:33:06 +01:00
* core: Instances are now destroyed only using their stored state, removing many cycle errors [GH-24083]
2020-02-04 18:10:14 +01:00
---
For information on prior major releases, see their changelogs:
2018-10-26 15:05:44 +02:00
* [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)