diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eea379f94..d8d955a55 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,27 @@ Changelog ========= +1.1.0a1 (2023-08-16) +-------------------- + +Feature (pending documentation!) +* Support dbt global flags (via dbt_cmd_global_flags in operator_args) by @tatiana in #469 + +Enhancements +* Hide sensitive field when using BigQuery keyfile_dict profile mapping by @jbandoro in #471 + +Bug fixes +* Fix bug on select node add exclude selector subset ids logic by @jensenity in #463 +* Refactor dbt ls to run from a temporary directory, to avoid Read-only file system errors during DAG parsing, by @tatiana in #414 + +Others +* Docs: Fix RenderConfig load argument by @jbandoro in #466 +* Enable CI integration tests from external forks by @tatiana in #458 +* Improve CI tests runtime by @tatiana in #457 +* Change CI to run coverage after tests pass by @tatiana in #461 +* Fix forks code revision in code coverage by @tatiana in #472 +* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #467 + 1.0.5 (2023-08-09) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index defab7909..e9edadbc2 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.0.5" +__version__ = "1.1.0a1" from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup