Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.8.2 #1465

Merged
merged 11 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changelog
=========

1.8.2 (2024-01-15)
tatiana marked this conversation as resolved.
Show resolved Hide resolved
--------------------

Bug Fixes
tatiana marked this conversation as resolved.
Show resolved Hide resolved
* Fix ``httpx.get`` exception handling while emitting telemetry by @tatiana in #1439
* Fix rendering detached tests in ``TestBehavior.NONE`` and ``AFTER_ALL`` by @tatiana in #1463
tatiana marked this conversation as resolved.
Show resolved Hide resolved
* Fix detached test tasks names so they do not exceed 250 chars by @tatiana in #1464
tatiana marked this conversation as resolved.
Show resolved Hide resolved

Enhancement
tatiana marked this conversation as resolved.
Show resolved Hide resolved
* Allow users to opt-in or out (default) of detached test nodes by @tatiana in #1470. Learn more about this `here <https://astronomer.github.io/astronomer-cosmos/configuration/testing-behavior.html>`_.
tatiana marked this conversation as resolved.
Show resolved Hide resolved

Docs
tatiana marked this conversation as resolved.
Show resolved Hide resolved
* Docs: Fix broken links and rendering by @pankajastro in #1437
* Update ``operator args`` docs to include ``install_deps`` by @tatiana in #1456
* Improve Cosmos ``select`` docs to include latest graph operator support by @tatiana in #1467

Others
tatiana marked this conversation as resolved.
Show resolved Hide resolved
* Upgrade GitHub action artifacts upload-artifact & download-artifact to v4 by @pankajkoti in #1445
* Enable Depandabot to scan outdated Github Actions dependencies by @tatiana in #1446
* Pre-commit hook updates in #1459, #1441
* Dependabot Github action updates in #1451, #1452, #1453, #1454, #1455



tatiana marked this conversation as resolved.
Show resolved Hide resolved
1.8.1 (2024-12-30)
--------------------

Expand Down
2 changes: 1 addition & 1 deletion cosmos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Contains dags, task groups, and operators.
"""

__version__ = "1.8.1"
__version__ = "1.8.2"


from cosmos.airflow.dag import DbtDag
Expand Down
Loading