From 27d1945557d33e31469661043915b089333e5f66 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 14 Sep 2023 15:22:43 +0100 Subject: [PATCH] Release 1.1.1 (#536) Bug fixes * Remove redundant prefix of task names when test_behavior = TestBehavior.AFTER_EACH by @binhnq94 in #524 * Fix rendering vars in `DbtModel` when using `LoadMode.CUSTOM` by @dojinkimm in #502 * Fix attempt of emitting OpenLineage events if task execution fails by @tatiana in #526 * Fix Rust dependency for Windows users by @tatiana in #526 * Fix DbtRunOperationLocalOperator missing flags by @tatiana in #529 * Fix DbtRunLocalOperator to support the full refresh argument by @tatiana in #529 Others * Docs: add `documentation comparing Airflow and dbt concepts `_ by @tatiana in #523. * Update PyPI project links by @tatiana in #528 * pre-commit updates --- CHANGELOG.rst | 23 +++++++++++++++++++++-- cosmos/__init__.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71133194f..b7aeef22a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,29 @@ Changelog ========= +1.1.1 (2023-09-14) +------------------ + +Bug fixes + +* Fix attempt of emitting OpenLineage events if task execution fails by @tatiana in #526 +* Fix Rust dependency for Windows users by @tatiana in #526 +* Fix DbtRunOperationLocalOperator missing flags by @tatiana in #529 +* Fix DbtRunLocalOperator to support the full refresh argument by @tatiana in #529 +* Remove redundant prefix of task names when test_behavior = TestBehavior.AFTER_EACH by @binhnq94 in #524 +* Fix rendering vars in ``DbtModel`` when using ``LoadMode.CUSTOM`` by @dojinkimm in #502 + +Others + +* Docs: add `documentation comparing Airflow and dbt concepts `_ by @tatiana in #523. +* Update PyPI project links by @tatiana in #528 +* pre-commit updates + + 1.1.0 (2023-09-06) --------------------- +------------------ -Feature +Features * Support dbt global flags (via dbt_cmd_global_flags in operator_args) by @tatiana in #469 * Support parsing DAGs when there are no connections by @jlaneve in #489 diff --git a/cosmos/__init__.py b/cosmos/__init__.py index 1f493266b..c0f00e3a5 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.1.0" +__version__ = "1.1.1" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup