From 61e446042cd8e37ebe5bf39c26a899e66f88bf85 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Wed, 27 Sep 2023 21:29:55 +0100 Subject: [PATCH] Release 1.1.2 Bug fixes * Fix using `ExecutionMode.KUBERNETES` by @pgoslatara and @tatiana in #554 * Add support to `apache-airflow-providers-cncf-kubernetes < 7.4.0` by @tatiana in #553 * Fix `on_warning_callback` behaviour on `DbtTestLocalOperator` by @edgga, @marco9663 and @tatiana in #558 * Use `returncode` instead of `stderr` to determine dbt graph loading errors by @cliff-lau-cloverhealth in #547 * Improve error message in `config.py` by @meyobagero in #532 * Fix `DbtTestOperator` when test does not have `test_metadata` by @tatiana in #558 * Fix `target-path` not specified issue in `dbt-project.yml` by @tatiana in #533 Others * Docs: add reference links to dbt and Airflow columns by @TJaniF in #542 * pre-commit updates #552 and #546 (cherry picked from commit 427f71323ac08f435d26a5ac78f05b2a164b56d8) --- CHANGELOG.rst | 20 ++++++++++++++++++++ cosmos/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b7aeef22a..bf0242465 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,26 @@ Changelog ========= +1.1.2 (2023-09-27) +------------------ + +Bug fixes + +* Fix using ``ExecutionMode.KUBERNETES`` by @pgoslatara and @tatiana in #554 +* Add support to ``apache-airflow-providers-cncf-kubernetes < 7.4.0`` by @tatiana in #553 +* Fix ``on_warning_callback`` behaviour on ``DbtTestLocalOperator`` by @edgga, @marco9663 and @tatiana in #558 +* Use ``returncode`` instead of ``stderr`` to determine dbt graph loading errors by @cliff-lau-cloverhealth in #547 +* Improve error message in ``config.py`` by @meyobagero in #532 +* Fix ``DbtTestOperator`` when test does not have ``test_metadata`` by @tatiana in #558 +* Fix ``target-path`` not specified issue in ``dbt-project.yml`` by @tatiana in #533 + +Others + +* Docs: add reference links to dbt and Airflow columns by @TJaniF in #542 +* pre-commit updates #552 and #546 + + + 1.1.1 (2023-09-14) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index fc58a7b99..b73414c8c 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.1.1" +__version__ = "1.1.2" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup