File tree Expand file tree Collapse file tree 2 files changed +1
-18
lines changed Expand file tree Collapse file tree 2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,6 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
8
8
9
9
# Release Notes
10
10
11
- <<<<<<< HEAD
12
- =======
13
- - v3.12.5(TBD)
14
- - Added a feature to limit the sizes of IO-bound ThreadPoolExecutors during PUT and GET commands.
15
- - Adding support for the new PAT authentication method.
16
- - Updated README.md to include instructions on how to verify package signatures using ` cosign ` .
17
- - Updated the log level for cursor's chunk rowcount from INFO to DEBUG.
18
- - Added a feature to verify if the connection is still good enough to send queries over.
19
- - Added support for base64-encoded DER private key strings in the ` private_key ` authentication type.
20
-
21
- - v3.12.4(December 3,2024)
22
- - Fixed a bug where multipart uploads to Azure would be missing their MD5 hashes.
23
- - Fixed a bug where OpenTelemetry header injection would sometimes cause Exceptions to be thrown.
24
- - Fixed a bug where OCSP checks would throw TypeError and make mainly GCP blob storage unreachable.
25
- - Bumped pyOpenSSL dependency from >=16.2.0,<25.0.0 to >=22.0.0,<25.0.0.
26
-
27
- >>>>>>> 4b3ded11 (Support base64-encoded DER private keys (#2134 ))
28
11
- v3.12.3(October 25,2024)
29
12
- Improved the error message for SSL-related issues to provide clearer guidance when an SSL error occurs.
30
13
- Improved error message for SQL execution cancellations caused by timeout.
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def fin():
128
128
pass
129
129
130
130
# Ensure the base64-encoded version also works
131
- db_config ["private_key" ] = base64 .b64encode (private_key_der )
131
+ db_config ["private_key" ] = base64 .b64encode (private_key_der ). decode ()
132
132
with snowflake .connector .connect (** db_config ) as _ :
133
133
pass
134
134
You can’t perform that action at this time.
0 commit comments