1.0.0 - 2025-12-23
- Added Python 3.12 support.
- Introduced new
cosmos/module for Cosmos integration (~400 lines):project_config_builder.py– Mapsdbt.ymlto CosmosProjectConfig.profile_config_builder.py– Builds CosmosProfileConfigfromprofile_dir_path.execution_config_builder.py– Mapsexecution_env.ymlto CosmosExecutionConfig.operator_args_builder.py– Passesk8s.ymlconfiguration transparently to Cosmos.config_translator.py– Orchestrates all Cosmos configuration builders.
- Added support for
cosmos.ymlconfiguration file for advanced Cosmos features. - Added
tests/fixtures/directory with manifest files for multiple test scenarios.
- BREAKING: Dropped support for Airflow 1.x (minimum now
apache-airflow>=2.5). - BREAKING: Dropped support for Python 3.8 (minimum now Python 3.9).
- MAJOR: Replaced
dbt-graph-builderdependency withastronomer-cosmos>=1.10.0,<2.0. - Rewrote
AirflowDagFactoryto use CosmosDbtTaskGroupfor dbt task generation. - Replaced
apache-airflow[kubernetes,slack]with individual provider packages (no upper bounds). - Updated
apache-airflow-providers-airbyteto remove version upper bound (auto-resolves based on Airflow version). - Migrated all uses of
DummyOperator→EmptyOperator(Airflow 2.4+ standard). - Behavior change:
use_task_group: falseconfiguration is now ignored (Cosmos always usesDbtTaskGroup). - Behavior change:
seed_taskconfig is now ignored (Cosmos automatically creates seed tasks from the dbt manifest). - Rewrote test suite for Cosmos integration (50 tests passing).
- MAJOR: Removed custom task builder implementations (~900 lines total):
- Deleted modules
tasks_builder/,k8s/,ecs/,bash/,operator.py,dbt_parameters.py,builder_factory.py, andtasks.py.
- Deleted modules
- Dependency: Removed
dbt-graph-builder; addedastronomer-cosmos. - Removed ECS execution (
type: ecsinexecution_env.yml) due to Cosmos 1.10 limitation.
Usetype: k8sortype: dockerinstead.
- Added support for Airflow 2.5–2.11 (previously 2.x only).
- Added support for dbt 1.7–1.10 via Cosmos peer dependency.
- Reduced total codebase size by ~600 lines (simplified architecture).
- Focused the project solely on orchestration; delegated dbt execution to Cosmos.
- Improved Airflow UI with model-level task visibility (Cosmos feature).
- Expanded execution options: Kubernetes, Local, Docker, and VirtualEnv modes.
0.36.0 - 2025-12-01
- Add
Google Chatnotifications handler
0.35.0 - 2023-09-08
0.34.0 - 2023-08-10
- Add
MS Teamsnotifications handler
0.33.0 - 2023-08-04
0.32.0 - 2023-07-04
0.31.1 - 2023-05-12
- Replace
config_filedefault value from"~/.kube/config"toNoneinKubernetesPodOperator#90
0.31.0 - 2023-03-27
- Use
node_selectorandcontainer_resourcesparameters inKubernetesPodOperatorif Airflow is 2.3+.
0.30.0 - 2023-02-08
- Add in_cluster, cluster_context params
- Repair secrets to be not required
- Update docs
- Add BashOperator
- Exposes param to control the pod startup timeout
0.29.0 - 2022-09-02
0.28.0 - 2022-07-19
0.27.0 - 2022-07-01
0.26.0 - 2022-05-13
- Documentation improvements
0.25.0 - 2022-04-27
0.24.0 - 2022-04-22
- Dependencies between project in Airflow
0.23.0 - 2022-03-22
0.22.0 - 2022-03-21
- Failure notifications via slack
- Ephemeral nodes can be hidden from DAG by setting
show_ephemeral_models: Falsein project'sairflow.yml.
0.21.0 - 2022-02-11
This version brings compatibility with dbt 1.0.
0.20.1 - 2022-02-08
0.20.0 - 2022-02-08
- Run tests with more than one dependency in a different node.
0.19.0 - 2022-02-02
0.18.1 - 2022-01-18
- Jinja's
FileSystemLoadergetsstrinstead ofpathlib.Pathto fix types incompatibility forJinja < 2.11.0. - Use
get_start_task()andget_end_task()inAirflowDagFactory.create_tasks(config)to prevent ephemeral ending tasks from throwing.
0.18.0 - 2022-01-14
- ReadTheDocs documentation in
docsdirectory. {{ var.value.VARIABLE_NAME }}gets replaced with Airflow variables when parsingairflow.ymlfile.
- Rename project from
dbt-airflow-manifest-parsertodbt-airflow-factory.
KubernetesExecutionParameters.env_varsworks in Airflow 1 too. Airflow 1 is expecting a real dictionary of environment variables instead of a list ofk8s.V1EnvVarobjects.- Fix
DummyOperatorimport inoperator.pyto work in Airflow 1.
0.17.0 - 2022-01-11
- Ephemeral models are not run anymore, presented as an
EphemeralOperatorderiving from theDummyOperator.
0.16.0 - 2022-01-05
- Add support for
varsindbt.yml.
0.15.0 - 2021-12-13
- Drop
<TASK_ID>_prefix from Task names when using TaskGroup.
0.14.0 - 2021-12-06
- Add
**kwargsargument toDbtExecutionEnvironmentParametersandKubernetesExecutionParametersconstructors, making them ignore additional arguments, if provided. - Add support for Kubernetes environment variables.
0.13.0 - 2021-11-17
- Allow usage of TaskGroup when
use_task_groupflag is set toTrue
0.12.0 - 2021-11-17
0.11.0 - 2021-11-10
0.10.0 - 2021-11-09
0.9.0 - 2021-11-05
0.8.0 - 2021-11-03
0.7.0 - 2021-11-02
0.6.0 - 2021-11-02
0.5.0 - 2021-10-29
- Automatic parsing config files
0.4.0 - 2021-10-27
0.3.0 - 2021-10-27
- Support for Airflow 2.x
0.2.0 - 2021-10-25
- Initial implementation of
dbt_airflow_manifest_parserlibrary.