Skip to content

Version 1.3.0 - Databricks compatibility

Choose a tag to compare

@AlejandraGalan AlejandraGalan released this 12 Feb 13:47
· 20 commits to master since this release
690fbff

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_status instead of airflow_status.
    • changed execution details to show run_id instead of dag_run_id.
    • renamed DeployedDAG model to DeployedWorkflow.

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

Full Changelog: v1.2.6...v1.3.0