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 2
2
# the repo. Unless a later match takes precedence, these
3
3
# users will be requested for review when someone opens a
4
4
# 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 1
1
# Release History
2
2
3
- # x.x.x (TBD )
3
+ # 3.3.0 (2024-07-18 )
4
4
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.
6
16
7
17
# 3.2.0 (2024-06-06)
8
18
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " databricks-sql-connector"
3
- version = " 3.2 .0"
3
+ version = " 3.3 .0"
4
4
description = " Databricks SQL Connector for Python"
5
5
authors = [" Databricks <databricks-sql-connector-maintainers@databricks.com>" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def __repr__(self):
68
68
DATE = DBAPITypeObject ("date" )
69
69
ROWID = DBAPITypeObject ()
70
70
71
- __version__ = "3.2 .0"
71
+ __version__ = "3.3 .0"
72
72
USER_AGENT_NAME = "PyDatabricksSqlConnector"
73
73
74
74
# These two functions are pyhive legacy
You can’t perform that action at this time.
0 commit comments