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 2d9ab54eeff Make FAB auth manager login process compatible with
Airflow 3 UI (#45765)
add d151ab9dbae AIP-81 Add DAG Report API (#45393)
No new revisions were added by this update.
Summary of changes:
.../datamodels/{dag_tags.py => dag_report.py} | 22 ++--
.../api_fastapi/core_api/openapi/v1-generated.yaml | 44 ++++++++
.../api_fastapi/core_api/routes/public/__init__.py | 2 +
.../core_api/routes/public/dag_report.py | 56 ++++++++++
airflow/ui/openapi-gen/queries/common.ts | 17 +++
airflow/ui/openapi-gen/queries/prefetch.ts | 21 ++++
airflow/ui/openapi-gen/queries/queries.ts | 27 +++++
airflow/ui/openapi-gen/queries/suspense.ts | 27 +++++
airflow/ui/openapi-gen/requests/services.gen.ts | 28 +++++
airflow/ui/openapi-gen/requests/types.gen.ts | 33 ++++++
.../core_api/routes/public/test_dag_report.py | 124 +++++++++++++++++++++
11 files changed, 391 insertions(+), 10 deletions(-)
copy airflow/api_fastapi/core_api/datamodels/{dag_tags.py => dag_report.py}
(71%)
create mode 100644 airflow/api_fastapi/core_api/routes/public/dag_report.py
create mode 100644 tests/api_fastapi/core_api/routes/public/test_dag_report.py