freshcrate
Skin:/
Home > Databases > astronomer-cosmos

astronomer-cosmos

Orchestrate your dbt projects in Airflow

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

.. License badge .. |license| image:: https://img.shields.io/:license-Apache%202-blue.svg :target: https://www.apache.org/licenses/LICENSE-2.0.txt :alt: License .. PyPI badges .. |fury| image:: https://badge.fury.io/py/astronomer-cosmos.svg :target: https://badge.fury.io/py/astronomer-cosmos :alt: PyPI version .. |python| image:: https://img.shields.io/pypi/pyversions/astronomer-cosmos.svg :target: https://pypi.org/project/astronomer-cosmos/ :alt: Python versions .. |downloads| image:: https://img.shields.io/pypi/dm/astronomer-cosmos :target: https://pypi.org/project/astronomer-cosmos/ :alt: PyPI downloads .. Community badges .. |contributors| image:: https://img.shields.io/github/contributors/astronomer/astronomer-cosmos :target: https://github.com/astronomer/astronomer-cosmos/graphs/contributors :alt: Contributors .. |commits| image:: https://img.shields.io/github/commit-activity/m/astronomer/astronomer-cosmos :target: https://github.com/astronomer/astronomer-cosmos/commits/main :alt: Commit activity .. |slack| image:: https://img.shields.io/badge/slack-%23airflow--dbt-white.svg?logo=slack&style=social :target: https://join.slack.com/t/apache-airflow/shared_invite/zt-1zy8e8h85-es~fn19iMzUmkhPwnyRT6Q :alt: Slack #airflow-dbt .. |health| image:: https://insights.linuxfoundation.org/api/badge/health-score?project=astronomer-astronomer-cosmos :target: https://insights.linuxfoundation.org/project/astronomer-astronomer-cosmos :alt: LFX Health Score .. Dev tools badges .. |pre-commit| image:: https://results.pre-commit.ci/badge/github/astronomer/astronomer-cosmos/main.svg :target: https://results.pre-commit.ci/latest/github/astronomer/astronomer-cosmos/main :alt: pre-commit.ci status .. Build status badges .. |build-main| image:: https://github.com/astronomer/astronomer-cosmos/actions/workflows/test.yml/badge.svg :target: https://github.com/astronomer/astronomer-cosmos/actions :alt: Build main .. image:: https://raw.githubusercontent.com/astronomer/astronomer-cosmos/main/docs/_static/cosmos-logo.svg =========================================================== |license| |fury| |python| |downloads| |contributors| |commits| |slack| |health| |pre-commit| |build-main| Run your dbt Core projects as `Apache Airflow® <https://airflow.apache.org/>`_ DAGs and Task Groups with a few lines of code. Benefits include: - Run dbt projects against Airflow connections instead of dbt profiles - Native support for installing and running dbt in a virtual environment to avoid dependency conflicts with Airflow - Run tests immediately after a model is done to catch issues early - Utilize Airflow's data-aware scheduling to run models immediately after upstream ingestion - Turn each dbt model into a task/task group complete with retries, alerting, etc. Quickstart __________ Check out the Getting Started guide on our `docs <https://astronomer.github.io/astronomer-cosmos/getting_started/index.html>`_. See more examples at `/dev/dags <https://github.com/astronomer/astronomer-cosmos/tree/main/dev/dags>`_ and at the `cosmos-demo repo <https://github.com/astronomer/cosmos-demo>`_. Example Usage ___________________ You can render a Cosmos Airflow DAG using the ``DbtDag`` class. Here's an example with the `jaffle_shop project <https://github.com/dbt-labs/jaffle_shop>`_: .. This renders on Github but not Sphinx: https://github.com/astronomer/astronomer-cosmos/blob/24aa38e528e299ef51ca6baf32f5a6185887d432/dev/dags/basic_cosmos_dag.py#L1-L42 This will generate an Airflow DAG that looks like this: .. figure:: https://github.com/astronomer/astronomer-cosmos/blob/main/docs/_static/jaffle_shop_dag.png Community _________ - Join us on the Airflow `Slack <https://join.slack.com/t/apache-airflow/shared_invite/zt-1zy8e8h85-es~fn19iMzUmkhPwnyRT6Q>`_ at #airflow-dbt Changelog _________ We follow `Semantic Versioning <https://semver.org/>`_ for releases. Check `CHANGELOG.rst <https://github.com/astronomer/astronomer-cosmos/blob/main/CHANGELOG.rst>`_ for the latest changes. Contributing Guide __________________ All contributions, bug reports, bug fixes, documentation improvements, enhancements are welcome. A detailed overview an how to contribute can be found in the `Contributing Guide <https://astronomer.github.io/astronomer-cosmos/policy/contributing>`_. As contributors and maintainers to this project, you are expected to abide by the `Contributor Code of Conduct <https://github.com/astronomer/astronomer-cosmos/blob/main/CODE_OF_CONDUCT.md>`_. License _______ `Apache License 2.0 <https://github.com/astronomer/astronomer-cosmos/blob/main/LICENSE>`_ Privacy Notice ______________ The application and this website collect telemetry to support the project's development. These can be disabled by the end-users. Read the `Privacy Notice <https://github.com/astronomer/astronomer-cosmos/blob/main/PRIVACY_NOTICE.rst>`_ to learn more about it.

Release History

VersionChangesUrgencyDate
astronomer-cosmos-v1.15.11.15.1 (2026-08-04) ------------------- Behaviour Changes These changes adjust observable behaviour of the Kubernetes-based operators and of argument validation in async execution mode. None of them break the public Cosmos API, but users relying on the previous behaviour should review before upgrading. * Kubernetes-based dbt operators no longer override the container image's ``ENTRYPOINT`` by default: the full dbt command is passed via ``arguments`` and any user-supplied ``cmds`` High8/4/2026
astronomer-cosmos-v1.15.0**Now Stable** `ExecutionMode.WATCHER` and `ExecutionMode.WATCHER_KUBERNETES` are now stable, effective in Cosmos 1.15.0 (they were experimental through 1.14.x). This milestone is the result of an ongoing effort across several releases; the highlights landing in this release include: * `ExecutionMode.WATCHER_KUBERNETES` mode with test handling. See #2529 and #2543. * An `enable_watcher_reliable_retry` config to harden watcher producer retries. See #2816. * Fixes to watcher consumer loggiHigh7/1/2026
astronomer-cosmos-v1.14.2**Behaviour Changes** These changes adjust observable behaviour of the ``ExecutionMode.WATCHER`` execution mode. None of them break the public Cosmos API, but users relying on undocumented internals (graph wiring assertions, XCom backup Variable names, retry-on-recovery semantics, or retry log format) should review before upgrading. * ``ExecutionMode.WATCHER`` + ``depends_on_past=True``: when the producer task has ``depends_on_past=True`` (typically set via ``default_args``), the proHigh5/21/2026
astronomer-cosmos-v1.14.1Bug Fixes * Fix ``ExecutionMode.WATCHER`` producer retry behaviour by @tatiana in #2559 * Prevent watcher producer skip propagating to downstream tasks via gateway task by @johnhoran and @tatiana in #2597 * Keep watcher sensor polling when producer is still running by @pankajkoti in #2592 * Fix circular import error in Cosmos plugin discovery under Astro Runtime by @tatiana in #2538 * Fix ``CosmosRichLogger`` crash on ``None`` log message by @tatiana in #2540 * Enable inlets and outlets High4/23/2026
1.14.0Imported from PyPI (1.14.0)Low4/21/2026
astronomer-cosmos-v1.14.1a2* Fix watcher producer retries behaviour by @tatiana in #2559 - Fixes `ExecutionMode.WATCHER_KUBERNETES` as well https://github.com/astronomer/astronomer-cosmos/pull/2559High4/21/2026
astronomer-cosmos-v1.14.1a1* Fix watcher producer retries behaviour by @tatiana in #2559 https://github.com/astronomer/astronomer-cosmos/pull/2559High4/21/2026
astronomer-cosmos-v1.14.01.14.0 (2026-04-07) --------------------- Breaking Changes * Drop support for Airflow versions earlier than **2.9** by @jedcunningham in #2288 * Fix inclusion of package models and selection/exclusion behavior by @pankajkoti in #2357 * ``ExecutionMode.WATCHER``: The per-node ``*_status`` XCom value is now a dict (``{"status": "<status>", "outlet_uris": [...]}``) instead of a plain string. Any custom code that reads these internal XCom keys directly will need to be updated by @pankajkotiMedium4/7/2026
astronomer-cosmos-v1.14.0a9## What's Changed * docs: Updating "Project Policies" to "Policies" in menu bar by @jroachgolf84 in https://github.com/astronomer/astronomer-cosmos/pull/2526 * Enforce zero warnings policy for documentation by @dnskr in https://github.com/astronomer/astronomer-cosmos/pull/2513 * Add Airflow 3.2 in test matrix by @pankajastro and @pankajkoti in https://github.com/astronomer/astronomer-cosmos/pull/2472 * Revert "feat: handle tests for `WATCHER_KUBERNETES` mode (#2529)" by @pankajkoti in httpMedium4/7/2026
astronomer-cosmos-v1.14.0a8## What's Changed * Fix typo in watcher execution mode docs by @evanvolgas in https://github.com/astronomer/astronomer-cosmos/pull/2485 * Fix minor documentation issues by @dnskr in https://github.com/astronomer/astronomer-cosmos/pull/2489 * Add troubleshooting note for dbt debug logs in `ExecutionMode.WATCHER` by @tatiana in https://github.com/astronomer/astronomer-cosmos/pull/2491 * RFC: Add patch for newer versions of amazon provider when running dbt on EKS by @aoelvp94 in https://github.Medium4/7/2026
astronomer-cosmos-v1.14.0a7Cut from: https://github.com/astronomer/astronomer-cosmos/pull/2472 (branch: https://github.com/astronomer/astronomer-cosmos/tree/airflow_3.2)Medium4/6/2026
astronomer-cosmos-v1.14.0a6* Fix ``cosmos_debug_max_memory_mb`` XCom not pushed in Watcher sensor tasks by @tatiana in #2503 On top of the other changes in the `main` branch by the time #2503 was createdMedium3/25/2026
astronomer-cosmos-v1.14.0a51.14.0a5 (2026-03-20) --------------------- Features * Add config to allow disabling dag versioning by @pankajkoti in https://github.com/astronomer/astronomer-cosmos/pull/2470 * feature: implement TaskGroups by models folder by @maximilianoarcieri and @tatiana in https://github.com/astronomer/astronomer-cosmos/pull/1566, https://github.com/astronomer/astronomer-cosmos/pull/2469 and https://github.com/astronomer/astronomer-cosmos/pull/2420 Enhancements * Reduce XCom read/write for trLow3/20/2026
astronomer-cosmos-v1.14.0a4Breaking changes * Drop support for Airflow versions earlier than **2.9** by @jedcunningham in #2288 * Fix inclusion of package models and selection/exclusion behavior by @pankajkoti in #2357 Features * Add cluster policy support for ``ExecutionMode.WATCHER`` sensor retries by @astro-anand in #2293 * Add FQN selection support for ``LoadMode.DBT_MANIFEST`` by @pankajastro in #2375 * Introduce interceptors for Cosmos tasks by @tatiana in #2419 Enhancements * Add watcher mode suppLow3/16/2026
astronomer-cosmos-v1.14.0a3Alpha release to validate the branch: customer-issue-328-everything-togetherLow3/4/2026
astronomer-cosmos-v1.13.1**Enhancements** * Change Snowflake profile mappings to default to four threads by @tatiana in #2374 * Refactor to avoid potential future ``UnboundLocalError`` for ``producer_task`` in ``calculate_tasks_map`` by @rin in #2309 **Bug Fixes** * Fix graph selector when using + selector with ``dbt-loom`` by @award1230 in #2389 * Populate ``compiled_sql`` for ``InvocationMode.SUBPROCESS`` in ``ExecutionMode.WATCHER`` by @pankajkoti in #2319 * Preserve ``extra_context`` for watcher consumerLow2/25/2026
astronomer-cosmos-v1.13.1a1Enhancements * Change Snowflake profile mappings to default to four threads by @tatiana in #2374 * Refactor to avoid potential future ``UnboundLocalError`` for ``producer_task`` in ``calculate_tasks_map`` by @rin in #2309 Bug Fixes * Fix graph selector when using + selector with ``dbt-loom`` by @award1230 in #2389 * Populate ``compiled_sql`` for ``InvocationMode.SUBPROCESS`` in ``ExecutionMode.WATCHER`` by @pankajkoti in #2319 * Preserve ``extra_context`` for watcher consumer task inLow2/23/2026
astronomer-cosmos-v1.14.0a21.14.0a2 (2026-02-16) --------------------- Breaking changes * Drop support for Airflow under 2.9 by @jedcunningham in #2288 Features * Add Add cluster policy for ``ExecutionMode.WATCHER`` sensor for retry by @astro-anand in #2293 * Add debug mode feature to track memory utilisation by @tatiana in #2327 Enhancements * Rename watcher-mode sensor retry queue and reuse it for producer tasks by @pankajastro in #2331 Docs * Document the cluster policy config for ExecutionModLow2/16/2026
astronomer-cosmos-v1.14.0a11.14.0a1 (2026-02-02) --------------------- Features * Add Add cluster policy for ``ExecutionMode.WATCHER`` sensor for retry by @astro-anand in #2293Low2/2/2026
astronomer-cosmos-v1.13.0Features * Support cross-referencing models across dbt projects using dbt-loom by @pankajkoti in #2271 * Support use of YAML selectors when using ``LoadMode.DBT_MANIFEST`` by @YourRoyalLinus in #2261 * Introduce ``ExecutionMode.WATCHER_KUBERNETES`` to use the watcher with ``KubernetesPodOperator`` by @tatiana in #2207 * Add support for StarRocks profile mapping by @kurkim0661 in #2256 * Allow pushing URIs as XComs for Cosmos tasks by @corsettigyg in #2275 * Support defining custom callbaLow1/30/2026
astronomer-cosmos-v1.13.0a4Features - Support use of YAML selectors when using LoadMode.DBT_MANIFEST by @YourRoyalLinus in https://github.com/astronomer/astronomer-cosmos/pull/2261 Bugs - Fix duplicate log lines in watcher subprocess execution and format timestamps by @pankajkoti in https://github.com/astronomer/astronomer-cosmos/pull/2301 Others - Fix `main` branch failing tests by @tatiana in https://github.com/astronomer/astronomer-cosmos/pull/2296 **Full Changelog**: https://github.com/astronomer/astLow1/29/2026
astronomer-cosmos-v1.13.0a3 1.13.0a3 (2026-01-29) --------------------- Features - Introduce ``ExecutionMode.WATCHER_KUBERNETES`` to use the watcher with ``KubernetesPodOperator`` by @tatiana in #2207 - Leverage Airflow ``::group::`` to group logs associated with DAG parsing by @tatiana in #2235 - Add support for StarRocks profile mapping by @kurkim0661 in #2256 - Allow pushing URIs as XComs for Cosmos tasks by @corsettigyg in #2275 - Add Scarf metrics to understand Cosmos feature usage patterns - Add telLow1/29/2026
astronomer-cosmos-v1.13.0a2(Includes more changes - cut from the branch [fix-empty-model-issue](https://github.com/astronomer/astronomer-cosmos/tree/fix-empty-model-issue)) Features - Introduce ``ExecutionMode.WATCHER_KUBERNETES`` to use watcher with ``KubernetesPodOperator`` by @tatiana in #2207 Enhancements - Allow watcher producer retries without erroring by @tatiana in #2283 Bug Fixes - Fix running empty models or ephemeral nodes in ``ExecutionMode.WATCHER`` by @tatiana in #2279Low1/23/2026
astronomer-cosmos-v1.12.1**Bug Fixes** * Fix ``DbtSourceWatcherOperator.template_fields`` to inherit from ``DbtSourceLocalOperator`` instead of ``DbtConsumerWatcherSensor`` by @pankajkoti in #2226 * Fix ``TypeError`` in Watcher mode with subprocess invocation by @pankajkoti in #2227 * Error when ``RenderConfig.invocation_mode`` is incorrectly set by @tatiana in #2267 **Docs** * Fix minor documentation typo by @dnskr in #2093 * Fix default values in documentation by @dnskr in #2092 * Remove emitting event foLow1/14/2026
astronomer-cosmos-v1.12.1a1Bug Fixes * Fix ``DbtSourceWatcherOperator.template_fields`` to inherit from ``DbtSourceLocalOperator`` instead of ``DbtConsumerWatcherSensor`` by @pankajkoti in #2226 * Fix TypeError in Watcher mode with subprocess invocation by @pankajkoti in #2227 Docs * Fix minor documentation typo by @dnskr in #2093 * Fix default values in documentation by @dnskr in #2092 * Remove emit event for ExecutionMode.AIRFLOW_ASYNC limitation in docs by @pankajastro in #2214 Others * Add test to chLow12/29/2025
astronomer-cosmos-v1.13.0a1Features: - (WIP) Introduce `ExecutionMode.WATCHER_KUBERNETES` to use watcher with `KubernetesPodOperator` by @tatiana in #2207 Release cut from: - https://github.com/astronomer/astronomer-cosmos/pull/2207Low12/18/2025
astronomer-cosmos-v1.12.0Breaking changes * Introduced in the PR #2080. The following functions are expected to be used internally only to Cosmos, so we hope these won't impact end-users, but we are documenting the changes just in case: - ``generate_task_or_group`` receives ``render_config`` instead of its individual configurations, such as ``test_behavior``, ``source_rendering_behavior`` and ``enable_owner_inheritance`` - ``create_task_metadata`` receives ``render_config`` instead of its individual configuratiLow12/18/2025
astronomer-cosmos-v1.11.3Bug Fixes * (back-ported) Fix resolution of ``packages-install-path`` when it uses ``env_var`` by @tatiana in #2194Low12/16/2025
astronomer-cosmos-v1.10.3Bug Fixes * (back-ported) Fix resolution of ``packages-install-path`` when it uses ``env_var`` by @tatiana in https://github.com/astronomer/astronomer-cosmos/pull/2194Low12/16/2025
astronomer-cosmos-v1.12.0a4Everything in **[v1.12.0a3](https://github.com/astronomer/astronomer-cosmos/releases/tag/astronomer-cosmos-v1.12.0a3)** and additionally: Breaking changes * Drop Airflow 2.4 support by @pankajastro in #2161 * Drop Airflow 2.5 support by @pankajastro in #2165 Features * Support real-time consumer updates when using ``ExecutionMode.WATCHER`` and ``InvocationMode.SUBPROCESS`` by @pankajastro in #2152 Enhancements * Refactor ``ExecutionMode.WATCHER`` ``InvocationMode.SUBPROCESS`` Low12/9/2025
astronomer-cosmos-v1.11.2Bug fixes * Force ``DbtProducerWatcherOperator`` retries to zero by @pankajkoti in #2114 * Fail ``DbtConsumerWatcherSensor`` tasks immediately when the ``DbtProducerWatcherOperator`` fails using Airflow context by @pankajkoti in #2126 * Fix forwarding ``DbtProducerWatcherOperator`` ``dbt build`` flags by by @michal-mrazek in #2127 Documentation * Expand ``ExecutionMode.KUBERNETES`` guidance by @tatiana in #2139 * Document dataset-event limitation when using ``ExecutionMode.AIRFLOW_ASLow11/24/2025
astronomer-cosmos-v1.12.0a3Breaking changes * Introduced in the PR #2080. The following functions are expected to be used internally only to Cosmos, so we hope these won't impact end-users, but we are documenting the changes just in case: - ``generate_task_or_group`` receives ``render_config`` instead of its individual configurations, such as ``test_behavior``, ``source_rendering_behavior`` and ``enable_owner_inheritance`` - ``create_task_metadata`` receives ``render_config`` instead of its individual configuratiLow11/21/2025
astronomer-cosmos-v1.11.1**Bug fixes** * Fix ``ExecutionMode.WATCHER`` deadlock in Airflow 3.0 & 3.1 by @tatiana in #2087 * Fix ``ExecutionMode.AIRFLOW_ASYNC`` ``TaskGroup`` XCom issue by @tatiana in #2088 * Guard watcher callback exceptions to avoid hanging producer tasks by @pankajkoti in #2101 * Fix SQL templated field rendering for dynamically mapped tasks in Airflow 2 by @tatiana in #2119 * Fix `ExecutionMode.WATCHER` to use `install_dbt_deps` from `ProjectConfig` by @michal-mrazek in #2112 **EnhancementLow11/12/2025
astronomer-cosmos-v1.11.1a1**Bug fixes** * Fix ``ExecutionMode.WATCHER`` deadlock in Airflow 3.0 & 3.1 by @tatiana in #2087 * Fix ``ExecutionMode.AIRFLOW_ASYNC`` ``TaskGroup`` XCom issue by @tatiana in #2088 **Enhancements** * Remove usage of contextmanager in plugins for accessing connections in Airflow >= 3.1.2 by @pankajkoti in #2073 **Others** * Fix broken CI due to fastapi incompatibility with cadwyn for Airflow 3 by @pankajkoti in #2076 * pre-commit autoupdate in #2078Low11/10/2025
astronomer-cosmos-v1.12.0a2**Breaking changes** * Introduced in the PR #2080. The following functions are expected to be used internally only to Cosmos, so we hope these won't impact end-users, but we are documenting the changes just in case: - ``generate_task_or_group`` receives ``render_config`` instead of its individual configurations, such as ``test_behavior``, ``source_rendering_behavior`` and ``enable_owner_inheritance`` - ``create_task_metadata`` receives ``render_config`` instead of its individual configuLow11/4/2025
v1.12.0a1**Breaking changes** * Introduced in the PR #2080. The following functions are expected to be used internally only to Cosmos, so we hope these won't impact end-users, but we are documenting the changes just in case: - ``generate_task_or_group`` receives ``render_config`` instead of its individual configurations, such as ``test_behavior``, ``source_rendering_behavior`` and ``enable_owner_inheritance`` - ``create_task_metadata`` receives ``render_config`` instead of its individual configuLow11/4/2025
v1.11.0**Features** * Introduce ``ExecutionMode.WATCHER`` to reduce DAG run time by 1/5 in several PRs. Learn more about it [here](https://astronomer.github.io/astronomer-cosmos/getting_started/watcher-execution-mode.html#watcher-execution-mode). This feature was implemented via multiple PRs, including: * Expose new execution mode by @tatiana @pankajastro @pankajkoti in #1999 * Add ``DbtProducerWatcherOperator`` for the proposed ``ExecutionMode.WATCHER`` by @pankajkoti in #1982 * Add ``DbtCLow10/29/2025
astronomer-cosmos-v1.11.0rc1Release astronomer-cosmos-v1.11.0rc1Low10/29/2025
astronomer-cosmos-v1.11.0a13Failured fixes in fix_1960_additional_fixesLow10/27/2025
v1.11.0a12Latest improvements on `ExecutionMode.WATCHER`Low10/24/2025
astronomer-cosmos-v1.11.0a12Release astronomer-cosmos-v1.11.0a12Low10/24/2025
astronomer-cosmos-v.1.11.0a11Includes fixes based on early feedback on `ExecutionMode.WATCHER`: - https://github.com/astronomer/astronomer-cosmos/pull/2044 - https://github.com/astronomer/astronomer-cosmos/pull/2048Low10/23/2025
astronomer-cosmos-v1.11.0a10Fixed issues with `DbtTaskGroup` and `ExecutionMode.WATCHER` when there is an upstream task to the task group. Airflow 3.1 support is close to completion. Cut from af-31.Low10/17/2025
astronomer-cosmos-v1.11.0a9Improvement on DbtTaskGroup with ExecutionMode.WATCHER and Airflow 3.1 support - cut from af-31 branch. Low10/16/2025
astronomer-cosmos-v1.11.0a8cut from branch: [af3-plugin-draft](https://github.com/astronomer/astronomer-cosmos/tree/refs/heads/af3-plugin-draft) PR: https://github.com/astronomer/astronomer-cosmos/pull/2009Low10/9/2025
astronomer-cosmos-v1.11.0a7cut from branch: [af3-plugin-draft](https://github.com/astronomer/astronomer-cosmos/tree/refs/heads/af3-plugin-draft) PR: https://github.com/astronomer/astronomer-cosmos/pull/2009Low10/8/2025
astronomer-cosmos-v.1.11.0a6**Features** * Introduce ``ExecutionMode.WATCHER`` to reduce DAG run time by 1/5 in several PRs, including: * Expose new execution mode by @tatiana @pankajastro @pankajkoti in #1999 * Add ``DbtProducerWatcherOperator`` for the proposed ``ExecutionMode.WATCHER`` by @pankajkoti in #1982 * Add ``DbtConsumerWatcherSensor`` for the proposed ``ExecutionMode.WATCHER`` by @pankajastro in #1998 * Push producer's task completion status to XCOM by @pankajkoti in #2000 * Add default prioriLow10/7/2025
v1.11.0a5Set bq deferrable false for testing (`bq_sync_mode`)Low9/3/2025
v1.11.0.a4Reuse the virtual env for the AIRFLOW_ASYNC setup task PR: https://github.com/astronomer/astronomer-cosmos/pull/1939Low9/3/2025
v1.11.0a3PoC: Use XCom to store sql when using ExecutionMode.AIRFLOW_ASYNC in PR https://github.com/astronomer/astronomer-cosmos/pull/1934 by @pankajastro Low9/3/2025
astronomer-cosmos-v1.11.0a2**Note:** This release was cut from 2a08b0de22bcafa91b164716a97fd8160551366e (branch [release-1.11.0](https://github.com/astronomer/astronomer-cosmos/tree/release-1.11.0)) **Feature** * Initial support to ``dbt Fusion`` by @tatiana in #1803. More details [here](https://astronomer.github.io/astronomer-cosmos/configuration/dbt-fusion). * Support DAG versioning in Airflow 3 by @pankajkoti in https://github.com/astronomer/astronomer-cosmos/pull/1907 * Add SQL Server profile mapping by @pankaLow8/8/2025
astronomer-cosmos-v1.10.2**Bug Fixes** * Fix task instance ``try_number`` attribute for Airflow 3 compatibility by @pankajkoti in #1781 * Fix rendered template override logic when ``should_store_compiled_sql=False`` to restore pre-refactor behaviour by @pankajkoti in #1777 * Fix ``ProfileConfig`` in GCP Cloud Run job execution mode by @ramonvermeulen in #1783 * Fix dbt Docs page height by @1cadumagalhaes in #1793 * Add support to base64 encoded pem in Snowflake profiles by @brunocmartins in #1801 * Allow to disaLow8/8/2025
astronomer-cosmos-v1.11.0a1Feature * Initial support to ``dbt Fusion`` by @tatiana in #1803. [More details here](https://astronomer.github.io/astronomer-cosmos/configuration/dbt-fusion). (many other features, pending details)Low6/23/2025
astronomer-cosmos-v1.10.2a1Bug fixes * Fix RTIF override logic when should_store_compiled_sql=False to restore pre-refactor behaviour by @pankajkoti in #1777 Cut from: https://github.com/astronomer/astronomer-cosmos/pull/1777 (branch: [fix-pr-1661](https://github.com/astronomer/astronomer-cosmos/tree/fix-pr-1661))Low5/23/2025
astronomer-cosmos-v1.10.1**Bug Fixes** * Fix ``full_refresh`` parameter in ``AIRFLOW_ASYNC`` ``ExecutionConfig`` mode by @tuantran0910 in #1738 * Fix dbt ls invocation method log message by @tatiana and @dstandish in #1749 * Ensure remote target directory is created when copying files when using local directory by @tuantran0910 and @corsettigyg in #1740 * Support custom ``packages-install-path`` by @tatiana in #1768 * Disable dbt static parser during Airflow task execution using dbt runner by @pankajkoti and @tatLow5/21/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

sentry-sdkPython client for Sentry (https://sentry.io)2.69.1
pytest-postgresqlPostgresql fixtures and fixture factories for Pytest.main@2026-09-08
alibabacloud-adb20211201Alibaba Cloud adb (20211201) SDK Library for Pythonmaster@2026-09-07
mirakuruProcess executor (not only) for tests.main@2026-09-04
browser-useMake websites accessible for AI agents0.13.10

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in Databases

milvusMilvus is a high-performance, cloud-native vector database built for scalable vector ANN search
onyxOpen Source AI Platform - AI Chat with advanced features that works with every LLM
memgraphHigh-performance open-source in-memory graph database for GraphRAG, AI memory, agentic AI, and real-time graph analytics. Cypher-compatible, built in C++.
sentry-sdkPython client for Sentry (https://sentry.io)