diff --git a/CHANGELOG.md b/CHANGELOG.md index d40fda7b5..38eb30c50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Version changelog +## 0.1.7 + +* Added an extensive set of examples ([#113](https://github.com/databricks/databricks-sdk-py/pull/113)). +* Fixed broken `dbutils.fs.mount` and `dbutils.fs.updateMount` ([#119](https://github.com/databricks/databricks-sdk-py/pull/119)). +* Ignore `.netrc` when sending unauthenticated requests for OAuth handshake ([#108](https://github.com/databricks/databricks-sdk-py/pull/108)). +* Make ApiClient more `pyodide` friendly ([#114](https://github.com/databricks/databricks-sdk-py/pull/114)). +* Persist token acquired through `external-browser` auth type ([#110](https://github.com/databricks/databricks-sdk-py/pull/110)). +* Prototype for notebook-native auth ([#115](https://github.com/databricks/databricks-sdk-py/pull/115)). +* Rename `RefreshableCredentials` to `SessionCredentials` ([#116](https://github.com/databricks/databricks-sdk-py/pull/116)). +* Use shell for opening `az` cli on Windows ([#117](https://github.com/databricks/databricks-sdk-py/pull/117)). + ## 0.1.6 * Preserve original `databricks.sdk.runtime` for internal purposes ([#96](https://github.com/databricks/databricks-sdk-py/pull/96)). diff --git a/README.md b/README.md index dc58c89c2..502be08dc 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ # Databricks SDK for Python -**Stability**: [Experimental](https://docs.databricks.com/release-notes/release-types.html) +**Stability**: [Experimental](https://docs.databricks.com/release-notes/release-types.html) +| Code [examples](https://github.com/databricks/databricks-sdk-py/tree/main/examples) +| See also the [SDK for Go](https://github.com/databricks/databricks-sdk-go) +| See also the [Terraform Provider](https://github.com/databricks/terraform-provider-databricks) +| See also cloud-specific docs ([AWS](https://docs.databricks.com/dev-tools/sdk-python.html), + [Azure](https://learn.microsoft.com/en-us/azure/databricks/dev-tools/sdk-python), + [GCP](https://docs.gcp.databricks.com/dev-tools/sdk-python.html)) The Databricks SDK for Python includes functionality to accelerate development with [Python](https://www.python.org/) for the Databricks Lakehouse. It covers all public [Databricks REST API](https://docs.databricks.com/dev-tools/api/index.html) operations. The SDK's internal HTTP client is robust and handles failures on different levels by performing intelligent retries. -For additional and cloud-specific documentation, you can consult the following pages: -- [AWS Documentation](https://docs.databricks.com/dev-tools/sdk-python.html) -- [Azure Documentation](https://learn.microsoft.com/en-us/azure/databricks/dev-tools/sdk-python) -- [GCP Documentation](https://docs.gcp.databricks.com/dev-tools/sdk-python.html) - ## Contents - [Getting started](#getting-started) diff --git a/databricks/sdk/version.py b/databricks/sdk/version.py index 2fb25139f..124e46203 100644 --- a/databricks/sdk/version.py +++ b/databricks/sdk/version.py @@ -1 +1 @@ -__version__ = '0.1.6' +__version__ = '0.1.7'