From 966c94a25045bd55932b39233864fff903e97f46 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 6 Jun 2024 13:54:49 +0100 Subject: [PATCH] Release 1.4.2 (#1028) 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 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Daniel Reeves <31971762+dwreeves@users.noreply.github.com> Co-authored-by: Pankaj Koti Co-authored-by: davidsteinar Co-authored-by: David Steinar Asgrimsson Co-authored-by: Marco Yuen <33394715+marco9663@users.noreply.github.com> Co-authored-by: Pankaj Singh <98807258+pankajastro@users.noreply.github.com> Co-authored-by: Ollie Ma --- CHANGELOG.rst | 40 +++++++++++++++++++++++++++++++++------- cosmos/__init__.py | 2 +- 2 files changed, 34 insertions(+), 8 deletions(-) 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