You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our current python connector does not support a configuration with intermediate certificates in a trust store as roots of trust. This is allowed by RFCs; the root does not need to be self signed, and this is the behavior we have in our Go client.
These changes enable partial chain validation to normalize behavior across clients.
Copy file name to clipboardExpand all lines: DESCRIPTION.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
11
11
- Added the `workload_identity_impersonation_path` parameter to support service account impersonation for Workload Identity Federation on GCP and AWS workloads only
12
12
- Fixed `get_results_from_sfqid` when using `DictCursor` and executing multiple statements at once
13
13
- Added the `oauth_credentials_in_body` parameter supporting an option to send the oauth client credentials in the request body
14
+
- Added support for intermediate certificates as roots when they are stored in the trust store
Called from SnowflakeConnection so that OCSP downloads
72
122
use the same proxy / header configuration as the initiating connection.
73
123
74
-
Alternative approach would be moving method inject_into_urllib3() inside connection initialization, but in case this delay (from module import time to connection initialization time) would cause some code to break we stayed with this approach, having in mind soon OCSP deprecation.
124
+
Alternative approach would be moving method inject_into_urllib3() inside
125
+
connection initialization, but in case this delay (from module import time
126
+
to connection initialization time) would cause some code to break we stayed
127
+
with this approach, having in mind soon OCSP deprecation.
0 commit comments