This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 6193c872109de265f5fec07fcf70366286e63ff4
Author: Ash Berlin-Taylor <[email protected]>
AuthorDate: Mon Nov 3 15:44:58 2025 +0000

    Fix Execution API migration version to be consistent with released 3.1.1 
(#57748)
    
    On [3.1.1], we have this:
    
    ```python
    bundle = VersionBundle(
        HeadVersion(),
        Version("2025-10-27", MakeDagRunConfNullable),
        Version("2025-09-23", AddDagVersionIdField),
    ```
    
    This fixes up MakeDagRunConfNullable to be the same as it was in the 
previous
    release, and updates AddTriggeringUserNameField to be the new date.
    
    This is already correct on main due to commit 24a0e261
    
    [3.1.1]: 
https://github.com/apache/airflow/blob/3.1.1/airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py
---
 .../src/airflow/api_fastapi/execution_api/versions/__init__.py        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py 
b/airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py
index a111b4dc91e..9364cb12c80 100644
--- a/airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py
+++ b/airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py
@@ -33,8 +33,8 @@ from airflow.api_fastapi.execution_api.versions.v2025_11_05 
import AddTriggering
 
 bundle = VersionBundle(
     HeadVersion(),
-    Version("2025-11-05", MakeDagRunConfNullable),
-    Version("2025-10-10", AddTriggeringUserNameField),
+    Version("2025-11-05", AddTriggeringUserNameField),
+    Version("2025-10-27", MakeDagRunConfNullable),
     Version("2025-09-23", AddDagVersionIdField),
     Version(
         "2025-08-10",

Reply via email to