Version 1.3.0 - Databricks compatibility
cornflow-server
- released: 2026-02-12
- description: new version of cornflow with new features and bug fixes.
- changelog:
- added support for Databricks as an execution backend.
- added support for Microsoft Azure AD / Entra ID authentication.
- changed health check endpoint to return
backend_statusinstead ofairflow_status. - changed execution details to show
run_idinstead ofdag_run_id. - renamed
DeployedDAGmodel toDeployedWorkflow.
cornflow-client
1. New Method Names Available
If you use the Cornflow Python client (cornflow-client), we've added new method names that are clearer and more generic:
| What You Used Before | What You Can Use Now | Status |
|---|---|---|
get_dag_info() |
get_workflow_info() |
✅ Both work (old shows warning) |
run_dag() |
run_workflow() |
✅ Both work (old shows warning) |
get_dag_run_status() |
get_run_status() |
✅ Both work (old shows warning) |
Example of the change:
# Old way (still works but shows warning)
client.run_dag(execution_id="123", dag_name="solve_model_dag")
# New way (recommended)
client.run_workflow(execution_id="123", workflow_name="solve_model_dag")What's Changed
- Release/v1.2.6 by @AlejandraGalan in #696
- Feature/update develop version by @AlejandraGalan in #700
- Feature/databricks by @AlejandraGalan in #629
- Release/v1.3.0 by @ggsdc in #709
- Feature/check solution error (#694) by @AlejandraGalan in #699
Full Changelog: v1.2.6...v1.3.0