This is an automated email from the ASF dual-hosted git repository. narro pushed a change to branch feat-8446 in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
discard 792f5eec4 feat(customize): add CSV import functionality for sprints and issue changelogs/worklogs add 6ebaf9bed feat: add ExtractQDevS3DataMeta (#8459) add b7f851df0 feat: add ConvertQDevUserMetrics (#8460) add 4446fd1c7 fix: upgrade grafana for CVE-2025-4123 (#8462) add 41c047d2b feat: add q dev dashboard (#8461) add cf7c14ed9 feat(webhook): add support for webhook PRs (#8435) (#8464) add 2ef56cf76 feat(tapd): add the ability to get tapd lifetime (#8369) add 24803557e feat(customize): add CSV import functionality for sprints and issue changelogs/worklogs 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 (792f5eec4) \ N -- N -- N refs/heads/feat-8446 (24803557e) 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. No new revisions were added by this update. Summary of changes: backend/go.mod | 2 + backend/go.sum | 1 + backend/plugins/q_dev/impl/impl.go | 2 + backend/plugins/q_dev/tasks/s3_data_extractor.go | 241 +++++++ .../plugins/q_dev/tasks/user_metrics_converter.go | 199 ++++++ backend/plugins/tapd/impl/impl.go | 3 + .../tapd/models/{worklog.go => life_time.go} | 26 +- .../20250221_add_lifetime_tables.go | 66 ++ .../tapd/models/migrationscripts/register.go | 1 + ...collector.go => workitem_lifetime_collector.go} | 30 +- ...extractor.go => workitem_lifetime_extractor.go} | 57 +- backend/plugins/webhook/api/blueprint_v200.go | 9 + backend/plugins/webhook/api/connection.go | 2 + backend/plugins/webhook/api/pull_requests.go | 176 +++++ backend/plugins/webhook/impl/impl.go | 9 + config-ui/src/features/connections/utils.ts | 1 + .../register/webhook/components/create-dialog.tsx | 15 +- .../plugins/register/webhook/components/utils.ts | 36 +- .../register/webhook/components/view-dialog.tsx | 11 + config-ui/src/types/webhook.ts | 2 + grafana/Dockerfile | 2 +- grafana/dashboards/QDevUserData.json | 690 ++++++++++++++++++++ grafana/dashboards/QDevUserMetrics.json | 720 +++++++++++++++++++++ 23 files changed, 2238 insertions(+), 63 deletions(-) create mode 100644 backend/plugins/q_dev/tasks/s3_data_extractor.go create mode 100644 backend/plugins/q_dev/tasks/user_metrics_converter.go copy backend/plugins/tapd/models/{worklog.go => life_time.go} (57%) create mode 100644 backend/plugins/tapd/models/migrationscripts/20250221_add_lifetime_tables.go copy backend/plugins/tapd/tasks/{story_bug_collector.go => workitem_lifetime_collector.go} (76%) copy backend/plugins/tapd/tasks/{iteration_extractor.go => workitem_lifetime_extractor.go} (55%) create mode 100644 backend/plugins/webhook/api/pull_requests.go create mode 100644 grafana/dashboards/QDevUserData.json create mode 100644 grafana/dashboards/QDevUserMetrics.json