diff --git a/CHANGELOG.md b/CHANGELOG.md index 15df55fb966..16c84b8b408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - `dbt compile` and `dbt run` failed with `KeyError: 'endpoint_resolver'` when threads > 1 and `method: iam` had been specified in the profiles.yaml ([#2756](https://github.com/fishtown-analytics/dbt/issues/2756), [#2766](https://github.com/fishtown-analytics/dbt/pull/2766)) - Fix Redshift adapter to include columns from external tables when using the get_columns_in_relation macro ([#2753](https://github.com/fishtown-analytics/dbt/issues/2753), [#2754](https://github.com/fishtown-analytics/dbt/pull/2754)) +### Under the hood +- Require extra `snowflake-connector-python[secure-local-storage]` on all dbt-snowflake installations ([#2779](https://github.com/fishtown-analytics/dbt/issues/2779), [#2789](https://github.com/fishtown-analytics/dbt/pull/2789)) + Contributors: - [@Mr-Nobody99](https://github.com/Mr-Nobody99) ([#2732](https://github.com/fishtown-analytics/dbt/pull/2732)) - [@jweibel22](https://github.com/jweibel22) ([#2766](https://github.com/fishtown-analytics/dbt/pull/2766)) diff --git a/plugins/snowflake/setup.py b/plugins/snowflake/setup.py index 5d73fb2ef7e..b01381a5089 100644 --- a/plugins/snowflake/setup.py +++ b/plugins/snowflake/setup.py @@ -47,7 +47,7 @@ }, install_requires=[ 'dbt-core=={}'.format(package_version), - 'snowflake-connector-python==2.2.10', + 'snowflake-connector-python[secure-local-storage]==2.2.10', 'azure-common<2.0.0', 'azure-storage-blob>=12.0.0,<13.0.0', 'urllib3>=1.20,<1.26.0',