From 63a551679da7a85bf7e7054b55ec0b96aa139ddb Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Tue, 14 Nov 2023 17:40:42 +0000 Subject: [PATCH] Release 1.2.4 Bug fixes * Store `compiled_sql` even when task fails by @agreenburg in #671 * Refactor `LoadMethod.LOCAL` to use symlinks instead of copying directory by @jbandoro in #660 * Fix 'Unable to find the dbt executable: dbt' error by @tatiana in #666 * Fix installing deps when using `profile_mapping` & `ExecutionMode.LOCAL` by @joppevos in #659 Others * Docs fix: add execution config to MWAA code example by @ugmuka in #674 --- CHANGELOG.rst | 16 ++++++++++++++++ cosmos/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3d104521c..9877d1863 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,22 @@ Changelog + ========= +1.2.4 (2023-11-14) +------------------ + +Bug fixes + +* Store ``compiled_sql`` even when task fails by @agreenburg in #671 +* Refactor ``LoadMethod.LOCAL`` to use symlinks instead of copying directory by @jbandoro in #660 +* Fix 'Unable to find the dbt executable: dbt' error by @tatiana in #666 +* Fix installing deps when using ``profile_mapping`` & ``ExecutionMode.LOCAL`` by @joppevos in #659 + +Others + +* Docs fix: add execution config to MWAA code example by @ugmuka in #674 + + 1.2.3 (2023-11-09) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index d41cc2de0..ec8ba5c14 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.2.3" +__version__ = "1.2.4" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup