Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.0 #282

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen/_openapi_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
386b65ecdc825b9c3ed4aa7ca88e2e5baf9d87df
1e3533f94335f0e6c5d9262bc1fea95b3ddcb0e1
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Version changelog

## 0.5.0

* Added `connection_pool_size` configuration property (preview) ([#276](https://github.com/databricks/databricks-sdk-py/pull/276)).
* Fixed OAuth M2M corner case in `WorkspaceClient` where `DATABRICKS_ACCOUNT_ID` is present in the environment ([#273](https://github.com/databricks/databricks-sdk-py/pull/273)).

API Changes:

* Changed `create()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsStorageCredentialInfo` dataclass.
* Changed `get()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsStorageCredentialInfo` dataclass.
* Changed `update()` method for [a.account_storage_credentials](https://databricks-sdk-py.readthedocs.io/en/latest/account/account_storage_credentials.html) account-level service to return `databricks.sdk.service.catalog.AccountsStorageCredentialInfo` dataclass.
* Changed `create()` method for [w.connections](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/connections.html) workspace-level service with new required argument order.
* Changed `update()` method for [w.connections](https://databricks-sdk-py.readthedocs.io/en/latest/workspace/connections.html) workspace-level service with new required argument order.
* Removed `options_kvpairs` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Removed `properties_kvpairs` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Added `options` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Added `properties` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Added `provisioning_state` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Added `securable_kind` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Added `securable_type` field for `databricks.sdk.service.catalog.ConnectionInfo`.
* Removed `options_kvpairs` field for `databricks.sdk.service.catalog.CreateConnection`.
* Removed `properties_kvpairs` field for `databricks.sdk.service.catalog.CreateConnection`.
* Added `options` field for `databricks.sdk.service.catalog.CreateConnection`.
* Added `properties` field for `databricks.sdk.service.catalog.CreateConnection`.
* Changed `algorithm` field for `databricks.sdk.service.catalog.SseEncryptionDetails` to no longer be required.
* Removed `options_kvpairs` field for `databricks.sdk.service.catalog.UpdateConnection`.
* Added `options` field for `databricks.sdk.service.catalog.UpdateConnection`.
* Added `databricks.sdk.service.catalog.AccountsStorageCredentialInfo` dataclass.
* Added `databricks.sdk.service.catalog.ConnectionInfoSecurableKind` dataclass.
* Added `databricks.sdk.service.catalog.ProvisioningState` dataclass.
* Added `data_security_mode` field for `databricks.sdk.service.compute.CreateCluster`.
* Added `docker_image` field for `databricks.sdk.service.compute.CreateCluster`.
* Added `single_user_name` field for `databricks.sdk.service.compute.CreateCluster`.
* Removed `schema` field for `databricks.sdk.service.iam.PartialUpdate`.
* Added `schemas` field for `databricks.sdk.service.iam.PartialUpdate`.

OpenAPI SHA: 1e3533f94335f0e6c5d9262bc1fea95b3ddcb0e1, Date: 2023-08-11

## 0.4.0

To simplify documentation and management of object permissions, this release features a major reorganization of how permissions APIs are structured in the SDK. Rather than using a single permissions.get() API for all services, each service supporting permissions has its own permissions APIs. Follow these steps to migrate to the current SDK:
Expand Down
117 changes: 81 additions & 36 deletions databricks/sdk/service/catalog.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading