You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ry...@apache.org on 2021/03/24 20:58:30 UTC

[airflow] branch master updated (50928d4 -> d35bcae)

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

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


    from 50928d4  Fix typo in Helm chart tests (#14979)
     add d35bcae  Add basic authentication to new UI (#14988)

No new revisions were added by this update.

Summary of changes:
 airflow/ui/.env.example                            |   1 +
 airflow/ui/.neutrinorc.js                          |   7 +
 airflow/ui/README.md                               |  19 +++
 airflow/ui/package.json                            |   6 +
 airflow/ui/src/App.tsx                             |  22 +--
 airflow/ui/src/auth/AuthProvider.tsx               | 113 +++++++++++++++
 .../ui/{.eslintrc.js => src/auth/PrivateRoute.tsx} |  30 ++--
 .../ui/src/{views/NotFound.tsx => auth/context.ts} |  43 +++---
 .../NotFound.tsx => components/AppHeader.tsx}      |  49 ++++---
 airflow/ui/src/index.tsx                           |  14 +-
 airflow/ui/src/utils/localStorage.ts               |  55 +++++++
 airflow/ui/src/views/Login.tsx                     | 106 ++++++++++++++
 airflow/ui/src/views/Pipelines.tsx                 |   9 +-
 airflow/ui/test/App.test.tsx                       |  52 ++++---
 airflow/ui/test/Login.test.tsx                     | 106 ++++++++++++++
 airflow/ui/{src/index.tsx => test/utils.tsx}       |  30 ++--
 airflow/ui/yarn.lock                               | 158 +++++++++++++++++++--
 17 files changed, 700 insertions(+), 120 deletions(-)
 create mode 100644 airflow/ui/.env.example
 create mode 100644 airflow/ui/src/auth/AuthProvider.tsx
 copy airflow/ui/{.eslintrc.js => src/auth/PrivateRoute.tsx} (69%)
 copy airflow/ui/src/{views/NotFound.tsx => auth/context.ts} (57%)
 copy airflow/ui/src/{views/NotFound.tsx => components/AppHeader.tsx} (56%)
 create mode 100644 airflow/ui/src/utils/localStorage.ts
 create mode 100644 airflow/ui/src/views/Login.tsx
 create mode 100644 airflow/ui/test/Login.test.tsx
 copy airflow/ui/{src/index.tsx => test/utils.tsx} (61%)