o-nikolas commented on code in PR #73224:
URL: https://github.com/apache/airflow/pull/73224#discussion_r4043200635
##########
airflow-core/src/airflow/api_fastapi/execution_api/versions/__init__.py:
##########
@@ -55,11 +55,17 @@
from airflow.api_fastapi.execution_api.versions.v2026_10_30 import (
AddArgBindingsToTIRunContext,
AddCallbackRunEndpoint,
+ AddMultiTeamToTIRunContext,
)
bundle = VersionBundle(
HeadVersion(),
- Version("2026-10-30", AddArgBindingsToTIRunContext,
AddCallbackRunEndpoint),
+ Version(
Review Comment:
We're not actually bumping the version here. v2026_10_30 already existed
(added by #71192) and is unreleased, so this just adds a migration to that
existing bundle. That's what the docs prescribe:
"New migrations can be added to an existing unreleased version; not every
migration needs a new version."
https://github.com/apache/airflow/blob/main/contributing-docs/19_execution_api_versioning.rst#L54
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]