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 d07ff507b78 Allow setting run_id in xcom_pull method (#41343)
add 5bb922172ba Migrate public xcom endpoint get entry to fastapi (#43521)
No new revisions were added by this update.
Summary of changes:
airflow/api_connexion/endpoints/xcom_endpoint.py | 2 +
.../datamodels/{dag_warning.py => xcom.py} | 35 ++--
.../api_fastapi/core_api/openapi/v1-generated.yaml | 163 +++++++++++++++
.../api_fastapi/core_api/routes/public/__init__.py | 2 +
airflow/api_fastapi/core_api/routes/public/xcom.py | 88 ++++++++
.../core_api/routes/public/test_xcom.py | 226 +++++++++++++++++++++
6 files changed, 503 insertions(+), 13 deletions(-)
copy airflow/api_fastapi/core_api/datamodels/{dag_warning.py => xcom.py} (61%)
create mode 100644 airflow/api_fastapi/core_api/routes/public/xcom.py
create mode 100644 tests/api_fastapi/core_api/routes/public/test_xcom.py