Skip to content

Commit ef53b1f

Browse files
[Release] Release v1.105.0
## Release v1.105.0 ### Breaking Changes * Return empty string for `data_source_id` in `databricks_sql_warehouse` and `databricks_sql_endpoint` if data source API call fails ([#5312](#5312)) ### New Features and Improvements * Allow the `cluster_size` argument to be specified as "5X-Large" in `databricks_sql_warehouse` * Update the maximum allowed value for `max_num_clusters` argument in `databricks_sql_warehouse` to 40 (see [API docs](https://docs.databricks.com/api/workspace/warehouses/create#max_num_clusters) for details). ### Bug Fixes * Dashboard File Content Change Detection When Using `file_path` ([#5359])(#5359) * Fix permanent drift in `databricks_model_serving` when using `*_plaintext` credential fields for external models ([#5125](#5125)) ### Documentation * Mark `data_source_id` as deprecated in `databricks_sql_warehouse` and `databricks_sql_endpoint` ([#5312](#5312)) ### Exporter * Add exporting for RFA destinations and Delta Sharing providers ([#5337](#5337)) ### Internal Changes * Update Go SDK to v0.104.0.
1 parent 7106de6 commit ef53b1f

File tree

4 files changed

+32
-17
lines changed

4 files changed

+32
-17
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": "2026-01-22 09:13:59+0000"
2+
"timestamp": "2026-02-05 13:22:20+0000"
33
}

CHANGELOG.md

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

3+
## Release v1.105.0 (2026-02-05)
4+
5+
### Breaking Changes
6+
7+
* Return empty string for `data_source_id` in `databricks_sql_warehouse` and `databricks_sql_endpoint` if data source API call fails ([#5312](https://github.com/databricks/terraform-provider-databricks/pull/5312))
8+
9+
### New Features and Improvements
10+
11+
* Allow the `cluster_size` argument to be specified as "5X-Large" in `databricks_sql_warehouse`
12+
* Update the maximum allowed value for `max_num_clusters` argument in `databricks_sql_warehouse` to 40 (see [API docs](https://docs.databricks.com/api/workspace/warehouses/create#max_num_clusters) for details).
13+
14+
### Bug Fixes
15+
16+
* Dashboard File Content Change Detection When Using `file_path` ([#5359])(https://github.com/databricks/terraform-provider-databricks/pull/5359)
17+
* Fix permanent drift in `databricks_model_serving` when using `*_plaintext` credential fields for external models ([#5125](https://github.com/databricks/terraform-provider-databricks/pull/5125))
18+
19+
### Documentation
20+
21+
* Mark `data_source_id` as deprecated in `databricks_sql_warehouse` and `databricks_sql_endpoint` ([#5312](https://github.com/databricks/terraform-provider-databricks/pull/5312))
22+
23+
### Exporter
24+
25+
* Add exporting for RFA destinations and Delta Sharing providers ([#5337](https://github.com/databricks/terraform-provider-databricks/pull/5337))
26+
27+
### Internal Changes
28+
29+
* Update Go SDK to v0.104.0.
30+
31+
332
## Release v1.104.0 (2026-01-22)
433

534
### New Features and Improvements

NEXT_CHANGELOG.md

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

3-
## Release v1.105.0
3+
## Release v1.106.0
44

55
### Breaking Changes
66

7-
* Return empty string for `data_source_id` in `databricks_sql_warehouse` and `databricks_sql_endpoint` if data source API call fails ([#5312](https://github.com/databricks/terraform-provider-databricks/pull/5312))
8-
97
### New Features and Improvements
108

11-
* Allow the `cluster_size` argument to be specified as "5X-Large" in `databricks_sql_warehouse`
12-
* Update the maximum allowed value for `max_num_clusters` argument in `databricks_sql_warehouse` to 40 (see [API docs](https://docs.databricks.com/api/workspace/warehouses/create#max_num_clusters) for details).
13-
149
### Bug Fixes
1510

16-
* Dashboard File Content Change Detection When Using `file_path` ([#5359])(https://github.com/databricks/terraform-provider-databricks/pull/5359)
17-
* Fix permanent drift in `databricks_model_serving` when using `*_plaintext` credential fields for external models ([#5125](https://github.com/databricks/terraform-provider-databricks/pull/5125))
18-
1911
### Documentation
2012

21-
* Mark `data_source_id` as deprecated in `databricks_sql_warehouse` and `databricks_sql_endpoint` ([#5312](https://github.com/databricks/terraform-provider-databricks/pull/5312))
22-
2313
### Exporter
2414

25-
* Add exporting for RFA destinations and Delta Sharing providers ([#5337](https://github.com/databricks/terraform-provider-databricks/pull/5337))
26-
2715
### Internal Changes
28-
29-
* Update Go SDK to v0.104.0.

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

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

0 commit comments

Comments
 (0)