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
- AWS: When OVERWRITE is false, which is set by default, the file is uploaded if no same file name exists in the stage. This used to check the content signature but it will no longer check. Azure and GCP already work this way.
16
+
- Document Python connector dependencies on our GitHub page in addition to Snowflake docs.
17
+
- Fix sqlalchemy and possibly python-connector warnings.
18
+
- Fix GCP exception using the Python connector to PUT a file in a stage with auto_compress=false.
19
+
- Bump up botocore requirements to 1.14.
20
+
- Fix uppercaseing authenticator breaks Okta URL which may include case-sensitive elements(#257).
21
+
- Fix wrong result bug while using fetch_pandas_all() to get fixed numbers with large scales.
22
+
- Increase multi part upload threshold for S3 to 64MB.
23
+
12
24
- v2.1.3(January 06,2020)
13
-
25
+
14
26
- Fix GCP Put failed after hours
15
-
27
+
16
28
- v2.1.2(December 16,2019)
17
29
18
30
- Fix the arrow bundling issue for python connector on mac.
@@ -77,7 +89,7 @@ Release Notes
77
89
- Fix memory leak in python connector panda df fetch API
78
90
79
91
- v1.9.1(October 4,2019)
80
-
92
+
81
93
- Add asn1crypto requirement to mitigate incompatibility change.
82
94
83
95
- v1.9.0(August 26,2019) **REMOVED from pypi due to dependency compatibility issues**
@@ -99,7 +111,7 @@ Release Notes
99
111
- Fix Azure Gov PUT and GET issue
100
112
101
113
- v1.8.6(July 29,2019)
102
-
114
+
103
115
- Reduce retries for OCSP from Python Driver
104
116
- Azure PUT issue: ValueError: I/O operation on closed file
105
117
- Add client information to USER-AGENT HTTP header - PythonConnector
@@ -135,13 +147,13 @@ Release Notes
135
147
- Add Option to Skip Request Pooling
136
148
- Add OCSP_MODE metric
137
149
- Fixed PUT URI issue for Windows path
138
-
- OCSP SoftFail
150
+
- OCSP SoftFail
139
151
140
152
- v1.7.11 (April 22, 2019)
141
153
142
154
- numpy timestamp with timezone support
143
155
- qmark not binding None
144
-
156
+
145
157
- v1.7.10 (April 8, 2019)
146
158
147
159
- Fix the incorrect custom Server URL in Python Driver for Privatelink
@@ -231,7 +243,7 @@ Release Notes
231
243
232
244
- Enforce virtual host URL for PUT and GET.
233
245
- Added retryCount, clientStarTime for query-request for better service.
234
-
246
+
235
247
- v1.6.6 (August 9, 2018)
236
248
237
249
- Replaced ``pycryptodome`` with ``pycryptodomex`` to avoid namespace conflict with ``PyCrypto``.
@@ -520,7 +532,7 @@ Release Notes
520
532
521
533
- Added support for the ``BINARY`` data type, which enables support for more Python data types:
522
534
523
-
- Python 3:
535
+
- Python 3:
524
536
525
537
- ``bytes`` and ``bytearray`` can be used for binding.
526
538
- ``bytes`` is also used for fetching ``BINARY`` data type.
@@ -633,12 +645,12 @@ Release Notes
633
645
- v1.0.3 (Jan 13, 2016)
634
646
635
647
- Added support for the ``BOOLEAN`` data type (i.e. ``TRUE`` or ``FALSE``). This changes the behavior of the binding for the ``bool`` type object:
636
-
648
+
637
649
- Previously, ``bool`` was bound as a numeric value (i.e. ``1`` for ``True``, ``0`` for ``False``).
638
650
- Now, ``bool`` is bound as native SQL data (i.e. ``TRUE`` or ``FALSE``).
639
651
640
652
- Added the ``autocommit`` method to the ``Connection`` object:
641
-
653
+
642
654
- By default, ``autocommit`` mode is ON (i.e. each DML statement commits the change).
643
655
- If ``autocommit`` mode is OFF, the ``commit`` and ``rollback`` methods are enabled.
0 commit comments