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 4bfd1215941 Fix svn push step to add both versions in one commit
(#59505)
add 7ba8dbfd088 Add ability to add, edit, and delete XComs directly from
UI (#58921)
No new revisions were added by this update.
Summary of changes:
.../core_api/openapi/v2-rest-api-generated.yaml | 75 ++++++++
.../api_fastapi/core_api/routes/public/xcom.py | 46 ++++-
.../src/airflow/ui/openapi-gen/queries/common.ts | 1 +
.../src/airflow/ui/openapi-gen/queries/queries.ts | 25 +++
.../ui/openapi-gen/requests/services.gen.ts | 37 +++-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 39 ++++
.../airflow/ui/public/i18n/locales/en/browse.json | 26 ++-
.../airflow/ui/public/i18n/locales/en/common.json | 6 +-
.../XCom/AddXComButton.tsx} | 47 +++--
.../airflow/ui/src/pages/XCom/DeleteXComButton.tsx | 96 ++++++++++
.../XCom/EditXComButton.tsx} | 44 +++--
.../src/airflow/ui/src/pages/XCom/XCom.tsx | 56 +++++-
.../src/airflow/ui/src/pages/XCom/XComModal.tsx | 213 +++++++++++++++++++++
.../core_api/routes/public/test_xcom.py | 97 +++++++++-
14 files changed, 745 insertions(+), 63 deletions(-)
copy
airflow-core/src/airflow/ui/src/{components/TriggerDag/TriggerDAGButton.tsx =>
pages/XCom/AddXComButton.tsx} (55%)
create mode 100644
airflow-core/src/airflow/ui/src/pages/XCom/DeleteXComButton.tsx
copy airflow-core/src/airflow/ui/src/{layouts/Nav/TimezoneModal.tsx =>
pages/XCom/EditXComButton.tsx} (50%)
create mode 100644 airflow-core/src/airflow/ui/src/pages/XCom/XComModal.tsx