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 752f933102 EdgeWorker support log file upload in chunks (#43374)
add 14abd334e8 AIP-84: Add UI batch recent dag runs endpoint (#43204)
No new revisions were added by this update.
Summary of changes:
.../api_fastapi/core_api/openapi/v1-generated.yaml | 272 ++++++++++++++++++++
airflow/api_fastapi/core_api/routes/ui/__init__.py | 2 +
airflow/api_fastapi/core_api/routes/ui/dags.py | 133 ++++++++++
.../core_api/serializers/ui}/__init__.py | 0
.../serializers/{providers.py => ui/dags.py} | 17 +-
airflow/ui/openapi-gen/queries/common.ts | 51 ++++
airflow/ui/openapi-gen/queries/prefetch.ts | 71 ++++++
airflow/ui/openapi-gen/queries/queries.ts | 80 ++++++
airflow/ui/openapi-gen/queries/suspense.ts | 80 ++++++
airflow/ui/openapi-gen/requests/schemas.gen.ts | 283 +++++++++++++++++++++
airflow/ui/openapi-gen/requests/services.gen.ts | 45 ++++
airflow/ui/openapi-gen/requests/types.gen.ts | 74 ++++++
.../core_api/routes/public/test_dags.py | 4 +-
tests/api_fastapi/core_api/routes/ui/test_dags.py | 104 ++++++++
14 files changed, 1207 insertions(+), 9 deletions(-)
create mode 100644 airflow/api_fastapi/core_api/routes/ui/dags.py
copy airflow/{api_connexion =>
api_fastapi/core_api/serializers/ui}/__init__.py (100%)
copy airflow/api_fastapi/core_api/serializers/{providers.py => ui/dags.py}
(65%)
create mode 100644 tests/api_fastapi/core_api/routes/ui/test_dags.py