From 656985569f646d0bc8ec5d15235647d2c8f6fcb1 Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 10:23:49 -0700 Subject: [PATCH 1/8] Update version.py --- snowflake/ingest/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snowflake/ingest/version.py b/snowflake/ingest/version.py index 435ee86..641a945 100644 --- a/snowflake/ingest/version.py +++ b/snowflake/ingest/version.py @@ -1,3 +1,3 @@ # Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved. # Update this for the versions -__version__ = '1.0.10' +__version__ = '1.0.11' From 3ae27cdee9a3af8822fefbb85bdf84d355ae238f Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 10:32:24 -0700 Subject: [PATCH 2/8] Update DESCRIPTION.rst --- DESCRIPTION.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 1247c91..93ee8e9 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -7,6 +7,10 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges Release Notes ------------------------------------------------------------------------------- +- v1.0.10 (June 17, 2024) + + - Better handling to retry connection errors + - v1.0.10 (November 14, 2024) - Update readme for artifact validation using cosign From 223b8117e1e506f1d24e75fd6e34099228fdfccb Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:29:50 -0700 Subject: [PATCH 3/8] Update DESCRIPTION.rst --- DESCRIPTION.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 93ee8e9..8cf37d8 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -7,7 +7,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges Release Notes ------------------------------------------------------------------------------- -- v1.0.10 (June 17, 2024) +- v1.0.11 (June 17, 2024) - Better handling to retry connection errors From cbb514be878dd87e507841c52ad76c04f4eb2aa6 Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:30:04 -0700 Subject: [PATCH 4/8] Update DESCRIPTION.rst --- DESCRIPTION.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 8cf37d8..602ffce 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -7,7 +7,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges Release Notes ------------------------------------------------------------------------------- -- v1.0.11 (June 17, 2024) +- v1.0.11 (June 17, 2025) - Better handling to retry connection errors From ccb9fd9aabec8a71801d2c667ec31b16d973e48a Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:32:03 -0700 Subject: [PATCH 5/8] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6c68eee..28de47c 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from sys import version_info, exit # Define our list of installation dependencies DEPENDS = ["pyjwt", - "snowflake-connector-python>=3.0.3", + "snowflake-connector-python>=3.15.0", "furl", "cryptography", "requests<=2.32.3"] From adb51224ecc8e239d8d43d542f0d433c5156f0ca Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:51:21 -0700 Subject: [PATCH 6/8] Update End2EndTest.yml --- .github/workflows/End2EndTest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/End2EndTest.yml b/.github/workflows/End2EndTest.yml index d066aff..5c34455 100644 --- a/.github/workflows/End2EndTest.yml +++ b/.github/workflows/End2EndTest.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - python-version: [ '3.8', '3.9', '3.10' ] + python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] steps: - name: Checkout Code uses: actions/checkout@v3 From 351fa42e2b812bf3cd5333b3aa7361b646dd2104 Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:54:39 -0700 Subject: [PATCH 7/8] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 28de47c..e103441 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from sys import version_info, exit # Define our list of installation dependencies DEPENDS = ["pyjwt", - "snowflake-connector-python>=3.15.0", + "snowflake-connector-python>=3.12.0", "furl", "cryptography", "requests<=2.32.3"] From 1cc26239e88da4e2596973adf1c1b5495e88022e Mon Sep 17 00:00:00 2001 From: Xin Huang Date: Mon, 16 Jun 2025 14:56:48 -0700 Subject: [PATCH 8/8] Update DESCRIPTION.rst --- DESCRIPTION.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 602ffce..2ded9f7 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -10,6 +10,7 @@ Release Notes - v1.0.11 (June 17, 2025) - Better handling to retry connection errors + - Pin dependency package to newer version (snowflake-connector-python) - v1.0.10 (November 14, 2024)