|
1 | 1 | # Version changelog |
2 | 2 |
|
| 3 | +## 0.20.0 |
| 4 | + |
| 5 | +Major Changes: |
| 6 | + |
| 7 | +* Updated behaviour for raw parameter in `ApiClient.do()` method. The raw data is not returned directly anymore, but as part of a dict with the `contents` key. This dict will also contain response headers if returned by the API. |
| 8 | + |
| 9 | +Internal Changes: |
| 10 | + |
| 11 | +* Add get_workspace_id to docgen blocklist ([#549](https://github.com/databricks/databricks-sdk-py/pull/549)). |
| 12 | +* Support HEAD operation and response Headers ([#547](https://github.com/databricks/databricks-sdk-py/pull/547)). |
| 13 | + |
| 14 | +API Changes: |
| 15 | + |
| 16 | + * Changed `delete()`, `get()` and `update()` methods for [w.connections](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/connections.html) workspace-level service with new required argument order. |
| 17 | + * Changed `update()` method for [w.lakehouse_monitors](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/lakehouse_monitors.html) workspace-level service with new required argument order. |
| 18 | + * Changed `delete()`, `get()` and `update()` methods for [w.volumes](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/volumes.html) workspace-level service with new required argument order. |
| 19 | + * Added [w.online_tables](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/online_tables.html) workspace-level service. |
| 20 | + * Renamed `name_arg` field to `name` for the following dataclasses: `databricks.sdk.service.catalog.DeleteConnectionRequest`, |
| 21 | + `databricks.sdk.service.catalog.GetConnectionRequest`, |
| 22 | + `databricks.sdk.service.catalog.UpdateConnection`, |
| 23 | + `databricks.sdk.service.sharing.DeleteCleanRoomRequest`, |
| 24 | + `databricks.sdk.service.sharing.GetCleanRoomRequest` and |
| 25 | + `databricks.sdk.service.sharing.UpdateCleanRoom`. |
| 26 | + * Removed `full_name_arg` field for `databricks.sdk.service.catalog.DeleteVolumeRequest`. |
| 27 | + * Added `name` field for `databricks.sdk.service.catalog.DeleteVolumeRequest`. |
| 28 | + * Added `max_results` field for `databricks.sdk.service.catalog.ListVolumesRequest`. |
| 29 | + * Added `page_token` field for `databricks.sdk.service.catalog.ListVolumesRequest`. |
| 30 | + * Added `next_page_token` field for `databricks.sdk.service.catalog.ListVolumesResponseContent`. |
| 31 | + * Removed `full_name_arg` field for `databricks.sdk.service.catalog.ReadVolumeRequest`. |
| 32 | + * Added `name` field for `databricks.sdk.service.catalog.ReadVolumeRequest`. |
| 33 | + * Removed `assets_dir` field for `databricks.sdk.service.catalog.UpdateMonitor`. |
| 34 | + * Removed `full_name_arg` field for `databricks.sdk.service.catalog.UpdateVolumeRequestContent`. |
| 35 | + * Added `name` field for `databricks.sdk.service.catalog.UpdateVolumeRequestContent`. |
| 36 | + * Added the following catalog dataclasses: `ContinuousUpdateStatus`, `DeleteOnlineTableRequest`, `FailedStatus`, |
| 37 | + `GetOnlineTableRequest`, `OnlineTable`, `OnlineTableSpec`, `OnlineTableState`, `OnlineTableStatus`, |
| 38 | + `PipelineProgress`, `ProvisioningStatus`, `TriggeredUpdateStatus` and `ViewData`. |
| 39 | + * Added `get_directory_metadata()` method for [w.files](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/files.html) workspace-level service. |
| 40 | + * Added `get_metadata()` method for [w.files](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/files.html) workspace-level service. |
| 41 | + * Added `content_length`, `content_type` and `last_modified` fields for `databricks.sdk.service.files.DownloadResponse`. |
| 42 | + * Added the following files dataclasses: `FileSize`, `GetDirectoryMetadataRequest`, `GetMetadataRequest`, |
| 43 | + `GetMetadataResponse` and `LastModifiedHttpDate`. |
| 44 | + * Removed `trigger_history` field for `databricks.sdk.service.jobs.Job`. |
| 45 | + * Removed `databricks.sdk.service.jobs.TriggerEvaluation` dataclass. |
| 46 | + * Removed `databricks.sdk.service.jobs.TriggerHistory` dataclass. |
| 47 | + * Added `table` field for `databricks.sdk.service.jobs.TriggerSettings`. |
| 48 | + * Added `databricks.sdk.service.jobs.Condition` dataclass. |
| 49 | + * Added `databricks.sdk.service.jobs.TableTriggerConfiguration` dataclass. |
| 50 | + * Removed `config` field for `databricks.sdk.service.serving.ExternalModel`. |
| 51 | + * Removed `databricks.sdk.service.serving.ExternalModelConfig` dataclass. Fields moved to `databricks.sdk.service.serving.ExternalModel`. |
| 52 | + * Added `max_provisioned_throughput` and `min_provisioned_throughput` fields for `databricks.sdk.service.serving.ServedEntityInput`. |
| 53 | + * Added `max_provisioned_throughput` and `min_provisioned_throughput` fields for `databricks.sdk.service.serving.ServedEntityOutput`. |
| 54 | + * Changed `delete()` method for [w.clean_rooms](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/clean_rooms.html) workspace-level service with new required argument order. |
| 55 | + * Changed `get()` method for [w.clean_rooms](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/clean_rooms.html) workspace-level service with new required argument order. |
| 56 | + * Changed `update()` method for [w.clean_rooms](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/clean_rooms.html) workspace-level service with new required argument order. |
| 57 | + * Added `enum_options` field for `databricks.sdk.service.sql.Parameter`. |
| 58 | + * Added `multi_values_options` field for `databricks.sdk.service.sql.Parameter`. |
| 59 | + * Added `query_id` field for `databricks.sdk.service.sql.Parameter`. |
| 60 | + * Added `databricks.sdk.service.sql.MultiValuesOptions` dataclass. |
| 61 | + |
| 62 | +OpenAPI SHA: cdd76a98a4fca7008572b3a94427566dd286c63b, Date: 2024-02-19 |
| 63 | + |
3 | 64 | ## 0.19.1 |
4 | 65 |
|
5 | 66 | New features: |
|
0 commit comments