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

mintsweet pushed a change to branch feat-dora-config
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


 discard 1c356966e feat: github/graphql dora config and adjust regex function 
(#8026)
     add 29e9b87f9 feat: use new project detail layout (#8002)
     add e573b465d feat(domain): add is_child field to table cicd_pipelines 
(#8006)
     add 3ce50cb4f feat(gitlab): collect child pipelines (#8009)
     add fde073acd feat(github\gitlab): doesn't init api client when 
re-transformating (#7966)
     add d74af26ba Avoid panic (#8011)
     add 55135f9d6 refactor: use redux to rewrite onboard (#8012)
     add 247b96224 fix: webhook will be deleted when disconnected from project 
(#8007)
     add f1806ac5c refactor: adjust redux dir and structure (#8014)
     add 79df6f2e5 fix: onboard initial status error (#8015)
     add 8faffc949 feat(circleci): restranformate without api client (#8019)
     add 100a2a6a8 refactor: use basename to replace configuration PATHS (#8021)
     add b72d445c8 fix: some bugs for project layout (#8022)
     add 054b2f5e6 fix: deployment name too long when commits are too many 
(#8024)
     add b2f21ba86 fix: distinguish update tips (#8023)
     add 2a063b2e8 refactor: simplify miller columns (#8025)
     add 550002e5e fix: redux initial error (#8030)
     add c61e91280 refactor: remove content about ahooks (#8031)
     new ff588b882 feat: github/graphql dora config and adjust regex function 
(#8026)

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   (1c356966e)
            \
             N -- N -- N   refs/heads/feat-dora-config (ff588b882)

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 1 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:
 .../models/domainlayer/devops/cicd_pipeline.go     |   1 +
 .../20240906_add_is_child_to_cicd_pipelines.go}    |  26 +-
 backend/core/models/migrationscripts/register.go   |   1 +
 backend/core/plugin/plugin_blueprint.go            |   1 +
 backend/core/runner/run_task.go                    |   3 +-
 backend/go.mod                                     |   4 +-
 backend/go.sum                                     |  19 +-
 backend/plugins/ae/impl/impl.go                    |   4 +-
 .../plugins/azuredevops_go/api/blueprint_v200.go   |   1 +
 backend/plugins/azuredevops_go/impl/impl.go        |   7 +-
 backend/plugins/bamboo/api/blueprint_v200.go       |   1 +
 backend/plugins/bamboo/e2e/plan_build_test.go      |   5 +-
 backend/plugins/bamboo/impl/impl.go                |   7 +-
 backend/plugins/bitbucket/api/blueprint_v200.go    |   1 +
 backend/plugins/bitbucket/impl/impl.go             |  10 +-
 .../plugins/bitbucket_server/api/blueprint_v200.go |   1 +
 backend/plugins/bitbucket_server/impl/impl.go      |  10 +-
 backend/plugins/circleci/api/blueprint_v200.go     |   1 +
 backend/plugins/circleci/e2e/workflow_test.go      |   2 +-
 backend/plugins/circleci/impl/impl.go              |  18 +-
 backend/plugins/feishu/impl/impl.go                |   4 +-
 backend/plugins/gitee/impl/impl.go                 |   4 +-
 backend/plugins/github/api/blueprint_v200.go       |  19 +-
 backend/plugins/github/e2e/cicd_run_test.go        |   5 +-
 backend/plugins/github/impl/impl.go                |  55 ++-
 backend/plugins/github_graphql/impl/impl.go        | 147 +++---
 backend/plugins/gitlab/api/blueprint_v200.go       |   1 +
 .../plugins/gitlab/e2e/pipelines_detail_test.go    |   5 +-
 backend/plugins/gitlab/impl/impl.go                |  42 +-
 .../20240906_add_source_to_pipelines.go}           |  36 +-
 .../gitlab/models/migrationscripts/register.go     |   1 +
 backend/plugins/gitlab/models/pipeline.go          |  12 +
 backend/plugins/gitlab/tasks/account_extractor.go  |  17 +-
 ...ne_collector.go => child_pipeline_collector.go} |  18 +-
 .../gitlab/tasks/child_pipeline_extractor.go       |  84 ++++
 backend/plugins/gitlab/tasks/job_extractor.go      |   1 -
 .../gitlab/tasks/pipeline_detail_collector.go      |   2 +-
 .../gitlab/tasks/pipeline_detail_convertor.go      |   3 +-
 .../gitlab/tasks/pipeline_detail_extractor.go      |   6 +-
 backend/plugins/gitlab/tasks/pipeline_extractor.go |  21 +-
 backend/plugins/gitlab/tasks/tag_extractor.go      |   3 +-
 .../plugins/gitlab/tasks/trigger_job_extractor.go  |   1 -
 backend/plugins/icla/impl/impl.go                  |   4 +-
 backend/plugins/jenkins/api/blueprint_v200.go      |   1 +
 backend/plugins/jenkins/impl/impl.go               |   7 +-
 backend/plugins/jira/api/blueprint_v200.go         |   1 +
 backend/plugins/jira/impl/impl.go                  |   7 +-
 backend/plugins/opsgenie/api/blueprint_v200.go     |   1 +
 backend/plugins/opsgenie/impl/impl.go              |   3 +-
 backend/plugins/pagerduty/api/blueprint_v200.go    |   1 +
 backend/plugins/pagerduty/impl/impl.go             |   3 +-
 backend/plugins/slack/impl/impl.go                 |   4 +-
 backend/plugins/sonarqube/api/blueprint_v200.go    |   1 +
 backend/plugins/sonarqube/impl/impl.go             |   7 +-
 backend/plugins/tapd/api/blueprint_v200.go         |   1 +
 backend/plugins/tapd/impl/impl.go                  |   7 +-
 backend/plugins/teambition/api/blueprint_v200.go   |   1 +
 backend/plugins/teambition/impl/impl.go            |   7 +-
 backend/plugins/trello/api/blueprint_v200.go       |   1 +
 backend/plugins/trello/impl/impl.go                |   7 +-
 backend/plugins/webhook/api/deployments.go         |  13 +-
 backend/plugins/webhook/impl/impl.go               |   1 +
 backend/plugins/zentao/api/blueprint_v200.go       |   1 +
 backend/plugins/zentao/impl/impl.go                |   7 +-
 backend/server/services/blueprint_makeplan_v200.go |  11 +-
 .../services/blueprint_makeplan_v200_test.go       |   2 +-
 .../services/remote/plugin/plugin_extensions.go    |   1 +
 config-ui/package.json                             |  12 +-
 config-ui/src/App.tsx                              |  56 +++
 config-ui/src/api/index.ts                         |   2 +-
 config-ui/src/api/project/index.ts                 |  13 +-
 config-ui/src/api/scope/index.ts                   |   2 +-
 config-ui/src/app/routrer.tsx                      | 192 ++++----
 config-ui/src/app/store.ts                         |   6 +-
 config-ui/src/config/index.ts                      |   1 -
 config-ui/src/config/paths.ts                      |  37 --
 config-ui/src/features/connections/slice.ts        |  35 +-
 config-ui/src/features/index.ts                    |  19 -
 .../onboard}/index.ts                              |   2 +-
 config-ui/src/features/onboard/slice.ts            | 138 ++++++
 .../version}/index.ts                              |   2 +-
 config-ui/src/features/version/slice.ts            |  63 +++
 config-ui/src/hooks/index.ts                       |   1 +
 .../types.ts => hooks/use-outside-click.ts}        |  32 +-
 .../plugins/components/connection-form/index.tsx   |   2 +-
 .../plugins/components/connection-list/index.tsx   |   3 +-
 .../components/data-scope-remote/search-local.tsx  | 275 +++++------
 .../components/data-scope-remote/search-remote.tsx | 246 ++++------
 .../plugins/components/data-scope-select/index.tsx | 213 ++++-----
 .../src/plugins/components/scope-config/index.tsx  |   3 +-
 .../jira/transformation-fields/remote-link.tsx     |   2 +-
 .../register/webhook/components/create-dialog.tsx  |   2 +-
 .../register/webhook/components/delete-dialog.tsx  |   6 +-
 .../register/webhook/components/edit-dialog.tsx    |   2 +-
 .../webhook/components/selector-dialog.tsx         |  36 +-
 .../register/webhook/components/view-dialog.tsx    |   2 +-
 .../src/plugins/register/webhook/connection.tsx    |  45 +-
 config-ui/src/routes/api-keys/api-keys.tsx         |   3 +-
 .../routes/blueprint/connection-detail/index.tsx   |  17 +-
 .../blueprint/detail/blueprint-detail-page.tsx     |   7 +-
 .../routes/blueprint/detail/blueprint-detail.tsx   |   3 +-
 .../components/add-connection-dialog/index.tsx     |  16 +-
 .../routes/blueprint/detail/components/index.ts    |   1 -
 .../detail/components/update-name-dialog/index.tsx |  53 --
 .../blueprint/detail/configuration-panel.tsx       |  38 +-
 .../src/routes/blueprint/detail/status-panel.tsx   |   7 +-
 config-ui/src/routes/blueprint/home/index.tsx      |  18 +-
 config-ui/src/routes/connection/connection.tsx     |  10 +-
 config-ui/src/routes/connection/connections.tsx    |   3 +-
 config-ui/src/routes/db-migrate/index.tsx          |   3 +-
 config-ui/src/routes/error/index.tsx               |   3 +-
 config-ui/src/routes/layout/config.tsx             |  14 +-
 config-ui/src/routes/layout/index.ts               |   1 -
 config-ui/src/routes/layout/layout.tsx             |  28 +-
 config-ui/src/routes/layout/loader.ts              |  53 --
 config-ui/src/routes/onboard/components/card.tsx   |  44 +-
 config-ui/src/routes/onboard/components/tour.tsx   |   8 +-
 config-ui/src/routes/onboard/context.tsx           |  49 --
 config-ui/src/routes/onboard/index.tsx             | 111 ++---
 config-ui/src/routes/onboard/step-0.tsx            |  43 +-
 config-ui/src/routes/onboard/step-1.tsx            |  30 +-
 config-ui/src/routes/onboard/step-2.tsx            |  57 +--
 config-ui/src/routes/onboard/step-3.tsx            |  27 +-
 config-ui/src/routes/onboard/step-4.tsx            |  52 +-
 config-ui/src/routes/pipeline/pipeline.tsx         |   5 +-
 config-ui/src/routes/pipeline/pipelines.tsx        |   5 +-
 .../index.tsx}                                     |  41 +-
 config-ui/src/routes/project/detail/index.tsx      |  98 ----
 config-ui/src/routes/project/detail/styled.ts      |  26 -
 .../project/general-settings/index.tsx}            |  33 +-
 config-ui/src/routes/project/home/index.tsx        |  12 +-
 config-ui/src/routes/project/index.ts              |   6 +-
 config-ui/src/routes/project/layout/index.tsx      | 139 ++++++
 .../src/routes/project/layout/project-selector.tsx | 121 +++++
 .../project/layout}/styled.ts                      |  71 ++-
 config-ui/src/routes/project/utils.ts              |  21 -
 .../webhooks-panel.tsx => webhook/index.tsx}       |  67 +--
 config-ui/src/types/status.ts                      |   2 +-
 config-ui/src/utils/request.ts                     |  23 +-
 config-ui/yarn.lock                                | 531 ++++++++++++++-------
 140 files changed, 2221 insertions(+), 1839 deletions(-)
 copy 
backend/{plugins/jira/models/migrationscripts/20230214_remove_issue_stdstorypoint.go
 => core/models/migrationscripts/20240906_add_is_child_to_cicd_pipelines.go} 
(66%)
 copy backend/plugins/{jira/models/migrationscripts/20230530_scope_config.go => 
gitlab/models/migrationscripts/20240906_add_source_to_pipelines.go} (54%)
 copy backend/plugins/gitlab/tasks/{pipeline_collector.go => 
child_pipeline_collector.go} (81%)
 create mode 100644 backend/plugins/gitlab/tasks/child_pipeline_extractor.go
 create mode 100644 config-ui/src/App.tsx
 delete mode 100644 config-ui/src/config/paths.ts
 delete mode 100644 config-ui/src/features/index.ts
 copy config-ui/src/{plugins/register/jira/connection-fields => 
features/onboard}/index.ts (96%)
 create mode 100644 config-ui/src/features/onboard/slice.ts
 copy config-ui/src/{plugins/register/jira/connection-fields => 
features/version}/index.ts (96%)
 create mode 100644 config-ui/src/features/version/slice.ts
 copy config-ui/src/{api/pipeline/types.ts => hooks/use-outside-click.ts} (61%)
 delete mode 100644 
config-ui/src/routes/blueprint/detail/components/update-name-dialog/index.tsx
 delete mode 100644 config-ui/src/routes/layout/loader.ts
 delete mode 100644 config-ui/src/routes/onboard/context.tsx
 rename config-ui/src/routes/project/{detail/settings-panel.tsx => 
additional-settings/index.tsx} (91%)
 delete mode 100644 config-ui/src/routes/project/detail/index.tsx
 delete mode 100644 config-ui/src/routes/project/detail/styled.ts
 copy config-ui/src/{plugins/components/connection-form/fields/styled.ts => 
routes/project/general-settings/index.tsx} (60%)
 create mode 100644 config-ui/src/routes/project/layout/index.tsx
 create mode 100644 config-ui/src/routes/project/layout/project-selector.tsx
 copy config-ui/src/{plugins/register/jira/transformation-fields => 
routes/project/layout}/styled.ts (59%)
 delete mode 100644 config-ui/src/routes/project/utils.ts
 rename config-ui/src/routes/project/{detail/webhooks-panel.tsx => 
webhook/index.tsx} (75%)

Reply via email to