This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from f0ec10e2f52 AIP-84 Add filter by dag_id in recent_dag_runs (#44737)
add 1eb683be3a7 Add ability to list active backfills both across cluster
and per-dag (#44624)
No new revisions were added by this update.
Summary of changes:
airflow/api_fastapi/common/parameters.py | 10 +-
.../api_fastapi/core_api/openapi/v1-generated.yaml | 65 +++++++++
airflow/api_fastapi/core_api/routes/ui/__init__.py | 2 +
.../{public/dag_warning.py => ui/backfills.py} | 53 ++++---
airflow/ui/openapi-gen/queries/common.ts | 30 +++-
airflow/ui/openapi-gen/queries/prefetch.ts | 44 +++++-
airflow/ui/openapi-gen/queries/queries.ts | 58 +++++++-
airflow/ui/openapi-gen/queries/suspense.ts | 58 +++++++-
airflow/ui/openapi-gen/requests/services.gen.ts | 37 ++++-
airflow/ui/openapi-gen/requests/types.gen.ts | 33 ++++-
.../core_api/routes/ui/test_backfills.py | 152 +++++++++++++++++++++
11 files changed, 499 insertions(+), 43 deletions(-)
copy airflow/api_fastapi/core_api/routes/{public/dag_warning.py =>
ui/backfills.py} (56%)
create mode 100644 tests/api_fastapi/core_api/routes/ui/test_backfills.py