From 1e013668858d086dcdc37467d67f7b1baa0b8227 Mon Sep 17 00:00:00 2001 From: Sreekanth Vadigi Date: Wed, 17 Sep 2025 16:38:57 +0530 Subject: [PATCH 1/3] Ready for 4.1.3 release Signed-off-by: Sreekanth Vadigi --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06c12bdc6..9ac0bd0e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +# 4.1.3 (2025-09-17) +- query tags integration (#663 by @sreekanth-db) +- add variant support (#560 by @shivam2680) +- Increased the limit for long running query (#686 by @jprakash-db) + # 4.1.2 (2025-08-22) - Streaming ingestion support for PUT operation (databricks/databricks-sql-python#643 by @sreekanth-db) - Removed use_threads argument on concat_tables for compatibility with pyarrow<14 (databricks/databricks-sql-python#684 by @jprakash-db) diff --git a/pyproject.toml b/pyproject.toml index 6f0f74710..a1f43bc70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "4.1.2" +version = "4.1.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 31b5cbb7f..a2d444f39 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__ = "4.1.2" +__version__ = "4.1.3" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy From f705519434a7395f5353ee19a7ba06d0a9c9b361 Mon Sep 17 00:00:00 2001 From: Sreekanth Vadigi Date: Wed, 17 Sep 2025 17:13:28 +0530 Subject: [PATCH 2/3] addressing review comments Signed-off-by: Sreekanth Vadigi --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ac0bd0e3..01cf662fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ # Release History # 4.1.3 (2025-09-17) -- query tags integration (#663 by @sreekanth-db) -- add variant support (#560 by @shivam2680) -- Increased the limit for long running query (#686 by @jprakash-db) +- Query tags integration (databricks/databricks-sql-python#663 by @sreekanth-db) +- Add variant support (databricks/databricks-sql-python#560 by @shivam2680) +- Increased the limit for long running query (databricks/databricks-sql-python#686 by @jprakash-db) # 4.1.2 (2025-08-22) - Streaming ingestion support for PUT operation (databricks/databricks-sql-python#643 by @sreekanth-db) From 386f63f55ad51a4b3354f9ceedb9aa267a4288c0 Mon Sep 17 00:00:00 2001 From: Sreekanth Date: Wed, 17 Sep 2025 23:10:06 +0530 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01cf662fc..f113127e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,6 @@ # 4.1.3 (2025-09-17) - Query tags integration (databricks/databricks-sql-python#663 by @sreekanth-db) - Add variant support (databricks/databricks-sql-python#560 by @shivam2680) -- Increased the limit for long running query (databricks/databricks-sql-python#686 by @jprakash-db) # 4.1.2 (2025-08-22) - Streaming ingestion support for PUT operation (databricks/databricks-sql-python#643 by @sreekanth-db)