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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,14 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
16
16
- Added experimental support for OAuth authorization code and client credentials flows.
17
17
- Improved error message for client-side query cancellations due to timeouts.
18
18
- Added support of GCS regional endpoints.
19
-
- Added `gcs_use_virtual_endpoints` connection property that forces the usage of the virtual GCS usage. Thanks to this it should be possible to set up private DNS entry for the GCS endpoint. See more: https://cloud.google.com/storage/docs/request-endpoints#xml-api
20
19
- Fixed a bug that caused driver to fail silently on `TO_DATE` arrow to python conversion when invalid date was followed by the correct one.
21
20
- Added `check_arrow_conversion_error_on_every_column` connection property that can be set to `False` to restore previous behaviour in which driver will ignore errors until it occurs in the last column. This flag's purpose is to unblock workflows that may be impacted by the bugfix and will be removed in later releases.
22
21
- Lower log levels from info to debug for some of the messages to make the output easier to follow.
23
22
- Allow the connector to inherit a UUID4 generated upstream, provided in statement parameters (field: `requestId`), rather than automatically generate a UUID4 to use for the HTTP Request ID.
24
23
- Improved logging in urllib3, boto3, botocore - assured data masking even after migration to the external owned library in the future.
25
24
- Fix expired S3 credentials update and increment retry when expired credentials are found.
26
25
- Added `client_fetch_threads` experimental parameter to better utilize threads for fetching query results.
26
+
- Added support of GCS virtual urls. See more: https://cloud.google.com/storage/docs/request-endpoints#xml-api
27
27
28
28
- v3.14.0(March 03, 2025)
29
29
- Bumped pyOpenSSL dependency upper boundary from <25.0.0 to <26.0.0.
), # SNOW-1817982: limit iobound TPE sizes when executing PUT/GET
323
-
"gcs_use_virtual_endpoints": (
324
-
False,
325
-
bool,
326
-
), # use https://{bucket}.storage.googleapis.com instead of https://storage.googleapis.com/{bucket}
327
323
"oauth_client_id": (
328
324
None,
329
325
(type(None), str),
@@ -439,7 +435,6 @@ class SnowflakeConnection:
439
435
before the connector shuts down. Default value is false.
440
436
token_file_path: The file path of the token file. If both token and token_file_path are provided, the token in token_file_path will be used.
441
437
unsafe_file_write: When true, files downloaded by GET will be saved with 644 permissions. Otherwise, files will be saved with safe - owner-only permissions: 600.
442
-
gcs_use_virtual_endpoints: When true, the virtual endpoint url is used, see: https://cloud.google.com/storage/docs/request-endpoints#xml-api
443
438
check_arrow_conversion_error_on_every_column: When true, the error check after the conversion from arrow to python types will happen for every column in the row. This is a new behaviour which fixes the bug that caused the type errors to trigger silently when occurring at any place other than last column in a row. To revert the previous (faulty) behaviour, please set this flag to false.
0 commit comments