From 2f64300ef9a870b64611c56a446ed2db1f9547a9 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 18 Jan 2024 09:38:25 -0800 Subject: [PATCH 1/2] upgrade redshift driver to 2.0.918 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f5bed95f1..f7b3c0dd4 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def _core_version(plugin_version: str = _plugin_version()) -> str: f"dbt-postgres~={_core_version()}", # dbt-redshift depends deeply on this package. it does not follow SemVer, therefore there have been breaking changes in previous patch releases # Pin to the patch or minor version, and bump in each new minor version of dbt-redshift. - "redshift-connector==2.0.915", + "redshift-connector==2.0.918", # installed via dbt-core but referenced directly; don't pin to avoid version conflicts with dbt-core "agate", ], From 841296122c597c714585333ce7f6a2f0ee389b9e Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 18 Jan 2024 09:47:59 -0800 Subject: [PATCH 2/2] upgrade redshift driver to 2.0.918 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f7b3c0dd4..32e358d65 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def _core_version(plugin_version: str = _plugin_version()) -> str: f"dbt-postgres~={_core_version()}", # dbt-redshift depends deeply on this package. it does not follow SemVer, therefore there have been breaking changes in previous patch releases # Pin to the patch or minor version, and bump in each new minor version of dbt-redshift. - "redshift-connector==2.0.918", + "redshift-connector<=2.0.918, >=2.0.913", # installed via dbt-core but referenced directly; don't pin to avoid version conflicts with dbt-core "agate", ],