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 d23fe09ab1d [Edge]Add child processes to separate process group than
main (#43927)
add 32175768c1e AIP-84 Migrating GET ASSETS Legacy API to fastAPI (#43783)
No new revisions were added by this update.
Summary of changes:
airflow/api_connexion/endpoints/asset_endpoint.py | 2 +
airflow/api_fastapi/common/parameters.py | 39 ++++
.../datamodels/{backfills.py => assets.py} | 51 +++--
.../api_fastapi/core_api/openapi/v1-generated.yaml | 197 ++++++++++++++++++
.../api_fastapi/core_api/routes/public/__init__.py | 2 +
.../routes/public/{dag_warning.py => assets.py} | 57 +++--
airflow/ui/openapi-gen/queries/common.ts | 27 +++
airflow/ui/openapi-gen/queries/prefetch.ts | 39 ++++
airflow/ui/openapi-gen/queries/queries.ts | 48 +++++
airflow/ui/openapi-gen/queries/suspense.ts | 48 +++++
airflow/ui/openapi-gen/requests/schemas.gen.ts | 157 ++++++++++++++
airflow/ui/openapi-gen/requests/services.gen.ts | 36 ++++
airflow/ui/openapi-gen/requests/types.gen.ts | 88 ++++++++
.../core_api/routes/public/test_assets.py | 231 +++++++++++++++++++++
14 files changed, 969 insertions(+), 53 deletions(-)
copy airflow/api_fastapi/core_api/datamodels/{backfills.py => assets.py} (53%)
copy airflow/api_fastapi/core_api/routes/public/{dag_warning.py => assets.py}
(52%)
create mode 100644 tests/api_fastapi/core_api/routes/public/test_assets.py