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
Copy file name to clipboardExpand all lines: DESCRIPTION.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,27 +7,29 @@ https://docs.snowflake.com/
7
7
Source code is also available at: https://github.com/snowflakedb/snowflake-connector-python
8
8
9
9
# Release Notes
10
-
- v3.18.0(TBD)
10
+
- v4.1.0(TBD)
11
+
12
+
- v4.0.0(October 01,2025)
11
13
- Added support for checking certificates revocation using revocation lists (CRLs)
12
14
- Added the `workload_identity_impersonation_path` parameter to support service account impersonation for Workload Identity Federation on GCP and AWS workloads only
13
15
- Fixed `get_results_from_sfqid` when using `DictCursor` and executing multiple statements at once
14
16
- Added the `oauth_credentials_in_body` parameter supporting an option to send the oauth client credentials in the request body
15
17
- Fix retry behavior for `ECONNRESET` error
16
18
- Added an option to exclude `botocore` and `boto3` dependencies by setting `SNOWFLAKE_NO_BOTO` environment variable during installation
17
19
- Revert changing exception type in case of token expired scenario for `Oauth` authenticator back to `DatabaseError`
18
-
- Added support for pandas conversion for Day-time and Year-Month Interval types
19
20
- Enhanced configuration file security checks with stricter permission validation.
20
21
- Configuration files writable by group or others now raise a `ConfigSourceError` with detailed permission information, preventing potential credential tampering.
22
+
- Added support for pandas conversion for Day-time and Year-Month Interval types
23
+
- Fixed the return type of `SnowflakeConnection.cursor(cursor_class)` to match the type of `cursor_class`
24
+
- Constrained the types of `fetchone`, `fetchmany`, `fetchall`
25
+
- As part of this fix, `DictCursor` is no longer a subclass of `SnowflakeCursor`; use `SnowflakeCursorBase` as a superclass of both.
21
26
- Fix "No AWS region was found" error if AWS region was set in `AWS_DEFAULT_REGION` variable instead of `AWS_REGION` for `WORKLOAD_IDENTITY` authenticator
22
27
- Add `ocsp_root_certs_dict_lock_timeout` connection parameter to set the timeout (in seconds) for acquiring the lock on the OCSP root certs dictionary. Default value for this parameter is -1 which indicates no timeout.
23
28
24
29
- v3.17.4(September 22,2025)
25
30
- Added support for intermediate certificates as roots when they are stored in the trust store
26
31
- Bumped up vendored `urllib3` to `2.5.0` and `requests` to `v2.32.5`
27
32
- Dropped support for OpenSSL versions older than 1.1.1
28
-
- Fixed the return type of `SnowflakeConnection.cursor(cursor_class)` to match the type of `cursor_class`
29
-
- Constrained the types of `fetchone`, `fetchmany`, `fetchall`
30
-
- As part of this fix, `DictCursor` is no longer a subclass of `SnowflakeCursor`; use `SnowflakeCursorBase` as a superclass of both.
0 commit comments