This is an automated email from the ASF dual-hosted git repository.
mintsweet pushed a change to branch feat-5791
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
omit 47202092d feat(config-ui): improve the api key in webhook
add 1c5635b39 fix: update started_date logic (#6049)
add 730e0bca1 feat(db): add cicd_deployments table (#6001)
add 9b7394390 feat(webhook): plugin webhook's detail and list api can get
api key info now (#6050)
new 68d2f977b feat(config-ui): improve the api key in webhook
new 827ebc195 refactor(config-ui): adjust the props footer for dialog
component
new 71b60e01e fix(config-ui): match full the api rewrite
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (47202092d)
\
N -- N -- N refs/heads/feat-5791 (71b60e01e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
backend/core/models/api_key.go | 8 +-
.../devops/{cicd_task.go => cicd_deployment.go} | 28 ++----
.../domainlayer/devops/cicd_deployment_commit.go | 20 +++-
.../models/domainlayer/domaininfo/domaininfo.go | 1 +
.../20230725_add_api_key_tables.go | 4 +-
...s.go => 20230831_add_cicd_deployments_table.go} | 46 ++++-----
backend/core/models/migrationscripts/register.go | 1 +
backend/helpers/apikeyhelper/apikeyhelper.go | 4 +
backend/plugins/bamboo/e2e/deploy_build_test.go | 1 +
.../plugins/bamboo/tasks/deploy_build_convertor.go | 2 +-
.../bitbucket/tasks/deployment_convertor.go | 2 +-
.../20220928_add_dora_benchmark.go | 2 +-
.../dora/tasks/deployment_commits_generator.go | 2 +-
.../dora/tasks/prev_deployment_commit_enricher.go | 2 +-
backend/plugins/webhook/api/connection.go | 63 +++++++++----
backend/plugins/webhook/api/deployments.go | 20 +++-
backend/plugins/webhook/api/init.go | 6 +-
backend/plugins/webhook/models/connection.go | 6 --
.../e2e/snapshot_tables/execution_sprint.csv | 10 +-
.../plugins/zentao/tasks/execution_convertor.go | 2 +-
backend/server/services/apikeys.go | 3 +
config-ui/src/components/dialog/index.tsx | 6 +-
config-ui/src/plugins/register/webook/api.ts | 2 +
.../index.tsx => components/create-dialog.tsx} | 105 +++++++++++----------
.../register/webook/components/delete-dialog.tsx | 4 +-
.../plugins/register/webook/components/index.ts | 3 +-
.../webook/components/miller-columns/index.tsx | 66 -------------
.../miller-columns/use-miller-columns.ts | 58 ------------
.../register/webook/components/selector-dialog.tsx | 98 +++++++++++++++++++
.../register/webook/components/view-dialog.tsx | 45 +++++++--
.../{connection/index.tsx => connection.tsx} | 32 +++----
.../plugins/register/webook/connection/styled.ts | 37 --------
.../register/webook/create-dialog/styled.ts | 41 --------
config-ui/src/plugins/register/webook/index.ts | 4 +-
.../register/webook/selector-dialog/index.tsx | 61 ------------
.../register/webook/selector-dialog/styled.ts | 33 -------
config-ui/src/plugins/register/webook/styled.ts | 32 ++++++-
config-ui/vite.config.ts | 2 +-
38 files changed, 387 insertions(+), 475 deletions(-)
copy backend/core/models/domainlayer/devops/{cicd_task.go =>
cicd_deployment.go} (71%)
copy backend/core/models/migrationscripts/{20230725_add_api_key_tables.go =>
20230831_add_cicd_deployments_table.go} (56%)
rename config-ui/src/plugins/register/webook/{create-dialog/index.tsx =>
components/create-dialog.tsx} (60%)
delete mode 100644
config-ui/src/plugins/register/webook/components/miller-columns/index.tsx
delete mode 100644
config-ui/src/plugins/register/webook/components/miller-columns/use-miller-columns.ts
create mode 100644
config-ui/src/plugins/register/webook/components/selector-dialog.tsx
rename config-ui/src/plugins/register/webook/{connection/index.tsx =>
connection.tsx} (78%)
delete mode 100644 config-ui/src/plugins/register/webook/connection/styled.ts
delete mode 100644
config-ui/src/plugins/register/webook/create-dialog/styled.ts
delete mode 100644
config-ui/src/plugins/register/webook/selector-dialog/index.tsx
delete mode 100644
config-ui/src/plugins/register/webook/selector-dialog/styled.ts