You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2023/03/02 00:06:25 UTC

[airflow] branch main updated (181a825259 -> 9172d56682)

This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 181a825259 Use waiters in ECS Operators instead of inner sensors (#29761)
     add 9172d56682 Add a new graph inside of the grid view (#29413)

No new revisions were added by this update.

Summary of changes:
 airflow/www/package.json                           |   2 +
 .../{js/variable_edit.js => declarations.d.ts}     |   6 +-
 airflow/www/static/js/api/index.ts                 |   2 +
 .../www/static/js/api/useDatasetDependencies.ts    |  13 +-
 ...useUpstreamDatasetEvents.ts => useGraphData.ts} |  47 +-
 airflow/www/static/js/dag/InstanceTooltip.tsx      |  41 +-
 airflow/www/static/js/dag/Main.tsx                 |   9 +-
 airflow/www/static/js/dag/details/Dag.tsx          | 183 +++---
 airflow/www/static/js/dag/details/Header.tsx       |   6 +-
 .../js/dag/details/dagRun/MarkSuccessRun.tsx       |   1 +
 .../www/static/js/dag/details/dagRun/QueueRun.tsx  |   2 +-
 airflow/www/static/js/dag/details/dagRun/index.tsx | 247 ++++----
 airflow/www/static/js/dag/details/graph/Edge.tsx   |  66 +++
 airflow/www/static/js/dag/details/graph/Node.tsx   | 178 ++++++
 airflow/www/static/js/dag/details/graph/index.tsx  | 183 ++++++
 airflow/www/static/js/dag/details/graph/utils.ts   | 208 +++++++
 airflow/www/static/js/dag/details/index.tsx        | 174 +++++-
 .../static/js/dag/details/taskInstance/Details.tsx |  34 +-
 .../js/dag/details/taskInstance/Logs/LogBlock.tsx  |   8 +-
 .../www/static/js/dag/details/taskInstance/Nav.tsx |  54 +-
 .../static/js/dag/details/taskInstance/index.tsx   | 190 ++-----
 airflow/www/static/js/dag/grid/index.test.tsx      |  54 +-
 airflow/www/static/js/dag/grid/index.tsx           |  21 +-
 airflow/www/static/js/dag/index.tsx                |   6 +
 airflow/www/static/js/dag/useSelection.test.tsx    |   6 +-
 airflow/www/static/js/dag/useSelection.ts          |   5 +-
 .../dag/{grid/ResetRoot.tsx => useToggleGroups.ts} |  37 +-
 airflow/www/static/js/datasets/Graph/Edge.tsx      |  23 +-
 airflow/www/static/js/datasets/Graph/Node.tsx      |   1 +
 airflow/www/static/js/types/index.ts               |   4 +
 airflow/www/static/js/utils/graph.ts               | 216 +++++++
 airflow/www/static/js/utils/index.ts               |  41 +-
 airflow/www/templates/airflow/dag.html             |   1 +
 airflow/www/views.py                               |  36 ++
 airflow/www/webpack.config.js                      |   9 +-
 airflow/www/yarn.lock                              | 629 ++++++++++++++++++++-
 36 files changed, 2161 insertions(+), 582 deletions(-)
 copy airflow/www/static/{js/variable_edit.js => declarations.d.ts} (81%)
 copy airflow/www/static/js/api/{useUpstreamDatasetEvents.ts => useGraphData.ts} (57%)
 create mode 100644 airflow/www/static/js/dag/details/graph/Edge.tsx
 create mode 100644 airflow/www/static/js/dag/details/graph/Node.tsx
 create mode 100644 airflow/www/static/js/dag/details/graph/index.tsx
 create mode 100644 airflow/www/static/js/dag/details/graph/utils.ts
 copy airflow/www/static/js/dag/{grid/ResetRoot.tsx => useToggleGroups.ts} (60%)
 create mode 100644 airflow/www/static/js/utils/graph.ts