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 035060d7f38 AIP-83 amendment: Add logic for generating run_id when
logical date is None. (#46616)
add 08a08d00537 AIP-84 Add login endpoint to the public url (#46627)
No new revisions were added by this update.
Summary of changes:
airflow/api_fastapi/app.py | 1 +
.../api_fastapi/core_api/openapi/v1-generated.yaml | 34 ++++++++++++++
.../api_fastapi/core_api/routes/public/__init__.py | 2 +
.../routes/public/{monitor.py => login.py} | 24 ++++++----
airflow/ui/openapi-gen/queries/common.ts | 15 ++++++
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 | 26 +++++++++++
airflow/ui/openapi-gen/requests/types.gen.ts | 25 ++++++++++
airflow/ui/src/main.tsx | 2 +-
.../core_api/routes/public/test_login.py | 54 ++++++++++++++++++++++
tests/api_fastapi/core_api/routes/test_routes.py | 1 +
13 files changed, 250 insertions(+), 9 deletions(-)
copy airflow/api_fastapi/core_api/routes/public/{monitor.py => login.py} (57%)
create mode 100644 tests/api_fastapi/core_api/routes/public/test_login.py