File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 22# the repo. Unless a later match takes precedence, these
33# users will be requested for review when someone opens a
44# pull request.
5- * @ rcypher-databricks @ arikfr @ yunbodeng-db @ andrefurlan-db @ jackyhu-db @ benc-db @ kravets-levko
5+ * @ rcypher-databricks @ yunbodeng-db @ andrefurlan-db @ jackyhu-db @ benc-db @ kravets-levko
Original file line number Diff line number Diff line change 11# Release History
22
3- # x.x.x (TBD )
3+ # 3.3.0 (2024-07-18 )
44
5- - Don't retry requests that fail with code 401
5+ - Don't retry requests that fail with HTTP code 401 (databricks/databricks-sql-python #408 by @Hodnebo )
6+ - Remove username/password (aka "basic") auth option (databricks/databricks-sql-python #409 by @jackyhu-db )
7+ - Refactor CloudFetch handler to fix numerous issues with it (databricks/databricks-sql-python #405 by @kravets-levko )
8+ - Add option to disable SSL verification for CloudFetch links (databricks/databricks-sql-python #414 by @kravets-levko )
9+
10+ Databricks-managed passwords reached end of life on July 10, 2024. Therefore, Basic auth support was removed from
11+ the library. See https://docs.databricks.com/en/security/auth-authz/password-deprecation.html
12+
13+ The existing option ` _tls_no_verify=True ` of ` sql.connect(...) ` will now also disable SSL cert verification
14+ (but not the SSL itself) for CloudFetch links. This option should be used as a workaround only, when other ways
15+ to fix SSL certificate errors didn't work.
616
717# 3.2.0 (2024-06-06)
818
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " databricks-sql-connector"
3- version = " 3.2 .0"
3+ version = " 3.3 .0"
44description = " Databricks SQL Connector for Python"
55authors = [" Databricks <databricks-sql-connector-maintainers@databricks.com>" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def __repr__(self):
6868DATE = DBAPITypeObject ("date" )
6969ROWID = DBAPITypeObject ()
7070
71- __version__ = "3.2 .0"
71+ __version__ = "3.3 .0"
7272USER_AGENT_NAME = "PyDatabricksSqlConnector"
7373
7474# These two functions are pyhive legacy
You can’t perform that action at this time.
0 commit comments