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 diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 1247c91..2ded9f7 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -7,6 +7,11 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges 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) - Update readme for artifact validation using cosign diff --git a/setup.py b/setup.py index 6c68eee..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.0.3", + "snowflake-connector-python>=3.12.0", "furl", "cryptography", "requests<=2.32.3"] 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'