From f5042377a44629b1fc6943bdf6a34d9e65c64ae6 Mon Sep 17 00:00:00 2001 From: Jothi Prakash Date: Fri, 28 Feb 2025 11:41:58 +0530 Subject: [PATCH] Version bump changes --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94db8bcdc..01547f0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +# 3.7.3 (2025-03-28) + +- Fix: Unable to poll small results in execute_async function (databricks/databricks-sql-python#515 by @jprakash-db) +- Updated log messages to show the status code and error messages of requests (databricks/databricks-sql-python#511 by @jprakash-db) +- Fix: Incorrect metadata was fetched in case of queries with the same alias (databricks/databricks-sql-python#505 by @jprakash-db) + # 3.7.2 (2025-01-31) - Updated the retry_dela_max and retry_timeout (databricks/databricks-sql-python#497 by @jprakash-db) diff --git a/pyproject.toml b/pyproject.toml index 6a38e33b1..a393c0f2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.7.2" +version = "3.7.3" description = "Databricks SQL Connector for Python" authors = ["Databricks "] license = "Apache-2.0" diff --git a/src/databricks/sql/__init__.py b/src/databricks/sql/__init__.py index 931e5c0af..7769d8f42 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -68,7 +68,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.7.2" +__version__ = "3.7.3" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy