From 2b4392de64d954d1b847629694e38cf195da9186 Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Fri, 11 Aug 2023 12:44:40 -0400 Subject: [PATCH 1/3] Bump to 2.9.1 Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 195204cf7..1fe5476db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.9.x (Unreleased) +## 2.9.1 (2023-08-11) + - Other: Explicitly pin urllib3 to ^2.0.0 ## 2.9.0 (2023-08-10) diff --git a/pyproject.toml b/pyproject.toml index e795dfc58..5f24cdc99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.9.0" +version = "2.9.1" 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 c55d17ca6..0be19d5b8 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -28,7 +28,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "2.9.0" +__version__ = "2.9.1" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy From 7bf10192d8a3d67b53c593524d84f210d83fb7af Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Thu, 17 Aug 2023 08:53:02 -0400 Subject: [PATCH 2/3] Bump to version 2.9.2 and update changelog Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e14d47008..7f9ea9d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.9.x (Unreleased) +## 2.9.2 (2023-08-17) + - Other: Add `examples/v3_retries_query_execute.py` - Other: suppress log message when `_enable_v3_retries` is not `True` - Other: make this connector backwards compatible with `urllib3>=1.0.0` diff --git a/pyproject.toml b/pyproject.toml index f3c165093..cf5a13deb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.9.1" +version = "2.9.2" 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 0be19d5b8..6af6d227a 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -28,7 +28,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "2.9.1" +__version__ = "2.9.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy From f4f201df247b6e428ab0daee24d2b8e2e61b4fdd Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Thu, 24 Aug 2023 12:09:11 -0400 Subject: [PATCH 3/3] Update package version to 2.9.3 patch version as this fixes urllib3 behaviour when urllib3<=2.0.0 is installed Signed-off-by: Jesse Whitehouse --- pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cf5a13deb..1565e0dd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.9.2" +version = "2.9.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 6af6d227a..918bd47a6 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -28,7 +28,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "2.9.2" +__version__ = "2.9.3" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy