From 3c5b9c05b0b7f4de4d18156ed277d6f84b6dfb57 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 28 Sep 2023 20:42:39 +0100 Subject: [PATCH] Release 1.1.3 Bug fixes * Only create task group and test task only if the model has a test by @raffifu in #543 * Fix parsing test nodes when using the custom load method (LoadMethod.CUSTOM) by @raffifu in #563 * Fix ``DbtTestOperator`` when test does not have ``test_metadata`` by @javihernovoa and @tatiana in #565 * Support dbt 1.6 and apache-airflow-providers-cncf-kubernetes 7.3.0 by @tatiana in #564 --- CHANGELOG.rst | 12 ++++++++++++ cosmos/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bf0242465..911aba526 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +1.1.3 (2023-09-28) +------------------ + +Bug fixes + +* Only create task group and test task only if the model has a test by @raffifu in #543 +* Fix parsing test nodes when using the custom load method (LoadMethod.CUSTOM) by @raffifu in #563 +* Fix ``DbtTestOperator`` when test does not have ``test_metadata`` by @javihernovoa and @tatiana in #565 +* Support dbt 1.6 and apache-airflow-providers-cncf-kubernetes 7.3.0 by @tatiana in #564 + + + 1.1.2 (2023-09-27) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index e613dcd02..386e2367e 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.1.2" +__version__ = "1.1.3" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup