Skip to content

Commit 253f166

Browse files
[Release] Release v1.85.0
## Release v1.85.0 ### New Features and Improvements * Add `bearer_token` to the list of sensitive options in `databricks_connection` ([#4812](#4812)). * Use single-node cluster for `databricks_sql_permissions` ([#4813](#4813)). * Allow to retrieve service principal data by SCIM ID ([#3142](#3142)). * Add support for Lakebase `databricks_database_instance` in `databricks_permissions` ([#4824](#4824)). * Document new fields in `databricks_model_serving` and deprecate `invalid_keywords` and `valid_topics` in AI Gateway configuration ([#4851](#4851)). * Added support for Alert V2 in `databricks_permissions` ([#4831](#4831)). * Replace instead of dropping Delta `databricks_sql_table` ([#2424](#2424)). * Added `databricks_clean_rooms_clean_room` resource and data sources ([#4844](#4844)). * Added `databricks_external_metadata` resource and data sources ([#4844](#4844)). * Added `databricks_materialized_features_feature_tag` resource and data sources ([#4844](#4844)). * Improve `databricks_git_credential` resource by correctly handle new fields ([#4854](#4854)). ### Bug Fixes * Don't redeploy `databricks_sql_table` when view definition contains newlines or tabs ([#4003](#4003)). * Preserve `queue` setting for `databricks_job` resource when upgrading from provider version <1.71.0. * Fix updating of of `fallback_config` in `databricks_model_serving` ([#4830](#4830)). ### Documentation * Update documentation for single-node clusters in `databricks_cluster` resource ([#4817](#4817)). * Update GCP example for `databricks_external_location` resource ([#4826](#4826)) * Fix formatting for HTTP connection example in `databricks_connection` resource ([#4826](#4826)) * Document `encryption_details` block in `databricks_external_location` resource and data source ([#4849](#4849)) * Update Databricks SQL objects documentation ([#4840](#4840)) * Improve documentation for `databricks_git_credential` resource ([#4837](#4837)) * Rename DLT references to Lakeflow Declarative pipelines ([#4842](#4842)) * Update the list of UC permissions in UC guide for Azure ([#4852](#4852)). * Clarify and add more examples to `databricks_mws_network_connectivity_config` and `databricks_mws_ncc_private_endpoint_rule` documentation ([#4847](#4847)) * Document new attributes in `databricks_app` resource and data sources ([#4848](#4848)) ### Exporter * Fix generation of columns in `databricks_sql_table` resource ([#4819](#4819)). ### Internal Changes * Updated the contributing guide with instructions on how to modify the changelog ([#4404](#4404)). * Add synthetic field to jobs resource to control behavior of `apply_policy_default_values` ([#4834](#4834)). * Bump the Go SDK to v0.75.0 ([#4844](#4844)).
1 parent 6522d18 commit 253f166

File tree

4 files changed

+49
-36
lines changed

4 files changed

+49
-36
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-06-24 08:30:57+0000"
2+
"timestamp": "2025-07-15 08:44:01+0000"
33
}

CHANGELOG.md

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

3+
## Release v1.85.0
4+
5+
### New Features and Improvements
6+
7+
* Add `bearer_token` to the list of sensitive options in `databricks_connection` ([#4812](https://github.com/databricks/terraform-provider-databricks/pull/4812)).
8+
* Use single-node cluster for `databricks_sql_permissions` ([#4813](https://github.com/databricks/terraform-provider-databricks/pull/4813)).
9+
* Allow to retrieve service principal data by SCIM ID ([#3142](https://github.com/databricks/terraform-provider-databricks/pull/3142)).
10+
* Add support for Lakebase `databricks_database_instance` in `databricks_permissions` ([#4824](https://github.com/databricks/terraform-provider-databricks/pull/4824)).
11+
* Document new fields in `databricks_model_serving` and deprecate `invalid_keywords` and `valid_topics` in AI Gateway configuration ([#4851](https://github.com/databricks/terraform-provider-databricks/pull/4851)).
12+
* Added support for Alert V2 in `databricks_permissions` ([#4831](https://github.com/databricks/terraform-provider-databricks/pull/4831)).
13+
* Replace instead of dropping Delta `databricks_sql_table` ([#2424](https://github.com/databricks/terraform-provider-databricks/pull/2424)).
14+
* Added `databricks_clean_rooms_clean_room` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
15+
* Added `databricks_external_metadata` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
16+
* Added `databricks_materialized_features_feature_tag` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
17+
* Improve `databricks_git_credential` resource by correctly handle new fields ([#4854](https://github.com/databricks/terraform-provider-databricks/pull/4854)).
18+
19+
### Bug Fixes
20+
21+
* Don't redeploy `databricks_sql_table` when view definition contains newlines or tabs ([#4003](https://github.com/databricks/terraform-provider-databricks/pull/4003)).
22+
* Preserve `queue` setting for `databricks_job` resource when upgrading from provider version <1.71.0.
23+
* Fix updating of of `fallback_config` in `databricks_model_serving` ([#4830](https://github.com/databricks/terraform-provider-databricks/pull/4830)).
24+
25+
### Documentation
26+
27+
* Update documentation for single-node clusters in `databricks_cluster` resource ([#4817](https://github.com/databricks/terraform-provider-databricks/pull/4817)).
28+
* Update GCP example for `databricks_external_location` resource ([#4826](https://github.com/databricks/terraform-provider-databricks/pull/4826))
29+
* Fix formatting for HTTP connection example in `databricks_connection` resource ([#4826](https://github.com/databricks/terraform-provider-databricks/pull/4826))
30+
* Document `encryption_details` block in `databricks_external_location` resource and data source ([#4849](https://github.com/databricks/terraform-provider-databricks/pull/4849))
31+
* Update Databricks SQL objects documentation ([#4840](https://github.com/databricks/terraform-provider-databricks/pull/4840))
32+
* Improve documentation for `databricks_git_credential` resource ([#4837](https://github.com/databricks/terraform-provider-databricks/pull/4837))
33+
* Rename DLT references to Lakeflow Declarative pipelines ([#4842](https://github.com/databricks/terraform-provider-databricks/pull/4842))
34+
* Update the list of UC permissions in UC guide for Azure ([#4852](https://github.com/databricks/terraform-provider-databricks/pull/4852)).
35+
* Clarify and add more examples to `databricks_mws_network_connectivity_config` and `databricks_mws_ncc_private_endpoint_rule` documentation ([#4847](https://github.com/databricks/terraform-provider-databricks/pull/4847))
36+
* Document new attributes in `databricks_app` resource and data sources ([#4848](https://github.com/databricks/terraform-provider-databricks/pull/4848))
37+
38+
### Exporter
39+
40+
* Fix generation of columns in `databricks_sql_table` resource ([#4819](https://github.com/databricks/terraform-provider-databricks/pull/4819)).
41+
42+
### Internal Changes
43+
44+
* Updated the contributing guide with instructions on how to modify the changelog ([#4404](https://github.com/databricks/terraform-provider-databricks/pull/4404)).
45+
* Add synthetic field to jobs resource to control behavior of `apply_policy_default_values` ([#4834](https://github.com/databricks/terraform-provider-databricks/pull/4834)).
46+
* Bump the Go SDK to v0.75.0 ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
47+
48+
349
## Release v1.84.0
450

551
### New Features and Improvements

NEXT_CHANGELOG.md

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

3-
## Release v1.85.0
3+
## Release v1.86.0
44

55
### Breaking Changes
66

77
### New Features and Improvements
88

9-
* Add `bearer_token` to the list of sensitive options in `databricks_connection` ([#4812](https://github.com/databricks/terraform-provider-databricks/pull/4812)).
10-
* Use single-node cluster for `databricks_sql_permissions` ([#4813](https://github.com/databricks/terraform-provider-databricks/pull/4813)).
11-
* Allow to retrieve service principal data by SCIM ID ([#3142](https://github.com/databricks/terraform-provider-databricks/pull/3142)).
12-
* Add support for Lakebase `databricks_database_instance` in `databricks_permissions` ([#4824](https://github.com/databricks/terraform-provider-databricks/pull/4824)).
13-
* Document new fields in `databricks_model_serving` and deprecate `invalid_keywords` and `valid_topics` in AI Gateway configuration ([#4851](https://github.com/databricks/terraform-provider-databricks/pull/4851)).
14-
* Added support for Alert V2 in `databricks_permissions` ([#4831](https://github.com/databricks/terraform-provider-databricks/pull/4831)).
15-
* Replace instead of dropping Delta `databricks_sql_table` ([#2424](https://github.com/databricks/terraform-provider-databricks/pull/2424)).
16-
* Added `databricks_clean_rooms_clean_room` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
17-
* Added `databricks_external_metadata` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
18-
* Added `databricks_materialized_features_feature_tag` resource and data sources ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).
19-
* Improve `databricks_git_credential` resource by correctly handle new fields ([#4854](https://github.com/databricks/terraform-provider-databricks/pull/4854)).
20-
219
### Bug Fixes
2210

23-
* Don't redeploy `databricks_sql_table` when view definition contains newlines or tabs ([#4003](https://github.com/databricks/terraform-provider-databricks/pull/4003)).
24-
* Preserve `queue` setting for `databricks_job` resource when upgrading from provider version <1.71.0.
25-
* Fix updating of of `fallback_config` in `databricks_model_serving` ([#4830](https://github.com/databricks/terraform-provider-databricks/pull/4830)).
26-
2711
### Documentation
2812

29-
* Update documentation for single-node clusters in `databricks_cluster` resource ([#4817](https://github.com/databricks/terraform-provider-databricks/pull/4817)).
30-
* Update GCP example for `databricks_external_location` resource ([#4826](https://github.com/databricks/terraform-provider-databricks/pull/4826))
31-
* Fix formatting for HTTP connection example in `databricks_connection` resource ([#4826](https://github.com/databricks/terraform-provider-databricks/pull/4826))
32-
* Document `encryption_details` block in `databricks_external_location` resource and data source ([#4849](https://github.com/databricks/terraform-provider-databricks/pull/4849))
33-
* Update Databricks SQL objects documentation ([#4840](https://github.com/databricks/terraform-provider-databricks/pull/4840))
34-
* Improve documentation for `databricks_git_credential` resource ([#4837](https://github.com/databricks/terraform-provider-databricks/pull/4837))
35-
* Rename DLT references to Lakeflow Declarative pipelines ([#4842](https://github.com/databricks/terraform-provider-databricks/pull/4842))
36-
* Update the list of UC permissions in UC guide for Azure ([#4852](https://github.com/databricks/terraform-provider-databricks/pull/4852)).
37-
* Clarify and add more examples to `databricks_mws_network_connectivity_config` and `databricks_mws_ncc_private_endpoint_rule` documentation ([#4847](https://github.com/databricks/terraform-provider-databricks/pull/4847))
38-
* Document new attributes in `databricks_app` resource and data sources ([#4848](https://github.com/databricks/terraform-provider-databricks/pull/4848))
39-
4013
### Exporter
4114

42-
* Fix generation of columns in `databricks_sql_table` resource ([#4819](https://github.com/databricks/terraform-provider-databricks/pull/4819)).
43-
4415
### Internal Changes
45-
46-
* Updated the contributing guide with instructions on how to modify the changelog ([#4404](https://github.com/databricks/terraform-provider-databricks/pull/4404)).
47-
* Add synthetic field to jobs resource to control behavior of `apply_policy_default_values` ([#4834](https://github.com/databricks/terraform-provider-databricks/pull/4834)).
48-
* Bump the Go SDK to v0.75.0 ([#4844](https://github.com/databricks/terraform-provider-databricks/pull/4844)).

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.84.0"
3+
var version = "1.85.0"
44

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

0 commit comments

Comments
 (0)