Skip to content

Commit 1bd7974

Browse files
[Release] Release v1.88.0
## Release v1.88.0 ### New Features and Improvements * Document and handle additional Slack options in `databricks_notification_destination` ([#4933](#4933)) * Lower case `warehouse_name_contains` when comparing in `databricks_warehouses` ([#4966](#4966)) * Added `account_federation_policies` resource and data sources ([#4986](#4986)). * Added `account_setting_v2` resource and data sources ([#4986](#4986)). * Added `account_settings_metadata_v2` resource and data sources ([#4986](#4986)). * Added `apps_settings_custom_template` resource and data sources ([#4986](#4986)). * Added `entity_tag_assignment` resource and data sources ([#4986](#4986)). * Added `service_principal_federation_policies` resource and data sources ([#4986](#4986)). * Added `tag_policy` resource and data sources ([#4986](#4986)). * Added `workspace_setting_v2` resource and data sources ([#4986](#4986)). * Added `workspace_settings_metadata_v2` resource and data sources ([#4986](#4986)). ### Bug Fixes * Suppress diff for `databricks_catalog` attributes ([#4975](#4975)) * Correct which file event fields should be reset in `databricks_external_location` ([#4945](#4945)) * Fix `ExactlyOneOf` in `databricks_app` ([#4946](#4946)) * Enable update of `databricks_mws_ncc_private_endpoint_rule` resource ([#4957](#4957)) * Fix metastore ID interpolation for account-level storage credential imports ([#4980](#4980)). Storage credentials can now be imported using two formats: `<storage_credential_name>` when using a workspace-level provider, and `<metastore_id>|<storage_credential_name>` when using an account-level provider. Previously, importing storage credentials with an account-level provider would fail due to missing metastore ID in the API call. ### Documentation * Improve documentation for grant resource ([#4906](#4935)) * Document `gcp_attributes.first_on_demand` attribute in `databricks_cluster` ([#4934](#4934)) * Improve `databricks_mws_permission_assignment` documentation ([#4943](#4943)) * Update `databricks_job` example to use `environment_version` ([#4942](#4942)) * Fix broken link in docs/index.md ([#4949](#4949)) * Update existing docs to match Go SDK 0.81.0 ([#4960](#4960)) ### Exporter * Add match by name to more exported resources ([#4939](#4939)) * Improve handling of new dependencies in jobs, pipelines, model serving ([#4914](#4914)) * Add support for `databricks_budget` ([#4957](#4957)) * Correct support for `library.glob` in `databricks_pipeline` ([#4937](#4937)) * Resolve references also for map values ([#4944](#4944)) ### Internal Changes * Replaced `common.APIErrorBody` with corresponding structs in Go SDK ([#4936](#4936)) * Reimplement `databricks_group` data source to use combination of List + Get API ([#4947](#4947)) * Use databricks_sql_table Instead of databricks_table in Sharing Tests ([#4981](#4981) * Bump the Go SDK to v0.82.0 ([#4986](#4986)).
1 parent fe52df2 commit 1bd7974

File tree

4 files changed

+52
-39
lines changed

4 files changed

+52
-39
lines changed

.release_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"timestamp": "2025-08-13 15:34:07+0000"
2+
"timestamp": "2025-09-01 12:38:56+0000"
33
}

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 v1.88.0
4+
5+
### New Features and Improvements
6+
7+
* Document and handle additional Slack options in `databricks_notification_destination` ([#4933](https://github.com/databricks/terraform-provider-databricks/pull/4933))
8+
* Lower case `warehouse_name_contains` when comparing in `databricks_warehouses` ([#4966](https://github.com/databricks/terraform-provider-databricks/pull/4966))
9+
* Added `account_federation_policies` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
10+
* Added `account_setting_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
11+
* Added `account_settings_metadata_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
12+
* Added `apps_settings_custom_template` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
13+
* Added `entity_tag_assignment` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
14+
* Added `service_principal_federation_policies` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
15+
* Added `tag_policy` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
16+
* Added `workspace_setting_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
17+
* Added `workspace_settings_metadata_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
18+
19+
### Bug Fixes
20+
21+
* Suppress diff for `databricks_catalog` attributes ([#4975](https://github.com/databricks/terraform-provider-databricks/pull/4975))
22+
* Correct which file event fields should be reset in `databricks_external_location` ([#4945](https://github.com/databricks/terraform-provider-databricks/pull/4945))
23+
* Fix `ExactlyOneOf` in `databricks_app` ([#4946](https://github.com/databricks/terraform-provider-databricks/pull/4946))
24+
* Enable update of `databricks_mws_ncc_private_endpoint_rule` resource ([#4957](https://github.com/databricks/terraform-provider-databricks/pull/4957))
25+
* Fix metastore ID interpolation for account-level storage credential imports ([#4980](https://github.com/databricks/terraform-provider-databricks/pull/4980)). Storage credentials can now be imported using two formats: `<storage_credential_name>` when using a workspace-level provider, and `<metastore_id>|<storage_credential_name>` when using an account-level provider. Previously, importing storage credentials with an account-level provider would fail due to missing metastore ID in the API call.
26+
27+
### Documentation
28+
29+
* Improve documentation for grant resource ([#4906](https://github.com/databricks/terraform-provider-databricks/pull/4935))
30+
* Document `gcp_attributes.first_on_demand` attribute in `databricks_cluster` ([#4934](https://github.com/databricks/terraform-provider-databricks/pull/4934))
31+
* Improve `databricks_mws_permission_assignment` documentation ([#4943](https://github.com/databricks/terraform-provider-databricks/pull/4943))
32+
* Update `databricks_job` example to use `environment_version` ([#4942](https://github.com/databricks/terraform-provider-databricks/pull/4942))
33+
* Fix broken link in docs/index.md ([#4949](https://github.com/databricks/terraform-provider-databricks/pull/4949))
34+
* Update existing docs to match Go SDK 0.81.0 ([#4960](https://github.com/databricks/terraform-provider-databricks/pull/4960))
35+
36+
### Exporter
37+
38+
* Add match by name to more exported resources ([#4939](https://github.com/databricks/terraform-provider-databricks/pull/4939))
39+
* Improve handling of new dependencies in jobs, pipelines, model serving ([#4914](https://github.com/databricks/terraform-provider-databricks/pull/4914))
40+
* Add support for `databricks_budget` ([#4957](https://github.com/databricks/terraform-provider-databricks/pull/4957))
41+
* Correct support for `library.glob` in `databricks_pipeline` ([#4937](https://github.com/databricks/terraform-provider-databricks/pull/4937))
42+
* Resolve references also for map values ([#4944](https://github.com/databricks/terraform-provider-databricks/pull/4944))
43+
44+
### Internal Changes
45+
46+
* Replaced `common.APIErrorBody` with corresponding structs in Go SDK ([#4936](https://github.com/databricks/terraform-provider-databricks/pull/4936))
47+
* Reimplement `databricks_group` data source to use combination of List + Get API ([#4947](https://github.com/databricks/terraform-provider-databricks/pull/4947))
48+
* Use databricks_sql_table Instead of databricks_table in Sharing Tests ([#4981](https://github.com/databricks/terraform-provider-databricks/pull/4981)
49+
* Bump the Go SDK to v0.82.0 ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
50+
51+
352
## Release v1.87.1
453

554
### Breaking Changes

NEXT_CHANGELOG.md

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,15 @@
11
# NEXT CHANGELOG
22

3-
## Release v1.88.0
3+
## Release v1.89.0
44

55
### Breaking Changes
66

77
### New Features and Improvements
88

9-
* Document and handle additional Slack options in `databricks_notification_destination` ([#4933](https://github.com/databricks/terraform-provider-databricks/pull/4933))
10-
* Lower case `warehouse_name_contains` when comparing in `databricks_warehouses` ([#4966](https://github.com/databricks/terraform-provider-databricks/pull/4966))
11-
* Added `account_federation_policies` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
12-
* Added `account_setting_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
13-
* Added `account_settings_metadata_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
14-
* Added `apps_settings_custom_template` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
15-
* Added `entity_tag_assignment` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
16-
* Added `service_principal_federation_policies` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
17-
* Added `tag_policy` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
18-
* Added `workspace_setting_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
19-
* Added `workspace_settings_metadata_v2` resource and data sources ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).
20-
219
### Bug Fixes
2210

23-
* Suppress diff for `databricks_catalog` attributes ([#4975](https://github.com/databricks/terraform-provider-databricks/pull/4975))
24-
* Correct which file event fields should be reset in `databricks_external_location` ([#4945](https://github.com/databricks/terraform-provider-databricks/pull/4945))
25-
* Fix `ExactlyOneOf` in `databricks_app` ([#4946](https://github.com/databricks/terraform-provider-databricks/pull/4946))
26-
* Enable update of `databricks_mws_ncc_private_endpoint_rule` resource ([#4957](https://github.com/databricks/terraform-provider-databricks/pull/4957))
27-
* Fix metastore ID interpolation for account-level storage credential imports ([#4980](https://github.com/databricks/terraform-provider-databricks/pull/4980)). Storage credentials can now be imported using two formats: `<storage_credential_name>` when using a workspace-level provider, and `<metastore_id>|<storage_credential_name>` when using an account-level provider. Previously, importing storage credentials with an account-level provider would fail due to missing metastore ID in the API call.
28-
2911
### Documentation
3012

31-
* Improve documentation for grant resource ([#4906](https://github.com/databricks/terraform-provider-databricks/pull/4935))
32-
* Document `gcp_attributes.first_on_demand` attribute in `databricks_cluster` ([#4934](https://github.com/databricks/terraform-provider-databricks/pull/4934))
33-
* Improve `databricks_mws_permission_assignment` documentation ([#4943](https://github.com/databricks/terraform-provider-databricks/pull/4943))
34-
* Update `databricks_job` example to use `environment_version` ([#4942](https://github.com/databricks/terraform-provider-databricks/pull/4942))
35-
* Fix broken link in docs/index.md ([#4949](https://github.com/databricks/terraform-provider-databricks/pull/4949))
36-
* Update existing docs to match Go SDK 0.81.0 ([#4960](https://github.com/databricks/terraform-provider-databricks/pull/4960))
37-
3813
### Exporter
3914

40-
* Add match by name to more exported resources ([#4939](https://github.com/databricks/terraform-provider-databricks/pull/4939))
41-
* Improve handling of new dependencies in jobs, pipelines, model serving ([#4914](https://github.com/databricks/terraform-provider-databricks/pull/4914))
42-
* Add support for `databricks_budget` ([#4957](https://github.com/databricks/terraform-provider-databricks/pull/4957))
43-
* Correct support for `library.glob` in `databricks_pipeline` ([#4937](https://github.com/databricks/terraform-provider-databricks/pull/4937))
44-
* Resolve references also for map values ([#4944](https://github.com/databricks/terraform-provider-databricks/pull/4944))
45-
4615
### Internal Changes
47-
48-
* Replaced `common.APIErrorBody` with corresponding structs in Go SDK ([#4936](https://github.com/databricks/terraform-provider-databricks/pull/4936))
49-
* Reimplement `databricks_group` data source to use combination of List + Get API ([#4947](https://github.com/databricks/terraform-provider-databricks/pull/4947))
50-
* Use databricks_sql_table Instead of databricks_table in Sharing Tests ([#4981](https://github.com/databricks/terraform-provider-databricks/pull/4981)
51-
* Bump the Go SDK to v0.82.0 ([#4986](https://github.com/databricks/terraform-provider-databricks/pull/4986)).

common/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package common
22

3-
var version = "1.87.1"
3+
var version = "1.88.0"
44

55
// Version returns version of provider
66
func Version() string {

0 commit comments

Comments
 (0)