Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.5 #1255

Merged
merged 1 commit into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Version changelog

## 0.5.5

* Added configuration generators for `databricks_sql_*` resources in _experimental_ [Resource Exporter](https://asciinema.org/a/Rv8ZFJQpfrfp6ggWddjtyXaOy) ([#1199](https://github.com/databrickslabs/terraform-provider-databricks/pull/1199)).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe point to the docs, instead of visualization?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

viz points to docs

* Added `google_credentials` provider agument that has the same semantics as [`credentials` argument](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#credentials) in official [`google` provider](https://registry.terraform.io/providers/hashicorp/google/latest/docs) ([#1214](https://github.com/databrickslabs/terraform-provider-databricks/pull/1214)).
* Fixed `databricks_grants` on UC external location empty list error ([#1202](https://github.com/databrickslabs/terraform-provider-databricks/issues/1202)).
* Fixed errors in `databricks_permissions` resource for auto-purged `databricks_cluster` ([#1252](https://github.com/databrickslabs/terraform-provider-databricks/commit/dac42524f5037c796187c77ba49367b964b03e9f)).
* Various documentation fixes ([#1231](https://github.com/databrickslabs/terraform-provider-databricks/pull/1231), [#1239](https://github.com/databrickslabs/terraform-provider-databricks/pull/1239), [#1254](https://github.com/databrickslabs/terraform-provider-databricks/pull/1254), [#1240](https://github.com/databrickslabs/terraform-provider-databricks/commit/2dabfc90592d79249bd177bb975a84e0b98504f7)).

Updated dependency versions:

* Bump google.golang.org/api from 0.71.0 to 0.75.0
* Bump github.com/golang-jwt/jwt/v4 from 4.3.0 to 4.4.1
* Bump github.com/stretchr/testify from 1.7.0 to 1.7.1
* Bump github.com/hashicorp/go-retryablehttp from 0.7.0 to 0.7.1
* Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.11.0 to 2.14.0
* Bump github.com/Azure/go-autorest/autorest from 0.11.24 to 0.11.26

## 0.5.4

* Completely removed custom client-side validation in `databricks_service_principal` ([#1193](https://github.com/databrickslabs/terraform-provider-databricks/issues/1193)).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.5.4"
version = "0.5.5"
}
}
}
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.5.4"
version = "0.5.5"
// 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 @@ -338,7 +338,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.5.4"
version = "0.5.5"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ subcategory: "Compute"

This resource allows you to manage [Databricks Clusters](https://docs.databricks.com/clusters/index.html).

-> **Note** In case of [`Cannot access cluster ####-######-####### that was terminated or unpinned more than 30 days ago`](https://github.com/databrickslabs/terraform-provider-databricks/issues/1197#issuecomment-1069386670) errors, please upgrade to v0.5.4 or later. If for some reason you cannot upgrade the version of provider, then the other viable option to unblock the apply pipeline is [`terraform state rm path.to.databricks_cluster.resource`](https://www.terraform.io/cli/commands/state/rm) command.
-> **Note** In case of [`Cannot access cluster ####-######-####### that was terminated or unpinned more than 30 days ago`](https://github.com/databrickslabs/terraform-provider-databricks/issues/1197#issuecomment-1069386670) errors, please upgrade to v0.5.5 or later. If for some reason you cannot upgrade the version of provider, then the other viable option to unblock the apply pipeline is [`terraform state rm path.to.databricks_cluster.resource`](https://www.terraform.io/cli/commands/state/rm) command.

```hcl
data "databricks_node_type" "smallest" {
Expand Down