Skip to content

Commit

Permalink
Release 1.2.5 (#710)
Browse files Browse the repository at this point in the history
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

(cherry picked from commit 2878d6a)
  • Loading branch information
tatiana authored Nov 24, 2023
1 parent 1734365 commit ac795af
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@ Features
* Add ``DbtDocsGCSOperator`` for uploading dbt docs to GCS by @jbandoro in #616


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)
------------------

Expand All @@ -23,8 +42,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)
------------------
Expand Down
2 changes: 1 addition & 1 deletion cosmos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac795af

Please sign in to comment.