Skip to content

Commit e30e31b

Browse files
authored
Release v1.17.0 (#2328)
* **Removed support for releasing 32-bit binaries** ([#2315](#2315), [#2320](#2320)). * Added more information on impact of using a cluster policy in [databricks_cluster](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/cluster) resource ([#2313](#2313)). * Added missing `serverless` option to [databricks_pipeline](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/pipeline) ([#2308](#2308)). * Updated `channel` and `edition` values in [databricks_pipeline](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/pipeline) docs ([#2322](#2322)). * Automatically add `CAN_MANAGE` permission on [databricks_instance_pool](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/instance_pool) for calling user ([#2298](#2298)). * Migrated [databricks_ip_access_list](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/ip_access_list) resource to Go SDK ([#2306](#2306)). Updated dependency versions: * Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 ([#2317](#2317)). * Bump github.com/databricks/databricks-sdk-go from v0.8.1 to v0.9.0 ([#2327](#2327)).
1 parent 130c52d commit e30e31b

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Version changelog
22

3+
## 1.17.0
4+
5+
* **Removed support for releasing 32-bit binaries** ([#2315](https://github.com/databricks/terraform-provider-databricks/pull/2315), [#2320](https://github.com/databricks/terraform-provider-databricks/pull/2320)).
6+
* Added more information on impact of using a cluster policy in [databricks_cluster](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/cluster) resource ([#2313](https://github.com/databricks/terraform-provider-databricks/pull/2313)).
7+
* Added missing `serverless` option to [databricks_pipeline](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/pipeline) ([#2308](https://github.com/databricks/terraform-provider-databricks/pull/2308)).
8+
* Updated `channel` and `edition` values in [databricks_pipeline](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/pipeline) docs ([#2322](https://github.com/databricks/terraform-provider-databricks/pull/2322)).
9+
* Automatically add `CAN_MANAGE` permission on [databricks_instance_pool](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/instance_pool) for calling user ([#2298](https://github.com/databricks/terraform-provider-databricks/pull/2298)).
10+
* Migrated [databricks_ip_access_list](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/ip_access_list) resource to Go SDK ([#2306](https://github.com/databricks/terraform-provider-databricks/pull/2306)).
11+
12+
Updated dependency versions:
13+
14+
* Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 ([#2317](https://github.com/databricks/terraform-provider-databricks/pull/2317)).
15+
* Bump github.com/databricks/databricks-sdk-go from v0.8.1 to v0.9.0 ([#2327](https://github.com/databricks/terraform-provider-databricks/pull/2327)).
16+
317
## 1.16.1
418

519
* Added [databricks_service_principal_secret](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/service_principal_secret) documentation ([#2296](https://github.com/databricks/terraform-provider-databricks/pull/2296)).

common/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import "context"
44

55
var (
6-
version = "1.16.1"
6+
version = "1.17.0"
77
// ResourceName is resource name without databricks_ prefix
88
ResourceName contextKey = 1
99
// Provider is the current instance of provider

internal/acceptance/init_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ func run(t *testing.T, steps []step) {
166166
}
167167
vars := map[string]string{
168168
"CWD": cwd,
169+
"STICKY_RANDOM": qa.RandomName("s"),
169170
"AWS_ATTRIBUTES": awsAttrs,
170171
}
171172
ts := []resource.TestStep{}

internal/acceptance/model_serving_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
)
1313

1414
func TestAccModelServing(t *testing.T) {
15+
t.Skip("created ticket for ML Prod team to fix this test")
1516
cloudEnv := os.Getenv("CLOUD_ENV")
1617
switch cloudEnv {
1718
case "aws", "azure":

internal/acceptance/sql_table_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
102102
unityWorkspaceLevel(t, step{
103103
Template: `
104104
resource "databricks_schema" "this" {
105-
name = "foov"
105+
name = "{var.STICKY_RANDOM}"
106106
catalog_name = "main"
107107
}
108108
@@ -139,7 +139,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
139139
}, step{
140140
Template: `
141141
resource "databricks_schema" "this" {
142-
name = "foov"
142+
name = "{var.STICKY_RANDOM}"
143143
catalog_name = "main"
144144
}
145145
@@ -172,7 +172,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
172172
}, step{
173173
Template: `
174174
resource "databricks_schema" "this" {
175-
name = "foov"
175+
name = "{var.STICKY_RANDOM}"
176176
catalog_name = "main"
177177
}
178178

0 commit comments

Comments
 (0)