You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by ab...@apache.org on 2022/11/23 08:21:45 UTC

[incubator-devlake] branch main updated (cb5e87e0d -> 7be868c86)

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

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


    from cb5e87e0d fix(zentao): use zentaoExecution as boardIdGen (#3788)
     add 7be868c86 feat: project deploy commit diff (#3747)

No new revisions were added by this update.

Summary of changes:
 models/domainlayer/code/commits_diff.go            |   2 +-
 .../e2e/project_deployment_commit_diff_test.go     |  63 +++++++
 .../e2e/raw_tables/cicd_pipeline_commits.csv       |   6 +
 plugins/refdiff/e2e/raw_tables/cicd_pipelines.csv  |   6 +
 plugins/refdiff/e2e/raw_tables/cicd_tasks.csv      |   6 +
 plugins/refdiff/e2e/raw_tables/commit_parents.csv  |   6 +
 plugins/refdiff/e2e/raw_tables/project_mapping.csv |   5 +
 plugins/refdiff/e2e/raw_tables/repo_commits.csv    |  11 ++
 .../refdiff/e2e/snapshot_tables/commits_diffs.csv  |   4 +
 .../e2e/snapshot_tables/finished_commits_diffs.csv |   3 +
 plugins/refdiff/impl/impl.go                       |   7 +-
 plugins/refdiff/tasks/commit_diff_calculator.go    |  39 +++-
 .../project_deployment_commit_diff_calculator.go   | 196 +++++++++++++++++++++
 plugins/refdiff/tasks/ref_issue_diff_calculator.go |   7 +-
 plugins/refdiff/tasks/refdiff_task_data.go         |   8 +-
 .../tasks/refs_pr_cherry_pick_calculator.go        |   4 +
 16 files changed, 362 insertions(+), 11 deletions(-)
 create mode 100644 plugins/refdiff/e2e/project_deployment_commit_diff_test.go
 create mode 100644 plugins/refdiff/e2e/raw_tables/cicd_pipeline_commits.csv
 create mode 100644 plugins/refdiff/e2e/raw_tables/cicd_pipelines.csv
 create mode 100644 plugins/refdiff/e2e/raw_tables/cicd_tasks.csv
 create mode 100644 plugins/refdiff/e2e/raw_tables/commit_parents.csv
 create mode 100644 plugins/refdiff/e2e/raw_tables/project_mapping.csv
 create mode 100644 plugins/refdiff/e2e/raw_tables/repo_commits.csv
 create mode 100644 plugins/refdiff/e2e/snapshot_tables/commits_diffs.csv
 create mode 100644 plugins/refdiff/e2e/snapshot_tables/finished_commits_diffs.csv
 create mode 100644 plugins/refdiff/tasks/project_deployment_commit_diff_calculator.go