From 1510a33d2ab6d1409ec13c992a85afd7724e46b5 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 23 Sep 2020 10:18:57 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf3a29e7cb..a01339d450 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## 0.14.0 (Unreleased) +UPGRADE NOTES: +* configs: The `version` argument inside provider configuration blocks has been documented as deprecated since Terraform 0.12. As of 0.14 it will now also generate an explicit deprecation warning. To avoid the warning, use [provider requirements](https://www.terraform.io/docs/configuration/provider-requirements.html) declarations instead. ([#26135](https://github.com/hashicorp/terraform/issues/26135)) + ENHANCEMENTS: * 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] @@ -10,9 +13,6 @@ ENHANCEMENTS: * `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] -BREAKING CHANGES: -* configs: The `version` argument inside provider configuration blocks is deprecated. Instead, use the required_providers setting. ([#26135](https://github.com/hashicorp/terraform/issues/26135)) - BUG FIXES: * backend/consul: Fix bug which prevented state locking when path has trailing `/` [GH-25842]