Skip to content
Closed
Changes from all 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
8 changes: 8 additions & 0 deletions airflow-core/docs/core-concepts/dags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,14 @@ date would then be the logical date + scheduled interval.
For more information on ``logical date``, see :ref:`data-interval` and
:ref:`faq:what-does-execution-date-mean`.

Dag Versioning
~~~~~~~~~~~~~~

In Airflow 3, Dags are versioned automatically when their definition changes.
A new Dag version is created whenever the DAG structure is modified, for example when tasks or dependencies are added, removed, or updated.

Each Dag run is associated with the version of the Dag that existed at the time
the run was scheduled. Changes made to a Dag after a run has been scheduled do not affect already running or completed DAG runs.
Dag Assignment
--------------

Expand Down