Skip to content

Commit 21c96e9

Browse files
authored
Release v1.5.0 (#1662)
1 parent 3dfcd3e commit 21c96e9

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

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

3+
## 1.5.0
4+
5+
* Added `enable_serverless_compute` in the documentation for the [databricks_sql_global_config](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_global_config) ([#1655](https://github.com/databricks/terraform-provider-databricks/pull/1655)).
6+
* Update [databricks_grants](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants) with new permissions model ([#1657](https://github.com/databricks/terraform-provider-databricks/pull/1657)).
7+
* Exporter now adds the `force` flag to users and groups ([#1661](https://github.com/databricks/terraform-provider-databricks/pull/1661)).
8+
9+
Updated dependency versions:
10+
11+
* Bump google.golang.org/api from 0.97.0 to 0.98.0 ([#1652](https://github.com/databricks/terraform-provider-databricks/pull/1652)).
12+
313
## 1.4.0
414

515
* Added [databricks_job](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/job) data resource ([#1509](https://github.com/databricks/terraform-provider-databricks/pull/1509)).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ terraform {
9999
required_providers {
100100
databricks = {
101101
source = "databricks/databricks"
102-
version = "1.4.0"
102+
version = "1.5.0"
103103
}
104104
}
105105
}

catalog/acceptance/external_location_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func TestUcAccExternalLocation(t *testing.T) {
3131
external_location = databricks_external_location.some.id
3232
grant {
3333
principal = "{env.TEST_DATA_ENG_GROUP}"
34-
privileges = ["CREATE_TABLE", "READ_FILES"]
34+
privileges = ["CREATE_EXTERNAL_TABLE", "READ_FILES"]
3535
}
3636
}`,
3737
},

catalog/acceptance/schema_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ func TestUcAccSchema(t *testing.T) {
2828
catalog = databricks_catalog.sandbox.name
2929
grant {
3030
principal = "{env.TEST_DATA_SCI_GROUP}"
31-
privileges = ["USAGE", "CREATE"]
31+
privileges = ["USE_CATALOG", "CREATE_SCHEMA"]
3232
}
3333
grant {
3434
principal = "{env.TEST_DATA_ENG_GROUP}"
35-
privileges = ["USAGE"]
35+
privileges = ["USE_CATALOG"]
3636
}
3737
}
3838
@@ -54,7 +54,7 @@ func TestUcAccSchema(t *testing.T) {
5454
schema = databricks_schema.things.id
5555
grant {
5656
principal = "{env.TEST_DATA_ENG_GROUP}"
57-
privileges = ["USAGE"]
57+
privileges = ["USE_SCHEMA"]
5858
}
5959
}`,
6060
},

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.4.0"
6+
version = "1.5.0"
77
// ResourceName is resource name without databricks_ prefix
88
ResourceName contextKey = 1
99
// Provider is the current instance of provider

0 commit comments

Comments
 (0)