Skip to content

Commit 530d441

Browse files
authored
SNOW-665361: Bumped up PythonConnector PATCH version from 2.7.12 to 2… (#1255)
1 parent 0afbf90 commit 530d441

File tree

7 files changed

+25
-19
lines changed

7 files changed

+25
-19
lines changed

DESCRIPTION.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
88

99
# Release Notes
1010

11-
- v2.7.13 (Unreleased)
11+
- v2.8.0(September 27,2022)
1212

13+
- Fixed a bug where rowcount was deleted when the cursor was closed
14+
- Fixed a bug where extTypeName was used even when it was empty
15+
- Updated how telemetry entries are constructed
16+
- Added telemetry for imported root packages during run-time
17+
- Added telemetry for using write_pandas
1318
- Fixed missing dtypes when calling fetch_pandas_all() on empty result
19+
- The write_pandas function now supports providing additional arguments to be used by DataFrame.to_parquet
20+
- All optional parameters of write_pandas can now be provided to pd_writer and make_pd_writer to be used with DataFrame.to_sql
1421

1522
- v2.7.12(August 26,2022)
1623

src/snowflake/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Update this for the versions
22
# Don't change the forth version number from None
3-
VERSION = (2, 7, 12, None)
3+
VERSION = (2, 8, 0, None)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Generated on: Python 3.10.6
22
asn1crypto==1.5.1
3-
certifi==2022.6.15
3+
certifi==2022.9.14
44
cffi==1.15.1
55
charset-normalizer==2.1.1
66
cryptography==36.0.2
77
filelock==3.8.0
8-
idna==3.3
8+
idna==3.4
99
oscrypto==1.3.0
1010
pycparser==2.21
1111
pycryptodomex==3.15.0
12-
PyJWT==2.4.0
12+
PyJWT==2.5.0
1313
pyOpenSSL==22.0.0
1414
pytz==2022.2.1
1515
requests==2.28.1
1616
typing_extensions==4.3.0
1717
urllib3==1.26.12
18-
snowflake-connector-python==2.7.12
18+
snowflake-connector-python==2.8.0
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Generated on: Python 3.7.13
22
asn1crypto==1.5.1
3-
certifi==2022.6.15
3+
certifi==2022.9.14
44
cffi==1.15.1
55
charset-normalizer==2.1.1
66
cryptography==36.0.2
77
filelock==3.8.0
8-
idna==3.3
8+
idna==3.4
99
oscrypto==1.3.0
1010
pycparser==2.21
1111
pycryptodomex==3.15.0
12-
PyJWT==2.4.0
12+
PyJWT==2.5.0
1313
pyOpenSSL==22.0.0
1414
pytz==2022.2.1
1515
requests==2.28.1
1616
typing_extensions==4.3.0
1717
urllib3==1.26.12
18-
snowflake-connector-python==2.7.12
18+
snowflake-connector-python==2.8.0
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Generated on: Python 3.8.13
22
asn1crypto==1.5.1
3-
certifi==2022.6.15
3+
certifi==2022.9.14
44
cffi==1.15.1
55
charset-normalizer==2.1.1
66
cryptography==36.0.2
77
filelock==3.8.0
8-
idna==3.3
8+
idna==3.4
99
oscrypto==1.3.0
1010
pycparser==2.21
1111
pycryptodomex==3.15.0
12-
PyJWT==2.4.0
12+
PyJWT==2.5.0
1313
pyOpenSSL==22.0.0
1414
pytz==2022.2.1
1515
requests==2.28.1
1616
typing_extensions==4.3.0
1717
urllib3==1.26.12
18-
snowflake-connector-python==2.7.12
18+
snowflake-connector-python==2.8.0
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Generated on: Python 3.9.13
22
asn1crypto==1.5.1
3-
certifi==2022.6.15
3+
certifi==2022.9.14
44
cffi==1.15.1
55
charset-normalizer==2.1.1
66
cryptography==36.0.2
77
filelock==3.8.0
8-
idna==3.3
8+
idna==3.4
99
oscrypto==1.3.0
1010
pycparser==2.21
1111
pycryptodomex==3.15.0
12-
PyJWT==2.4.0
12+
PyJWT==2.5.0
1313
pyOpenSSL==22.0.0
1414
pytz==2022.2.1
1515
requests==2.28.1
1616
typing_extensions==4.3.0
1717
urllib3==1.26.12
18-
snowflake-connector-python==2.7.12
18+
snowflake-connector-python==2.8.0

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ commands = flake8 {posargs}
129129

130130
[testenv:fix_lint]
131131
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
132-
basepython = python3.7
133132
passenv =
134133
PROGRAMDATA
135134
deps =

0 commit comments

Comments
 (0)