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 2022/08/23 15:33:18 UTC

[airflow] branch main updated (9a5d83d635 -> aa20ba2a72)

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 9a5d83d635 Add Cafebazaar to the list of companies using Airflow (#25906)
     add aa20ba2a72 Datasets graph (#25707)

No new revisions were added by this update.

Summary of changes:
 airflow/www/package.json                           |   6 +
 airflow/www/static/js/api/index.ts                 |   2 +
 .../www/static/js/api/useDatasetDependencies.ts    | 107 +++++++++++
 airflow/www/static/js/api/useDatasets.ts           |  19 +-
 airflow/www/static/js/components/Table/Cells.tsx   |   2 +-
 airflow/www/static/js/datasets/Details.tsx         |  56 +-----
 airflow/www/static/js/datasets/Graph/DagNode.tsx   |  80 ++++++++
 .../static/js/datasets/Graph/Edge.tsx}             |  58 +++---
 airflow/www/static/js/datasets/Graph/Node.tsx      |  97 ++++++++++
 airflow/www/static/js/datasets/Graph/index.tsx     | 149 +++++++++++++++
 airflow/www/static/js/datasets/List.tsx            |  45 +----
 airflow/www/static/js/datasets/index.tsx           |  24 ++-
 airflow/www/static/js/index.d.ts                   |   5 +
 airflow/www/static/js/types/index.ts               |  18 ++
 airflow/www/static/js/utils/index.test.ts          |   4 +-
 airflow/www/templates/airflow/datasets.html        |   1 +
 airflow/www/views.py                               |  65 +++++--
 airflow/www/yarn.lock                              | 206 ++++++++++++++++++++-
 18 files changed, 785 insertions(+), 159 deletions(-)
 create mode 100644 airflow/www/static/js/api/useDatasetDependencies.ts
 create mode 100644 airflow/www/static/js/datasets/Graph/DagNode.tsx
 copy airflow/{ui/src/components/SectionNav.tsx => www/static/js/datasets/Graph/Edge.tsx} (52%)
 create mode 100644 airflow/www/static/js/datasets/Graph/Node.tsx
 create mode 100644 airflow/www/static/js/datasets/Graph/index.tsx