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 fc52d7d1279 Restrict pydantic 2.10.0 (#44249)
add f33166a6122 AIP-81 Add Insert Multiple Pools API (#44121)
No new revisions were added by this update.
Summary of changes:
airflow/api_fastapi/app.py | 9 +-
airflow/api_fastapi/common/exceptions.py | 64 ++++++++++
airflow/api_fastapi/core_api/app.py | 8 ++
airflow/api_fastapi/core_api/datamodels/pools.py | 8 +-
.../api_fastapi/core_api/openapi/v1-generated.yaml | 63 ++++++++++
.../api_fastapi/core_api/routes/public/pools.py | 31 ++++-
airflow/ui/openapi-gen/queries/common.ts | 3 +
airflow/ui/openapi-gen/queries/queries.ts | 38 ++++++
airflow/ui/openapi-gen/requests/schemas.gen.ts | 17 +++
airflow/ui/openapi-gen/requests/services.gen.ts | 28 +++++
airflow/ui/openapi-gen/requests/types.gen.ts | 44 +++++++
.../core_api/routes/public/test_pools.py | 133 ++++++++++++++++++++-
12 files changed, 439 insertions(+), 7 deletions(-)
create mode 100644 airflow/api_fastapi/common/exceptions.py