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 97c7d2c23d reduce eyestrain in dark mode with reduced contrast and
saturation (#42567)
add 7af76b88a0 AIP-84 Migrate patch dags to FastAPI API (#42545)
No new revisions were added by this update.
Summary of changes:
airflow/api_connexion/endpoints/dag_endpoint.py | 1 +
.../{api_connexion => api_fastapi/db}/__init__.py | 0
airflow/api_fastapi/{db.py => db/common.py} | 48 +++++---
airflow/api_fastapi/{db.py => db/dags.py} | 54 +++------
airflow/api_fastapi/openapi/v1-generated.yaml | 123 ++++++++++++++++++++-
airflow/api_fastapi/parameters.py | 50 ++++++---
airflow/api_fastapi/views/public/dags.py | 93 ++++++++++------
airflow/api_fastapi/views/ui/assets.py | 2 +-
airflow/ui/openapi-gen/queries/common.ts | 3 +
airflow/ui/openapi-gen/queries/queries.ts | 88 ++++++++++++++-
airflow/ui/openapi-gen/requests/services.gen.ts | 50 ++++++++-
airflow/ui/openapi-gen/requests/types.gen.ts | 44 ++++++++
tests/api_fastapi/views/public/test_dags.py | 94 ++++++++++++----
13 files changed, 530 insertions(+), 120 deletions(-)
copy airflow/{api_connexion => api_fastapi/db}/__init__.py (100%)
copy airflow/api_fastapi/{db.py => db/common.py} (54%)
rename airflow/api_fastapi/{db.py => db/dags.py} (55%)