From d56fe6118eb7a70431820c8d496ec7b367f178ba Mon Sep 17 00:00:00 2001 From: Tanmay Rustagi Date: Tue, 5 Nov 2024 19:49:08 +0530 Subject: [PATCH] [Release] Release v1.57.0 ### New Features and Improvements * Added `databricks_functions` data source ([#4154](https://github.com/databricks/terraform-provider-databricks/pull/4154)). ### Bug Fixes * Handle edge case for `effective_properties` in `databricks_sql_table` ([#4153](https://github.com/databricks/terraform-provider-databricks/pull/4153)). * Provide more prescriptive error when users fail to create a single node cluster ([#4168](https://github.com/databricks/terraform-provider-databricks/pull/4168)). ### Internal Changes * Add test instructions for external contributors ([#4169](https://github.com/databricks/terraform-provider-databricks/pull/4169)). * Always write message for manual test integration ([#4188](https://github.com/databricks/terraform-provider-databricks/pull/4188)). * Make `Read` after `Create`/`Update` configurable ([#4190](https://github.com/databricks/terraform-provider-databricks/pull/4190)). * Migrate Share Data Source to Plugin Framework ([#4161](https://github.com/databricks/terraform-provider-databricks/pull/4161)). * Migrate Share Resource to Plugin Framework ([#4047](https://github.com/databricks/terraform-provider-databricks/pull/4047)). * Rollout Plugin Framework ([#4134](https://github.com/databricks/terraform-provider-databricks/pull/4134)). ### Dependency Updates * Bump Go SDK to v0.50.0 ([#4178](https://github.com/databricks/terraform-provider-databricks/pull/4178)). ### Exporter * Allow to match resource names by regular expression ([#4177](https://github.com/databricks/terraform-provider-databricks/pull/4177)). --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ common/version.go | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f2de0133..d2d4139a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # Version changelog +## [Release] Release v1.57.0 + +### New Features and Improvements + + * Added `databricks_functions` data source ([#4154](https://github.com/databricks/terraform-provider-databricks/pull/4154)). + + +### Bug Fixes + + * Handle edge case for `effective_properties` in `databricks_sql_table` ([#4153](https://github.com/databricks/terraform-provider-databricks/pull/4153)). + * Provide more prescriptive error when users fail to create a single node cluster ([#4168](https://github.com/databricks/terraform-provider-databricks/pull/4168)). + + +### Internal Changes + + * Add test instructions for external contributors ([#4169](https://github.com/databricks/terraform-provider-databricks/pull/4169)). + * Always write message for manual test integration ([#4188](https://github.com/databricks/terraform-provider-databricks/pull/4188)). + * Make `Read` after `Create`/`Update` configurable ([#4190](https://github.com/databricks/terraform-provider-databricks/pull/4190)). + * Migrate Share Data Source to Plugin Framework ([#4161](https://github.com/databricks/terraform-provider-databricks/pull/4161)). + * Migrate Share Resource to Plugin Framework ([#4047](https://github.com/databricks/terraform-provider-databricks/pull/4047)). + * Rollout Plugin Framework ([#4134](https://github.com/databricks/terraform-provider-databricks/pull/4134)). + + +### Dependency Updates + + * Bump Go SDK to v0.50.0 ([#4178](https://github.com/databricks/terraform-provider-databricks/pull/4178)). + + +### Exporter + + * Allow to match resource names by regular expression ([#4177](https://github.com/databricks/terraform-provider-databricks/pull/4177)). + + ## [Release] Release v1.56.0 ### Bug Fixes diff --git a/common/version.go b/common/version.go index 44a7242a4..b8959caac 100644 --- a/common/version.go +++ b/common/version.go @@ -3,7 +3,7 @@ package common import "context" var ( - version = "1.56.0" + version = "1.57.0" // ResourceName is resource name without databricks_ prefix ResourceName contextKey = 1 // Provider is the current instance of provider