This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 4dce7459d9 Fix #35946: Visible DAG RUN doesn't point to the same dag
run id (#38365)
add 448707c1d8 Add task failed dependencies to details page. (#38449)
No new revisions were added by this update.
Summary of changes:
.../endpoints/task_instance_endpoint.py | 63 +++++++++++
airflow/api_connexion/openapi/v1.yaml | 81 ++++++++++++++
.../api_connexion/schemas/task_instance_schema.py | 14 +++
airflow/www/static/js/api/index.ts | 2 +
...eTaskInstance.ts => useTaskFailedDependency.ts} | 68 ++++++------
.../details/taskInstance/TaskFailedDependency.tsx | 93 ++++++++++++++++
.../static/js/dag/details/taskInstance/index.tsx | 13 +++
airflow/www/static/js/types/api-generated.ts | 118 +++++++++++++++++++++
airflow/www/templates/airflow/dag.html | 3 +
.../endpoints/test_task_instance_endpoint.py | 116 ++++++++++++++++++++
10 files changed, 536 insertions(+), 35 deletions(-)
copy airflow/www/static/js/api/{useTaskInstance.ts =>
useTaskFailedDependency.ts} (52%)
create mode 100644
airflow/www/static/js/dag/details/taskInstance/TaskFailedDependency.tsx