Skip to content

Commit

Permalink
Release v0.6.1 (databricks#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfx authored Jun 16, 2022
1 parent 1cbdf62 commit 2c7118b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Version changelog

## 0.6.1

* Added `databricks_service_principal` and `databricks_service_principals` data resources ([#1370](https://github.com/databrickslabs/terraform-provider-databricks/pull/1370)).
* Updated `databricks_pipeline` resource to match latest APIs ([#1368](https://github.com/databrickslabs/terraform-provider-databricks/pull/1368)).
* Made `gcp_managed_network_config` optional in `databricks_mws_workspaces` ([#1365](https://github.com/databrickslabs/terraform-provider-databricks/pull/1365)).
* 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)).
* Updated resources diagram ([#1373](https://github.com/databrickslabs/terraform-provider-databricks/pull/1373)).

Updated dependency versions:

* Bump google.golang.org/api from 0.82.0 to 0.83.0

## 0.6.0

* Added `delta_sharing_*` support to `databricks_metastore` ([#1334](https://github.com/databrickslabs/terraform-provider-databricks/pull/1334)).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.6.0"
version = "0.6.1"
}
}
}
Expand Down
1 change: 0 additions & 1 deletion aws/data_aws_assume_role_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ type awsIamPolicyStatement struct {
Condition map[string]map[string]string `json:"Condition,omitempty"`
}


// DataAwsAssumeRolePolicy ...
func DataAwsAssumeRolePolicy() *schema.Resource {
return &schema.Resource{
Expand Down
2 changes: 1 addition & 1 deletion aws/data_aws_assume_role_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ func TestDataAwsAssumeRolePolicy(t *testing.T) {
assert.NoError(t, err)
j := d.Get("json")
assert.Lenf(t, j, 299, "Strange length for policy: %s", j)
}
}
2 changes: 1 addition & 1 deletion catalog/resource_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func ResourceTable() *schema.Resource {
return m
})
update := updateFunctionFactory("/unity-catalog/tables", []string{
"owner", "name", "data_source_format", "columns", "storage_location",
"owner", "name", "data_source_format", "columns", "storage_location",
"view_definition", "comment", "properties"})
return common.Resource{
Schema: tableSchema,
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 = "0.6.0"
version = "0.6.1"
// ResourceName is resource name without databricks_ prefix
ResourceName contextKey = 1
// Provider is the current instance of provider
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.6.0"
version = "0.6.1"
}
}
}
Expand Down

0 comments on commit 2c7118b

Please sign in to comment.