This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 pushed a change to branch backport-27e8824-v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
from a013208f570 [v3-3-test] Gate asset event partition_key behind
execution API 2026-06-30 (#72327) (cherry picked from commit
27e882439f66aa113d301eae37d45bba633c9acd)
add 41f5dd7d85f Complete German UI translations (#71668) (#72736)
add a2abdc59e20 [v3-3-test] Change DAG processed log when no action
required (#72308) (#72749)
add 8bf2a38fe1d [v3-3-test] fix ui connection test with null host and port
(#72348) (#72747)
add 95e9ee32127 [v3-3-test] Fix airflow info --file-io uploading an empty
report (#72707) (#72832)
add 3c055a11091 [v3-3-test] Remove unused Breeze uv timeout and WSL
helpers (#72704) (#72719)
add 8fe8a23256d Fix clipping of Last run state badge (#72459) (#72841)
add 70d8fa628c9 Fix Calendar view computing cron planned runs in UTC
instead of the Dag's timezone (#71243) (#72839)
add 7307d094671 Close German Translation Gaps 2026-09-07 (#72630) (#72843)
add dd7f63b3828 Bound remaining single-row lookups with .limit(1) (#72699)
(#72842)
add 87d6f4110b7 Add example Dag for checkpointing progress from an async
task (#71870) (#72840)
add d9b248a33c2 [v3-3-test] Retry prek hook installation when a toolchain
download fails (#72382) (#72748)
add 5ca7d2448d1 [v3-3-test] Make Helm chart version optional in bug
reports (#72545) (#72757)
add 7e13aaa1be5 [v3-3-test] Fix missing HTTP access logs when api-server
omits the core app (#72026) (#72808)
add c6a794b55b9 Merge branch 'v3-3-test' into backport-27e8824-v3-3-test
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/1-airflow_bug_report.yml | 2 -
.github/actions/install-prek/action.yml | 18 ++-
airflow-core/src/airflow/api_fastapi/app.py | 8 ++
.../src/airflow/api_fastapi/core_api/app.py | 8 +-
.../core_api/routes/public/connections.py | 39 ++++++-
.../api_fastapi/core_api/routes/public/dags.py | 4 +-
.../api_fastapi/core_api/services/ui/calendar.py | 26 ++---
.../execution_api/routes/task_instances.py | 2 +-
.../src/airflow/cli/commands/info_command.py | 7 +-
airflow-core/src/airflow/dag_processing/manager.py | 2 +-
.../example_dags/example_task_state_store_async.py | 94 +++++++++++++++
.../airflow/ui/public/i18n/locales/de/common.json | 128 ++++++++++++++++++++-
.../ui/public/i18n/locales/de/components.json | 10 ++
.../src/airflow/ui/public/i18n/locales/de/dag.json | 7 +-
.../airflow/ui/public/i18n/locales/de/dags.json | 18 ++-
.../ui/public/i18n/locales/de/dashboard.json | 18 +++
.../airflow/ui/public/i18n/locales/de/hitl.json | 14 +++
.../components/FilterBar/filters/SelectFilter.tsx | 11 +-
.../core_api/routes/public/test_connections.py | 62 ++++++++++
.../core_api/routes/public/test_dags.py | 18 ++-
.../core_api/routes/ui/test_calendar.py | 121 ++++++++++++++++++-
.../versions/head/test_task_instances.py | 25 ++++
airflow-core/tests/unit/api_fastapi/test_app.py | 13 +++
.../tests/unit/cli/commands/test_info_command.py | 10 ++
.../src/airflow_breeze/commands/common_options.py | 7 --
dev/breeze/src/airflow_breeze/utils/platforms.py | 62 ----------
docs/spelling_wordlist.txt | 2 +
27 files changed, 619 insertions(+), 117 deletions(-)
create mode 100644
airflow-core/src/airflow/example_dags/example_task_state_store_async.py