Skip to content

Commit 897ca95

Browse files
authored
[Release] Release v1.64.0 (#4435)
### New Features and Improvements * Add `no_compute` attribute to `databricks_app` ([#4364](#4364)). * Skip calling Read after Create/Update operations for `databricks_notebook` ([#4173](#4173)). ### Bug Fixes * Recreate `databricks_token` if it's not found or expired ([#4431](#4431)). * Handle empty response properly in `databricks_mws_workspaces` data source ([#4414](#4414)). * Recreate `databricks_obo_token` if it's removed or expired ([#4428](#4428)). ### Documentation * Added Queue Data Contributor role to Azure terraform docs ([#4412](#4412)). * Replaced references to data security mode with access mode ([#4408](#4408)). ### Internal Changes * Account for historical release headers when filtering on past changelog sections ([#4409](#4409)). * Introduce automated tagging ([#4366](#4366)). * Remove .extraheader config ([#4405](#4405)). * Remove tag signing in tagging.py script ([#4407](#4407)). * Set runs-on to use our internal runners ([#4403](#4403)). ### Dependency Updates * Bump Databricks Go SDK to v0.56.1 ([#4430](#4430)). * Bump github.com/hashicorp/terraform-plugin-go from 0.25.0 to 0.26.0 ([#4429](#4429)). * Bump github.com/hashicorp/terraform-plugin-mux from 0.17.0 to 0.18.0 ([#4432](#4432)). * Bump github.com/zclconf/go-cty from 1.16.1 to 1.16.2 ([#4423](#4423)). ### Exporter * **Breaking**: rename `workspace` service into `wsconf` ([#4425](#4425)). * Add listing for `databricks_permissions` so we can emit permissions for tokens ([#4402](#4402)). * Refactor jobs implementation to use only Go SDK ([#4380](#4380)). * improve handling of Emit/Add operations under the heavy load ([#4401](#4401)).
1 parent 119a6c0 commit 897ca95

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Version changelog
22

3+
## [Release] Release v1.64.0
4+
5+
### New Features and Improvements
6+
7+
* Add `no_compute` attribute to `databricks_app` ([#4364](https://github.com/databricks/terraform-provider-databricks/pull/4364)).
8+
* Skip calling Read after Create/Update operations for `databricks_notebook` ([#4173](https://github.com/databricks/terraform-provider-databricks/pull/4173)).
9+
10+
11+
### Bug Fixes
12+
13+
* Recreate `databricks_token` if it's not found or expired ([#4431](https://github.com/databricks/terraform-provider-databricks/pull/4431)).
14+
* Handle empty response properly in `databricks_mws_workspaces` data source ([#4414](https://github.com/databricks/terraform-provider-databricks/pull/4414)).
15+
* Recreate `databricks_obo_token` if it's removed or expired ([#4428](https://github.com/databricks/terraform-provider-databricks/pull/4428)).
16+
17+
18+
### Documentation
19+
20+
* Added Queue Data Contributor role to Azure terraform docs ([#4412](https://github.com/databricks/terraform-provider-databricks/pull/4412)).
21+
* Replaced references to data security mode with access mode ([#4408](https://github.com/databricks/terraform-provider-databricks/pull/4408)).
22+
23+
24+
### Internal Changes
25+
26+
* Account for historical release headers when filtering on past changelog sections ([#4409](https://github.com/databricks/terraform-provider-databricks/pull/4409)).
27+
* Introduce automated tagging ([#4366](https://github.com/databricks/terraform-provider-databricks/pull/4366)).
28+
* Remove .extraheader config ([#4405](https://github.com/databricks/terraform-provider-databricks/pull/4405)).
29+
* Remove tag signing in tagging.py script ([#4407](https://github.com/databricks/terraform-provider-databricks/pull/4407)).
30+
* Set runs-on to use our internal runners ([#4403](https://github.com/databricks/terraform-provider-databricks/pull/4403)).
31+
32+
33+
### Dependency Updates
34+
35+
* Bump Databricks Go SDK to v0.56.1 ([#4430](https://github.com/databricks/terraform-provider-databricks/pull/4430)).
36+
* Bump github.com/hashicorp/terraform-plugin-go from 0.25.0 to 0.26.0 ([#4429](https://github.com/databricks/terraform-provider-databricks/pull/4429)).
37+
* Bump github.com/hashicorp/terraform-plugin-mux from 0.17.0 to 0.18.0 ([#4432](https://github.com/databricks/terraform-provider-databricks/pull/4432)).
38+
* Bump github.com/zclconf/go-cty from 1.16.1 to 1.16.2 ([#4423](https://github.com/databricks/terraform-provider-databricks/pull/4423)).
39+
40+
41+
### Exporter
42+
43+
* **Breaking**: rename `workspace` service into `wsconf` ([#4425](https://github.com/databricks/terraform-provider-databricks/pull/4425)).
44+
* Add listing for `databricks_permissions` so we can emit permissions for tokens ([#4402](https://github.com/databricks/terraform-provider-databricks/pull/4402)).
45+
* Refactor jobs implementation to use only Go SDK ([#4380](https://github.com/databricks/terraform-provider-databricks/pull/4380)).
46+
* improve handling of Emit/Add operations under the heavy load ([#4401](https://github.com/databricks/terraform-provider-databricks/pull/4401)).
47+
348
## Release v1.63.1
449

550
### Exporter

common/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import "context"
44

55
var (
6-
version = "1.63.1"
6+
version = "1.64.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)