Skip to content

Commit 2054d61

Browse files
Merge branch 'main' into SNOW-2129602-ensure-scheme-in-gcs-stage-endpoints
2 parents 4fc2bab + 2e1ced7 commit 2054d61

35 files changed

+2732
-324
lines changed

.pre-commit-config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,19 @@ repos:
4747
hooks:
4848
- id: pyupgrade
4949
args: [--py38-plus]
50+
- repo: local
51+
hooks:
52+
- id: check-no-native-http
53+
name: Check for native HTTP calls
54+
entry: python ci/pre-commit/check_no_native_http.py
55+
language: system
56+
files: ^src/snowflake/connector/.*\.py$
57+
exclude: |
58+
(?x)^(
59+
src/snowflake/connector/session_manager\.py|
60+
src/snowflake/connector/vendored/.*
61+
)$
62+
args: [--show-fixes]
5063
- repo: https://github.com/PyCQA/flake8
5164
rev: 7.1.1
5265
hooks:

DESCRIPTION.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
2323
- Moved `OAUTH_TYPE` to `CLIENT_ENVIROMENT`.
2424
- Fix bug where PAT with external session authenticator was used while `external_session_id` was not provided in `SnowflakeRestful.fetch`
2525
- Added support for parameter `use_vectorized_scanner` in function `write_pandas`.
26-
- Fix GCS staging by ensuring the endpoint has a scheme.
26+
- Fixed GCS staging by ensuring the endpoint has a scheme.
27+
- Populate type_code in ResultMetadata for interval types.
2728

2829
- v3.16.0(July 04,2025)
2930
- Bumped numpy dependency from <2.1.0 to <=2.2.4.

0 commit comments

Comments
 (0)