You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by kl...@apache.org on 2022/09/02 15:40:06 UTC

[incubator-devlake] branch main updated (cb25f653 -> 19f8328b)

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

klesh pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


    from cb25f653 fix: cached plan must not change result type in postgres
     add 19f8328b feat: setup database migration alert dialog on ui (#2859)

No new revisions were added by this update.

Summary of changes:
 config-ui/src/App.js                               |  43 +++++-
 config-ui/src/components/MigrationAlertDialog.jsx  | 172 +++++++++++++++++++++
 config-ui/src/components/Toast.jsx                 |   2 +-
 config-ui/src/components/loaders/ContentLoader.jsx |   8 +-
 config-ui/src/config/migration.js                  |  38 +++++
 config-ui/src/hooks/useDatabaseMigrations.jsx      | 108 +++++++++++++
 .../src/pages/blueprints/create-blueprint.jsx      |   8 +-
 config-ui/src/utils/request.js                     |  24 +--
 8 files changed, 377 insertions(+), 26 deletions(-)
 create mode 100644 config-ui/src/components/MigrationAlertDialog.jsx
 create mode 100644 config-ui/src/config/migration.js
 create mode 100644 config-ui/src/hooks/useDatabaseMigrations.jsx