Skip to content

Commit f983da1

Browse files
authored
Release v0.6.1 (#1374)
1 parent d7388bd commit f983da1

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

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

3+
## 0.6.1
4+
5+
* Added `databricks_service_principal` and `databricks_service_principals` data resources ([#1370](https://github.com/databrickslabs/terraform-provider-databricks/pull/1370)).
6+
* Updated `databricks_pipeline` resource to match latest APIs ([#1368](https://github.com/databrickslabs/terraform-provider-databricks/pull/1368)).
7+
* Made `gcp_managed_network_config` optional in `databricks_mws_workspaces` ([#1365](https://github.com/databrickslabs/terraform-provider-databricks/pull/1365)).
8+
* Enforced consistent naming for resource files ([#1366](https://github.com/databrickslabs/terraform-provider-databricks/pull/1366), [#1369](https://github.com/databrickslabs/terraform-provider-databricks/pull/1369)).
9+
* Updated resources diagram ([#1373](https://github.com/databrickslabs/terraform-provider-databricks/pull/1373)).
10+
11+
Updated dependency versions:
12+
13+
* Bump google.golang.org/api from 0.82.0 to 0.83.0
14+
315
## 0.6.0
416

517
* Added `delta_sharing_*` support to `databricks_metastore` ([#1334](https://github.com/databrickslabs/terraform-provider-databricks/pull/1334)).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ terraform {
9494
required_providers {
9595
databricks = {
9696
source = "databrickslabs/databricks"
97-
version = "0.6.0"
97+
version = "0.6.1"
9898
}
9999
}
100100
}

aws/data_aws_assume_role_policy.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ type awsIamPolicyStatement struct {
2626
Condition map[string]map[string]string `json:"Condition,omitempty"`
2727
}
2828

29-
3029
// DataAwsAssumeRolePolicy ...
3130
func DataAwsAssumeRolePolicy() *schema.Resource {
3231
return &schema.Resource{

aws/data_aws_assume_role_policy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ func TestDataAwsAssumeRolePolicy(t *testing.T) {
1818
assert.NoError(t, err)
1919
j := d.Get("json")
2020
assert.Lenf(t, j, 299, "Strange length for policy: %s", j)
21-
}
21+
}

catalog/resource_table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func ResourceTable() *schema.Resource {
8181
return m
8282
})
8383
update := updateFunctionFactory("/unity-catalog/tables", []string{
84-
"owner", "name", "data_source_format", "columns", "storage_location",
84+
"owner", "name", "data_source_format", "columns", "storage_location",
8585
"view_definition", "comment", "properties"})
8686
return common.Resource{
8787
Schema: tableSchema,

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

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ terraform {
342342
required_providers {
343343
databricks = {
344344
source = "databrickslabs/databricks"
345-
version = "0.6.0"
345+
version = "0.6.1"
346346
}
347347
}
348348
}

0 commit comments

Comments
 (0)