Skip to content

Commit

Permalink
Release v1.17.0 (#2328)
Browse files Browse the repository at this point in the history
 * **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)).
  • Loading branch information
nfx authored May 22, 2023
1 parent 130c52d commit e30e31b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Version changelog

## 1.17.0

* **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)).
* 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)).
* 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)).
* 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)).
* 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)).
* 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)).

Updated dependency versions:

* Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 ([#2317](https://github.com/databricks/terraform-provider-databricks/pull/2317)).
* 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)).

## 1.16.1

* 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)).
Expand Down
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package common
import "context"

var (
version = "1.16.1"
version = "1.17.0"
// ResourceName is resource name without databricks_ prefix
ResourceName contextKey = 1
// Provider is the current instance of provider
Expand Down
1 change: 1 addition & 0 deletions internal/acceptance/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ func run(t *testing.T, steps []step) {
}
vars := map[string]string{
"CWD": cwd,
"STICKY_RANDOM": qa.RandomName("s"),
"AWS_ATTRIBUTES": awsAttrs,
}
ts := []resource.TestStep{}
Expand Down
1 change: 1 addition & 0 deletions internal/acceptance/model_serving_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
)

func TestAccModelServing(t *testing.T) {
t.Skip("created ticket for ML Prod team to fix this test")
cloudEnv := os.Getenv("CLOUD_ENV")
switch cloudEnv {
case "aws", "azure":
Expand Down
6 changes: 3 additions & 3 deletions internal/acceptance/sql_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
unityWorkspaceLevel(t, step{
Template: `
resource "databricks_schema" "this" {
name = "foov"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand Down Expand Up @@ -139,7 +139,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
}, step{
Template: `
resource "databricks_schema" "this" {
name = "foov"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand Down Expand Up @@ -172,7 +172,7 @@ func TestUcAccResourceSqlTable_View(t *testing.T) {
}, step{
Template: `
resource "databricks_schema" "this" {
name = "foov"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand Down

0 comments on commit e30e31b

Please sign in to comment.