Skip to content

Commit af1aae7

Browse files
author
Jesse
authored
Bump version to 2.9.0 (#189)
* Add note to changelog about using cloud_fetch Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 019acd8 commit af1aae7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# Release History
22

3-
## 2.8.x (Unreleased)
3+
## 2.10.x (Unreleased)
4+
5+
## 2.9.0 (2023-08-10)
46

57
- Replace retry handling with DatabricksRetryPolicy. This is disabled by default. To enable, set `enable_v3_retries=True` when creating `databricks.sql.client`
68
- Other: Fix typo in README quick start example
79
- Other: Add autospec to Client mocks and tidy up `make_request`
810

911
## 2.8.0 (2023-07-21)
1012

11-
- Add support for Cloud Fetch (#146, #151, #154)
13+
- Add support for Cloud Fetch. Disabled by default. Set `use_cloud_fetch=True` when building `databricks.sql.client` to enable it (#146, #151, #154)
1214
- SQLAlchemy has_table function now honours schema= argument and adds catalog= argument (#174)
1315
- SQLAlchemy set non_native_boolean_check_constraint False as it's not supported by Databricks (#120)
1416
- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x (#173)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databricks-sql-connector"
3-
version = "2.8.0"
3+
version = "2.9.0"
44
description = "Databricks SQL Connector for Python"
55
authors = ["Databricks <[email protected]>"]
66
license = "Apache-2.0"

src/databricks/sql/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __repr__(self):
2828
DATE = DBAPITypeObject("date")
2929
ROWID = DBAPITypeObject()
3030

31-
__version__ = "2.8.0"
31+
__version__ = "2.9.0"
3232
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3333

3434
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)