This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 pushed a change to branch backport-20fb83c-v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
from acb9e04c871 Merge branch 'v3-3-test' into backport-20fb83c-v3-3-test
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 823b5407f45 Merge branch 'v3-3-test' into backport-20fb83c-v3-3-test
No new revisions were added by this update.
Summary of changes:
.../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 | 63 +++++++++++
.../ui/public/i18n/locales/de/components.json | 4 +
.../airflow/ui/public/i18n/locales/de/dags.json | 11 +-
.../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 +++++
.../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 +
19 files changed, 472 insertions(+), 98 deletions(-)
create mode 100644
airflow-core/src/airflow/example_dags/example_task_state_store_async.py