From 51a98b87ce1c5c855a5d32eb37501775d0e2483c Mon Sep 17 00:00:00 2001 From: Serge Smertin <259697+nfx@users.noreply.github.com> Date: Fri, 5 May 2023 15:12:33 +0200 Subject: [PATCH] Release v1.15.0 (#2265) --- CHANGELOG.md | 17 +++++++++++++++++ common/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e7049f7e..61a0c84fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Version changelog +## 1.15.0 + + * Added _experimental_ [databricks_sql_table](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_table) resource to manage tables in the Unity Catalog ([#2213](https://github.com/databricks/terraform-provider-databricks/pull/2213)). + * Added [databricks_pipelines](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/pipelines) data source ([#2202](https://github.com/databricks/terraform-provider-databricks/pull/2202)). + * Added missing permissions to [databricks_grants](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants) resource ([#2260](https://github.com/databricks/terraform-provider-databricks/pull/2260)). + * Added support for running [databricks_cluster](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/cluster) init scripts from workspace files ([#2251](https://github.com/databricks/terraform-provider-databricks/pull/2251)). + * Added suppress diff for `run_if` in [databricks_job](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/job) ([#2229](https://github.com/databricks/terraform-provider-databricks/pull/2229)). + * Fixed delete permission error for manually removed [databricks_job](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/job) ([#2225](https://github.com/databricks/terraform-provider-databricks/pull/2225)). + * Documented `fleet` selector in the [databricks_node_type](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/node_type) data source ([#2261](https://github.com/databricks/terraform-provider-databricks/pull/2261)). + * Documented example for [databricks_job](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/job) tags ([#2235](https://github.com/databricks/terraform-provider-databricks/pull/2235)). + * Documented more Azure Databricks workspaces creation ([#2228](https://github.com/databricks/terraform-provider-databricks/pull/2228), [#2248](https://github.com/databricks/terraform-provider-databricks/pull/2248)). + * Removed note about Azure KeyVault-based [databricks_secret_scope](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/secret_scope) and service principals ([#2231](https://github.com/databricks/terraform-provider-databricks/pull/2231)). + * Migrated [databricks_cluster_policy](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/cluster_policy) to Go SDK ([#2250](https://github.com/databricks/terraform-provider-databricks/pull/2250)). + * Updated [databricks_sql_endpoint](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_endpoint) docs for Azure DBSQL Serverless GA ([#2249](https://github.com/databricks/terraform-provider-databricks/pull/2249), [#2254](https://github.com/databricks/terraform-provider-databricks/pull/2254)). + * Updated policy definition in [databricks_aws_crossaccount_policy](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/aws_crossaccount_policy) data source ([#2262](https://github.com/databricks/terraform-provider-databricks/pull/2262)). + * Bumped `databricks-sdk-go` from 0.7.0 to 0.8.0 ([#2259](https://github.com/databricks/terraform-provider-databricks/pull/2259)). + ## 1.14.3 * Add exporter support for [databricks_sql_alert](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_alert) ([#2207](https://github.com/databricks/terraform-provider-databricks/pull/2207)). diff --git a/common/version.go b/common/version.go index a00a66e302..2aecffe44f 100644 --- a/common/version.go +++ b/common/version.go @@ -3,7 +3,7 @@ package common import "context" var ( - version = "1.14.3" + version = "1.15.0" // ResourceName is resource name without databricks_ prefix ResourceName contextKey = 1 // Provider is the current instance of provider