terraform/CHANGELOG.md

28 lines
2.3 KiB
Markdown
Raw Normal View History

## 0.14.0 (Unreleased)
2020-05-29 01:13:23 +02:00
2020-09-05 00:33:43 +02:00
ENHANCEMENTS:
2020-09-15 16:04:49 +02:00
* backend/consul: Split state into chunks when outgrowing the limit of the Consul KV store. This allows storing state larger than the Consul 512KB limit. [GH-25856]
2020-09-10 17:17:37 +02:00
* 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))
2020-09-14 16:25:51 +02:00
* repl: Improved the renderer used by `terraform console` and for rendering outputs. Terraform now has distinct rendering of lists, sets, and tuples, and correctly renders objects with `null` attribute values. [GH-26189]
2020-09-05 00:33:43 +02:00
2020-09-08 14:21:17 +02:00
BREAKING CHANGES:
2020-09-10 17:17:37 +02:00
* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. ([#26135](https://github.com/hashicorp/terraform/issues/26135))
2020-09-08 14:21:17 +02:00
2020-09-03 17:02:35 +02:00
BUG FIXES:
2020-09-11 17:21:10 +02:00
* backend/consul: Fix bug which prevented state locking when path has trailing `/` [GH-25842]
2020-09-10 17:17:37 +02:00
* command/clistate: return an error on a state unlock failure [[#25729](https://github.com/hashicorp/terraform/issues/25729)]
2020-09-11 16:55:05 +02:00
* configs: Report an error when provider configuration attributes are incorrectly added to a `required_providers` object. [GH-26184]
2020-09-10 17:17:37 +02:00
* 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))
2020-09-03 17:02:35 +02:00
2020-04-28 18:27:10 +02:00
## Previous Releases
For information on prior major releases, see their changelogs:
2018-10-26 15:05:44 +02:00
* [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)