Update CHANGELOG.md

This commit is contained in:
Alisdair McDiarmid 2020-08-24 10:17:06 -04:00 committed by GitHub
parent c5d9935c0e
commit d26ee0ea37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@ BUG FIXES:
* cli: The `-target` option to `terraform plan` and `terraform apply` now correctly handles addresses containing module instance indexes. [GH-25760]
* cli: `terraform state mv` can now move the last resource from a module without panicking. [GH-25523]
* cli: If the output of `terraform version` contains an outdated version notice, this is now printed after the version number and not before. [GH-25811]
* command: Prevent creation of workspaces with invalid names via the `TF_WORKSPACE` environment variable, and allow any existing invalid workspaces to be deleted. [GH-25262]
* command: Fix error when multiple `-no-color` flags are set on the command line. [GH-25847]
* command: Fix backend config override validation, allowing the use of `-backend-config` override files with the enhanced remote backend. [GH-25960]
* core: State snapshots now use a consistent ordering for resources that have the same name across different modules. Previously the ordering was undefined. [GH-25498]
* core: A `dynamic` block producing an unknown number of blocks will no longer incorrectly produce the error "Provider produced inconsistent final plan" when the block type is backed by a set of objects. [GH-25662]
* core: Terraform will now silently drop attributes that appear in the state but are not present in the corresponding resource type schema, on the assumption that those attributes existed in a previous version of the provider and have now been removed. [GH-25779]