Skip to content

Commit 4e29385

Browse files
authored
SNOW-937634: Bumped up PythonConnector PATCH version from 3.2.1 to 3.3.0 (#1766)
1 parent de93ef4 commit 4e29385

File tree

6 files changed

+38
-27
lines changed

6 files changed

+38
-27
lines changed

DESCRIPTION.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,19 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
88

99
# Release Notes
1010

11-
- v3.3.0(Unreleased)
12-
- Updated to use apache arrow-nanoarrow project for result arrow data conversion.
11+
- v3.3.0(October 10,2023)
12+
13+
- Updated to Apache arrow-nanoarrow project for result arrow data conversion.
14+
- Introduced the `NANOARROW_USAGE` environment variable to allows switching between the nanoarrow converter and the arrow converter. Valid values include:
15+
- `FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
16+
- `DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
17+
- `ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
18+
- Introduced the `snowflake.connector.cursor.NanoarrowUsage` enum, whose members include:
19+
- `NanoarrowUsage.FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
20+
- `NanoarrowUsage.DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
21+
- `NanoarrowUsage.ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
22+
- Introduced the `snowflake.connector.cursor.NANOARROW_USAGE` module variable to allow switching between the nanoarrow converter and the arrow converter. It works in conjunction with the `snowflake.connector.cursor.NanoarrowUsage` enum.
23+
- The newly-introduced environment variable, enum, and module variable are temporary. They will be removed in a future release when switch from arrow to nanoarrow for data conversion is complete.
1324

1425
- v3.2.1(September 26,2023)
1526

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 = (3, 2, 1, None)
3+
VERSION = (3, 3, 0, None)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Generated on: Python 3.10.13
22
asn1crypto==1.5.1
33
certifi==2023.7.22
4-
cffi==1.15.1
5-
charset-normalizer==3.2.0
4+
cffi==1.16.0
5+
charset-normalizer==3.3.0
66
cryptography==41.0.4
77
filelock==3.12.4
88
idna==3.4
99
oscrypto==1.3.0
10-
packaging==23.1
11-
platformdirs==3.10.0
10+
packaging==23.2
11+
platformdirs==3.11.0
1212
pycparser==2.21
1313
pycryptodomex==3.19.0
1414
PyJWT==2.8.0
@@ -18,5 +18,5 @@ requests==2.31.0
1818
sortedcontainers==2.4.0
1919
tomlkit==0.12.1
2020
typing_extensions==4.8.0
21-
urllib3==1.26.16
22-
snowflake-connector-python==3.2.1
21+
urllib3==1.26.17
22+
snowflake-connector-python==3.3.0
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Generated on: Python 3.11.5
22
asn1crypto==1.5.1
33
certifi==2023.7.22
4-
cffi==1.15.1
5-
charset-normalizer==3.2.0
4+
cffi==1.16.0
5+
charset-normalizer==3.3.0
66
cryptography==41.0.4
77
filelock==3.12.4
88
idna==3.4
99
oscrypto==1.3.0
10-
packaging==23.1
11-
platformdirs==3.10.0
10+
packaging==23.2
11+
platformdirs==3.11.0
1212
pycparser==2.21
1313
pycryptodomex==3.19.0
1414
PyJWT==2.8.0
@@ -18,5 +18,5 @@ requests==2.31.0
1818
sortedcontainers==2.4.0
1919
tomlkit==0.12.1
2020
typing_extensions==4.8.0
21-
urllib3==1.26.16
22-
snowflake-connector-python==3.2.1
21+
urllib3==1.26.17
22+
snowflake-connector-python==3.3.0
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Generated on: Python 3.8.18
22
asn1crypto==1.5.1
33
certifi==2023.7.22
4-
cffi==1.15.1
5-
charset-normalizer==3.2.0
4+
cffi==1.16.0
5+
charset-normalizer==3.3.0
66
cryptography==41.0.4
77
filelock==3.12.4
88
idna==3.4
99
oscrypto==1.3.0
10-
packaging==23.1
11-
platformdirs==3.10.0
10+
packaging==23.2
11+
platformdirs==3.11.0
1212
pycparser==2.21
1313
pycryptodomex==3.19.0
1414
PyJWT==2.8.0
@@ -18,5 +18,5 @@ requests==2.31.0
1818
sortedcontainers==2.4.0
1919
tomlkit==0.12.1
2020
typing_extensions==4.8.0
21-
urllib3==1.26.16
22-
snowflake-connector-python==3.2.1
21+
urllib3==1.26.17
22+
snowflake-connector-python==3.3.0
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Generated on: Python 3.9.18
22
asn1crypto==1.5.1
33
certifi==2023.7.22
4-
cffi==1.15.1
5-
charset-normalizer==3.2.0
4+
cffi==1.16.0
5+
charset-normalizer==3.3.0
66
cryptography==41.0.4
77
filelock==3.12.4
88
idna==3.4
99
oscrypto==1.3.0
10-
packaging==23.1
11-
platformdirs==3.10.0
10+
packaging==23.2
11+
platformdirs==3.11.0
1212
pycparser==2.21
1313
pycryptodomex==3.19.0
1414
PyJWT==2.8.0
@@ -18,5 +18,5 @@ requests==2.31.0
1818
sortedcontainers==2.4.0
1919
tomlkit==0.12.1
2020
typing_extensions==4.8.0
21-
urllib3==1.26.16
22-
snowflake-connector-python==3.2.1
21+
urllib3==1.26.17
22+
snowflake-connector-python==3.3.0

0 commit comments

Comments
 (0)