terraform/CHANGELOG.md

34 lines
3.0 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))
2020-09-22 03:19:13 +02:00
* core: `terraform plan` no longer uses a separate refresh phase, all resources are updated on-demand during planning [GH-26270]
2020-09-22 15:09:04 +02:00
* lang: Added `alltrue` function, which returns `true` if all elements in the given collection are `true`. This is primarily intended to make it easier to write variable validation conditions which operate on collections. [GH-25656]
2020-09-19 00:31:57 +02:00
* `terraform plan` and `terraform apply`: 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))
* `terraform login`: Added support for OAuth2 application scopes. [GH-26239]
* `terraform console`: 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-15 20:21:18 +02:00
* build: fix crash with terraform binary on openBSD [#26249]
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-22 16:57:47 +02:00
* core: Errors with data sources reading old data during refresh, failing to refresh, and not appearing to wait on resource dependencies are fixed by updates to the data source lifecycle and the merging of refresh and plan [GH-26270]
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-09-15 20:21:18 +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)