From 2878d6accc2a725502158247dbd1af7ac37b4449 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 23 Nov 2023 14:27:57 +0000 Subject: [PATCH] Release 1.2.5 Bug fixes * Fix running models that use alias while supporting dbt versions by @binhnq94 in #662 * Make profiles_yml_path optional for ExecutionMode.DOCKER and KUBERNETES by @MrBones757 in #681 * Prevent overriding dbt profile fields with profile args of type or method by @jbandoro in #702 * Fix LoadMode.DBT_LS fail when dbt outputs WarnErrorOptions by @adammarples in #692 * Add support for env vars in RenderConfig for dbt ls parsing by @jbandoro in #690 * Add support for Kubernetes on_warning_callback by @david-mag in #673 * Fix ExecutionConfig.dbt_executable_path to use ``default_factory`` by @jbandoro in #678 Others * Docs fix: example DAG in the README and docs/index by @tatiana in #705 * Docs improvement: highlight DAG examples in README by @iancmoritz and @jlaneve in #695 --- CHANGELOG.rst | 23 ++++++++++++++++++++--- cosmos/__init__.py | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9877d1863..08f805912 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,24 @@ Changelog - ========= +1.2.5 (2023-11-23) +------------------ + +Bug fixes + +* Fix running models that use alias while supporting dbt versions by @binhnq94 in #662 +* Make ``profiles_yml_path`` optional for ``ExecutionMode.DOCKER`` and ``KUBERNETES`` by @MrBones757 in #681 +* Prevent overriding dbt profile fields with profile args of "type" or "method" by @jbandoro in #702 +* Fix ``LoadMode.DBT_LS`` fail when dbt outputs ``WarnErrorOptions`` by @adammarples in #692 +* Add support for env vars in ``RenderConfig`` for dbt ls parsing by @jbandoro in #690 +* Add support for Kubernetes ``on_warning_callback`` by @david-mag in #673 +* Fix ExecutionConfig.dbt_executable_path to use ``default_factory`` by @jbandoro in #678 + +Others + +* Docs fix: example DAG in the README and docs/index by @tatiana in #705 +* Docs improvement: highlight DAG examples in README by @iancmoritz and @jlaneve in #695 + 1.2.4 (2023-11-14) ------------------ @@ -14,8 +31,8 @@ Bug fixes Others -* Docs fix: add execution config to MWAA code example by @ugmuka in #674 - +* Docs: add execution config to MWAA code example by @ugmuka in #674 +* Docs: highlight DAG examples in docs by @iancmoritz and @jlaneve in #695 1.2.3 (2023-11-09) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index ec8ba5c14..c7aec6bee 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.2.4" +__version__ = "1.2.5" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup