This is an automated email from the ASF dual-hosted git repository.
klesh pushed a change to branch next
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
discard 66d9e518b feat(config-ui): integrate external code
add 085b407e1 refactor: added CreateAndRunApiServer (#6581) (#6582)
add 89f2cc842 fix: gitlab Deployable.Commit.Message can be bigger than 255
(#6588)
add 500c76a03 fix: split the collector into collector+extractor (#6564)
(#6590)
add 425701a98 fix: incorrect datetime value: '0000-00-00' for column
latest_updated (#6587) (#6591)
new 65207cb4b feat(config-ui): integrate external code
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 (66d9e518b)
\
N -- N -- N refs/heads/next (65207cb4b)
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:
backend/plugins/github/models/deployment.go | 34 ++--
backend/plugins/github_graphql/impl/impl.go | 15 +-
.../github_graphql/tasks/account_collector.go | 41 +----
.../tasks/account_extractor.go | 58 +++++--
...lector_extractor.go => deployment_collector.go} | 72 ++-------
.../github_graphql/tasks/deployment_extractor.go | 102 ++++++++++++
.../github_graphql/tasks/issue_collector.go | 162 +------------------
.../{issue_collector.go => issue_extractor.go} | 124 +++-----------
.../plugins/github_graphql/tasks/job_collector.go | 52 +-----
.../tasks/job_extractor.go} | 78 ++++-----
.../plugins/github_graphql/tasks/pr_collector.go | 154 +-----------------
.../tasks/{pr_collector.go => pr_extractor.go} | 178 ++++-----------------
backend/plugins/gitlab/models/deployment.go | 5 +-
.../20231207_modify_deployment_message_type.go} | 26 +--
.../gitlab/models/migrationscripts/register.go | 1 +
backend/server/api/api.go | 24 +--
backend/server/main.go | 2 +-
backend/test/helper/client.go | 2 +-
18 files changed, 337 insertions(+), 793 deletions(-)
copy backend/plugins/{jira => github_graphql}/tasks/account_extractor.go (51%)
rename backend/plugins/github_graphql/tasks/{deployment_collector_extractor.go
=> deployment_collector.go} (62%)
create mode 100644 backend/plugins/github_graphql/tasks/deployment_extractor.go
copy backend/plugins/github_graphql/tasks/{issue_collector.go =>
issue_extractor.go} (65%)
copy backend/plugins/{github/tasks/cicd_job_extractor.go =>
github_graphql/tasks/job_extractor.go} (51%)
copy backend/plugins/github_graphql/tasks/{pr_collector.go => pr_extractor.go}
(57%)
copy backend/{core/models/migrationscripts/20220830_add_type_field_in_board.go
=>
plugins/gitlab/models/migrationscripts/20231207_modify_deployment_message_type.go}
(59%)