Update CHANGELOG.md

Some initial notes on the core/provider split for those following along with commits.

More elaborate documentation will follow as the 0.10 release gets closer.
This commit is contained in:
Martin Atkins 2017-06-09 16:44:04 -07:00 committed by GitHub
parent fc56f13f1f
commit 5f24491ea6
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,9 @@
BACKWARDS INCOMPATIBILITIES / NOTES:
* Terraform providers are no longer distributed as part of the main Terraform distribution. Instead, they are installed automatically
as part of running `terraform init`. It is therefore now mandatory to run `terraform init` before any other operations that use
provider plugins, to ensure that the required plugins are installed and properly initialized.
* The `terraform env` family of commands have been renamed to `terraform workspace`, in response to feedback that the previous naming
was confusing due to collisions with other concepts of the same name. The commands still work the same as they did before, and
the `env` subcommand is still supported as an alias for backward compatibility. The `env` subcommand will be removed altogether in
@ -15,6 +18,7 @@ FEATURES:
IMPROVEMENTS:
* core: Providers no longer in the main Terraform distribution; installed automatically by init instead [GH-15208]
* core: `terraform env` command renamed to `terraform workspace` [GH-14952]
* provider/google: Add an additional delay when checking for sql operations [GH-15170]
* provider/rancher: Move to Rancher V2 API [GH-13908]