diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ef66782c..2e6331eda 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,21 +1,47 @@ Changelog ========= +1.4.2 (2024-06-06) +------------------ + +Bug fixes + +* Fix the invocation mode for ``ExecutionMode.VIRTUALENV`` by @marco9663 in #1023 +* Fix Cosmos ``enable_cache`` setting by @tatiana in #1025 +* Make ``GoogleCloudServiceAccountDictProfileMapping`` dataset profile arg optional by @oliverrmaa and @pankajastro in #839 and #1017 +* Athena profile mapping set ``aws_session_token`` in profile only if it exists by @pankajastro in #1022 + +Others + +* Update dbt and Airflow conflicts matrix by @tatiana in #1026 +* Enable Python 3.12 unittest by @pankajastro in #1018 +* Improve error logging in ``DbtLocalBaseOperator`` by @davidsteinar in #1004 +* Add GitHub issue templates for bug reports and feature request by @pankajkoti in #1009 +* Add more fields in bug template to reduce turnaround in issue triaging by @pankajkoti in #1027 +* Fix ``dev/Dockerfile`` + Add ``uv pip install`` for faster build time by @dwreeves in #997 +* Drop support for Airflow 2.3 by @pankajkoti in #994 +* Update Astro Runtime image by @RNHTTR in #988 and #989 +* Enable ruff F linting by @pankajastro in #985 +* Move Cosmos Airflow configuration to settings.py by @pankajastro in #975 +* Fix CI Issues by @tatiana in #1005 +* Pre-commit hook updates in #1000, #1019 + + 1.4.1 (2024-05-17) --------------------- +------------------ Bug fixes -* Fix manifest testing behavior in #955 by @chris-okorodudu -* Handle ValueError when unpacking partial_parse.msgpack in #972 by @tatiana +* Fix manifest testing behavior by @chris-okorodudu in #955 +* Handle ValueError when unpacking partial_parse.msgpack by @tatiana in #972 Others * Enable pre-commit run and fix type-check job by @pankajastro in #957 -* Clean databricks credentials in test/CI in #969 by @tatiana -* Update CODEOWNERS in #969 by @tatiana -* Update emeritus contributors list in #961 by @tatiana -* Promote @dwreeves to committer in #960 by @tatiana +* Clean databricks credentials in test/CI by @tatiana in #969 +* Update CODEOWNERS by @tatiana in #969 x +* Update emeritus contributors list by @tatiana in #961 +* Promote @dwreeves to committer by @tatiana in #960 * Pre-commit hook updates in #956 diff --git a/cosmos/__init__.py b/cosmos/__init__.py index 5d88d35d3..7a73e722e 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.4.1" +__version__ = "1.4.2" from cosmos.airflow.dag import DbtDag