apache-airflow-providers-snowflake
Changelog¶
5.8.0¶
Features¶
Add Snowpark operator and decorator (#42457)
Bug Fixes¶
fix: SnowflakeSqlApiOperator not resolving parameters in SQL (#42719)
Make 'private_key_content' a sensitive field in Snowflake connection (#42649)
5.7.0¶
Note
This release of provider is only available for Airflow 2.8+ as explained in the Apache Airflow providers support policy.
Bug Fixes¶
Fix: Pass hook parameters to SnowflakeSqlApiHook and prep them for API call (#41150)
Misc¶
Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)
5.6.1¶
Misc¶
openlineage: migrate OpenLineage provider to V2 facets. (#39530)
Clean up remaining getattr connection DbApiHook (#40665)
5.5.2¶
Misc¶
implement per-provider tests with lowest-direct dependency resolution (#39946)
openlineage: add some debug logging around sql parser call sites (#40200)
Update pandas minimum requirement for Python 3.12 (#40272)
Bump Snowflake client driver versions to minimum 2.7.11 per support policy (#39886)
5.5.1¶
Misc¶
Remove 'openlineage.common' dependencies in Google and Snowflake providers. (#39614)
Remove unused 'copy_into_postifx' param from docstring (#39454)
Faster 'airflow_version' imports (#39552)
Simplify 'airflow_version' imports (#39497)
5.5.0¶
Note
This release of provider is only available for Airflow 2.7+ as explained in the Apache Airflow providers support policy.
Bug Fixes¶
openlineage, snowflake: do not run external queries for Snowflake (#39113)
Misc¶
Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)
5.4.0¶
Features¶
feat: update SnowflakeSqlApiHook to support OAuth (#37922)
Misc¶
Remove reference to execution_info in snowflake hook docstring (#37804)
5.3.0¶
Features¶
feat: Add openlineage support for CopyFromExternalStageToSnowflakeOperator (#36535)
Bug Fixes¶
Fix stacklevel in warnings.warn into the providers (#36831)
Misc¶
Optimize 'SnowflakeSqlApiOperator' execution in deferrable mode (#36850)
5.2.1¶
Bug Fixes¶
Return common data structure in DBApi derived classes
Follow BaseHook connection fields method signature in child classes (#36086)
5.2.0¶
Note
This release of provider is only available for Airflow 2.6+ as explained in the Apache Airflow providers support policy.
Misc¶
Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)
5.1.1¶
Misc¶
Make schema filter uppercase in 'create_filter_clauses' (#35428)
Bump min 'snowflake-connector-python' version (#35440)
5.1.0¶
Note
This release of provider is only available for Airflow 2.5+ as explained in the Apache Airflow providers support policy.
Bug Fixes¶
Decode response in f-string (#34518)
Misc¶
Bump min airflow version of providers (#34728)
Use 'airflow.exceptions.AirflowException' in providers (#34511)
5.0.1¶
Misc¶
Improve modules import in Airflow providers by some of them into a type-checking block (#33754)
Use a single statement with multiple contexts instead of nested statements in providers (#33768)
Use literal dict instead of calling dict() in providers (#33761)
5.0.0¶
Breaking changes¶
Warning
Removed deprecated S3ToSnowflakeOperator
in favor of CopyFromExternalStageToSnowflakeOperator
.
The parameter that was passed as s3_keys
needs to be changed to files
, and the behavior should stay the same.
Removed deprecated SnowflakeToSlackOperator
in favor of SqlToSlackOperator
from Slack Provider.
Parameters that were passed as schema
, role
, database
, warehouse
need to be included into
sql_hook_params
parameter, and the behavior should stay the same.
Remove deprecated 'S3ToSnowflake' and 'SnowflakeToSlack' operators (#33558)
Bug Fixes¶
Set snowflake_conn_id on Snowflake Operators to avoid error (#33681)
4.4.0¶
Features¶
openlineage, snowflake: add OpenLineage support for Snowflake (#31696)
Misc¶
Add more accurate typing for DbApiHook.run method (#31846)
Add deprecation info to the providers modules and classes docstring (#32536)
4.3.1¶
Bug Fixes¶
Fix an issue that crashes Airflow Webserver when passed invalid private key path to Snowflake (#32016)
4.2.0¶
Note
This release dropped support for Python 3.7
Features¶
Add SnowflakeSqlApiOperator operator (#30698)
Misc¶
SnowflakeSqlApiOperator - Change the base class (#31751)
Moved sql_api_generate_jwt out of hooks folder (#31586)
4.1.0¶
Note
This release of provider is only available for Airflow 2.4+ as explained in the Apache Airflow providers support policy.
Misc¶
Bump minimum Airflow version in providers (#30917)
4.0.3¶
Bug Fixes¶
provide missing connection to the parent class operator (#29211)
Snowflake Provider - hide host from UI (#29208)
4.0.2¶
Breaking changes¶
Note
This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow providers support policy.
The SnowflakeHook
is now conforming to the same semantics as all the other DBApiHook
implementations and returns the same kind of response in its run
method. Previously (pre 4.* versions
of the provider, the Hook returned Dictionary of { "column": "value" ... }
which was not compatible
with other DBApiHooks that return just sequence of sequences. After this change (and dependency
on common.sql >= 1.3.1),the SnowflakeHook
returns now python DbApi-compatible “results” by default.
The description
(i.e. among others names and types of columns returned) can be retrieved
via descriptions
and last_description
fields of the hook after run
method completes.
That makes the DatabricksSqlHook
suitable for generic SQL operator and detailed lineage analysis.
If you had custom hooks or used the Hook in your TaskFlow code or custom operators that relied on this
behaviour, you need to adapt your DAGs or you can switch back the SnowflakeHook
to return dictionaries
by passing return_dictionaries=True
to the run method of the hook.
The SnowflakeOperator
is also more standard and derives from common
SQLExecuteQueryOperator
and uses more consistent approach to process output when SQL queries are run.
However in this case the result returned by execute
method is unchanged (it still returns Dictionaries
rather than sequences and those dictionaries are pushed to XCom, so your DAGs relying on this behaviour
should continue working without any change.
UPDATE: One of the unmentioned, breaking changes in the operator in 4.0 line was to switch autocommit to False by default. While not very friendly to the users, it was a side effect of unifying the interface with other SQL operators and we released it to the users, so switching it back again would cause even more confusion. You should manually add autocommit=True to your SnowflakeOperator if you want to continue using it and expect autocommit to work, but even better, you should switch to SQLExecuteQueryOperator.
In SnowflakeHook, if both extra__snowflake__foo
and foo
existed in connection extra
dict, the prefixed version would be used; now, the non-prefixed version will be preferred.
The 4.0.0
and 4.0.1
versions have been broken and yanked, so the 4.0.2 is the first change from the
4.*
line that should be used.
Fix wrapping of run() method result of exasol and snowflake DB hooks (#27997)
Make Snowflake Hook conform to semantics of DBApi (#28006)
4.0.1 (YANKED)¶
Warning
This version is yanked, as it contained problems when interacting with common.sql provider. Please install a version released afterwards.
Bug Fixes¶
Fix errors in Databricks SQL operator introduced when refactoring (#27854)
Bump common.sql provider to 1.3.1 (#27888)
Fixing the behaviours of SQL Hooks and Operators finally (#27912)
4.0.0 (YANKED)¶
Warning
This version is yanked, as it contained problems when interacting with common.sql provider. Please install a version released afterwards.
Update snowflake hook to not use extra prefix (#26764)
Misc¶
Move min airflow version to 2.3.0 for all providers (#27196)
Features¶
Add SQLExecuteQueryOperator (#25717)
Bug fixes¶
Use unused SQLCheckOperator.parameters in SQLCheckOperator.execute. (#27599)
3.3.0¶
Features¶
Add custom handler param in SnowflakeOperator (#25983)
Bug Fixes¶
Fix wrong deprecation warning for 'S3ToSnowflakeOperator' (#26047)
3.2.0¶
Features¶
Move all "old" SQL operators to common.sql providers (#25350)
Unify DbApiHook.run() method with the methods which override it (#23971)
3.1.0¶
Features¶
Adding generic 'SqlToSlackOperator' (#24663)
Move all SQL classes to common-sql provider (#24836)
Pattern parameter in S3ToSnowflakeOperator (#24571)
Bug Fixes¶
S3ToSnowflakeOperator: escape single quote in s3_keys (#24607)
3.0.0¶
Breaking changes¶
Note
This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow providers support policy.
Bug Fixes¶
Fix error when SnowflakeHook take empty list in 'sql' param (#23767)
2.6.0¶
Features¶
Add support for private key in connection for Snowflake (#22266)
Bug Fixes¶
Fix mistakenly added install_requires for all providers (#22382)
2.5.0¶
Features¶
Add more SQL template fields renderers (#21237)
Bug Fixes¶
Fix #21096: Support boolean in extra__snowflake__insecure_mode (#21155)
2.4.0¶
Features¶
Support insecure mode in SnowflakeHook (#20106)
Remove unused code in SnowflakeHook (#20107)
Improvements for 'SnowflakeHook.get_sqlalchemy_engine' (#20509)
Exclude snowflake-sqlalchemy v1.2.5 (#20245)
Limit Snowflake connector to <2.7.2 (#20395)
2.3.0¶
Features¶
Add test_connection method for Snowflake Hook (#19041)
Add region to Snowflake URI. (#18650)
2.0.0¶
Breaking changes¶
Auto-apply apply_default decorator (#15667)
Warning
Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
automatically and you will have to manually run airflow upgrade db
to complete the migration.
Features¶
Add 'template_fields' to 'S3ToSnowflake' operator (#15926)
Allow S3ToSnowflakeOperator to omit schema (#15817)
Added ability for Snowflake to attribute usage to Airflow by adding an application parameter (#16420)
Bug Fixes¶
fix: restore parameters support when sql passed to SnowflakeHook as str (#16102)
1.1.1¶
Bug fixes¶
Corrections in docs and tools after releasing provider RCs (#14082)
Prepare to release the next wave of providers: (#14487)
1.1.0¶
Updated documentation and readme files.
Features¶
Fix S3ToSnowflakeOperator to support uploading all files in the specified stage (#12505)
Add connection arguments in S3ToSnowflakeOperator (#12564)
1.0.0 (YANKED)¶
Warning
This release has been yanked with a reason: Snowflake breaks openssl when used
Initial version of the provider.