Skip to content

Commit 70ac668

Browse files
authored
[Release] Release v1.63.0 (#4400)
### New Features and Improvements * Add `fallback` to `databricks_external_location` ([#4372](#4372)). ### Bug Fixes * Send only what is required in Update of `databricks_credential` ([#4349](#4349)). ### Documentation * Add `MANAGE` privilege to the relevant UC resources ([#4371](#4371)). * Add a note about schema evolution and `databricks_sql_table` ([#4352](#4352)). * Add description of `clean_rooms_notebook_task` in `databricks_job` ([#4368](#4368)). * Add docs for cluster attributes for clusters assigned to groups ([#4359](#4359)). * Add note about use of `azurerm_databricks` for enhanced security settings ([#4393](#4393)). * Clarify views sharing in `databricks_share` ([#4378](#4378)). * Document job edit_mode ([#4354](#4354)). ### Internal Changes * Auto generated customizable schemas ([#4356](#4356)). * Disable `terraform fmt` in exporter to workaround build issues ([#4394](#4394)). * Fixed redundant optional owners in share resource and bumped Go SDK ([#4396](#4396)). * Load auto-generated resources and data sources ([#4367](#4367)). * Migrate workflows that need write access to use hosted runners ([#4377](#4377)). * Remove TF annotations on TFSDK models ([#4383](#4383)). * Restart Cluster before Library Installation ([#4384](#4384)). ### Dependency Updates * Bump github.com/zclconf/go-cty from 1.15.1 to 1.16.0 ([#4374](#4374)). * Bump github.com/zclconf/go-cty from 1.16.0 to 1.16.1 ([#4397](#4397)). ### Exporter * Add exporting of `for_each_task` in jobs ([#4347](#4347)). * Add references for missing permissions/grants types ([#4390](#4390)). * Support for group assigned clusters ([#4361](#4361)). * Use Go SDK to list clusters ([#4385](#4385)). * Use `Workspace.Export` from Go SDK for notebooks/files ([#4391](#4391)).
1 parent 72753b3 commit 70ac668

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

CHANGELOG.md

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

3+
## [Release] Release v1.63.0
4+
5+
### New Features and Improvements
6+
7+
* Add `fallback` to `databricks_external_location` ([#4372](https://github.com/databricks/terraform-provider-databricks/pull/4372)).
8+
9+
10+
### Bug Fixes
11+
12+
* Send only what is required in Update of `databricks_credential` ([#4349](https://github.com/databricks/terraform-provider-databricks/pull/4349)).
13+
14+
15+
### Documentation
16+
17+
* Add `MANAGE` privilege to the relevant UC resources ([#4371](https://github.com/databricks/terraform-provider-databricks/pull/4371)).
18+
* Add a note about schema evolution and `databricks_sql_table` ([#4352](https://github.com/databricks/terraform-provider-databricks/pull/4352)).
19+
* Add description of `clean_rooms_notebook_task` in `databricks_job` ([#4368](https://github.com/databricks/terraform-provider-databricks/pull/4368)).
20+
* Add docs for cluster attributes for clusters assigned to groups ([#4359](https://github.com/databricks/terraform-provider-databricks/pull/4359)).
21+
* Add note about use of `azurerm_databricks` for enhanced security settings ([#4393](https://github.com/databricks/terraform-provider-databricks/pull/4393)).
22+
* Clarify views sharing in `databricks_share` ([#4378](https://github.com/databricks/terraform-provider-databricks/pull/4378)).
23+
* Document job edit_mode ([#4354](https://github.com/databricks/terraform-provider-databricks/pull/4354)).
24+
25+
26+
### Internal Changes
27+
28+
* Auto generated customizable schemas ([#4356](https://github.com/databricks/terraform-provider-databricks/pull/4356)).
29+
* Disable `terraform fmt` in exporter to workaround build issues ([#4394](https://github.com/databricks/terraform-provider-databricks/pull/4394)).
30+
* Fixed redundant optional owners in share resource and bumped Go SDK ([#4396](https://github.com/databricks/terraform-provider-databricks/pull/4396)).
31+
* Load auto-generated resources and data sources ([#4367](https://github.com/databricks/terraform-provider-databricks/pull/4367)).
32+
* Migrate workflows that need write access to use hosted runners ([#4377](https://github.com/databricks/terraform-provider-databricks/pull/4377)).
33+
* Remove TF annotations on TFSDK models ([#4383](https://github.com/databricks/terraform-provider-databricks/pull/4383)).
34+
* Restart Cluster before Library Installation ([#4384](https://github.com/databricks/terraform-provider-databricks/pull/4384)).
35+
36+
37+
### Dependency Updates
38+
39+
* Bump github.com/zclconf/go-cty from 1.15.1 to 1.16.0 ([#4374](https://github.com/databricks/terraform-provider-databricks/pull/4374)).
40+
* Bump github.com/zclconf/go-cty from 1.16.0 to 1.16.1 ([#4397](https://github.com/databricks/terraform-provider-databricks/pull/4397)).
41+
42+
43+
### Exporter
44+
45+
* Add exporting of `for_each_task` in jobs ([#4347](https://github.com/databricks/terraform-provider-databricks/pull/4347)).
46+
* Add references for missing permissions/grants types ([#4390](https://github.com/databricks/terraform-provider-databricks/pull/4390)).
47+
* Support for group assigned clusters ([#4361](https://github.com/databricks/terraform-provider-databricks/pull/4361)).
48+
* Use Go SDK to list clusters ([#4385](https://github.com/databricks/terraform-provider-databricks/pull/4385)).
49+
* Use `Workspace.Export` from Go SDK for notebooks/files ([#4391](https://github.com/databricks/terraform-provider-databricks/pull/4391)).
50+
51+
352
## [Release] Release v1.62.1
453

554
### Bug Fixes

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.62.1"
6+
version = "1.63.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)