This is an automated email from the ASF dual-hosted git repository. shuai pushed a change to branch dev in repository https://gitbox.apache.org/repos/asf/answer.git
from 30bac18a fix: add signal exit on build failure new 6abf8222 feat: add MergeTag functionality to merge tags and update followers new 9c0844f0 feat: implement MergeTag functionality with UI and backend support new ab04d85d feat: implement migration of followers and tag objects during tag merge new 7b459283 optimize for no result new 9b0a86f4 feat: enhance MergeTagModal with debounced tag search and replace with searchTag new 537b7210 feat: refactor tag migration logic to streamline object relations and remove unused code The 6 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: i18n/en_US.yaml | 11 + internal/controller/tag_controller.go | 29 +++ internal/repo/activity_common/follow.go | 107 ++++++++++ internal/repo/tag/tag_rel_repo.go | 55 +++++ internal/router/answer_api_router.go | 1 + internal/schema/tag_schema.go | 16 ++ internal/service/activity_common/follow.go | 1 + internal/service/permission/permission_name.go | 2 + internal/service/permission/tag_permission.go | 11 +- internal/service/tag/tag_service.go | 60 +++++- internal/service/tag_common/tag_common.go | 8 + ui/src/components/Modal/MergeTagModal.tsx | 248 ++++++++++++++++++++++ ui/src/components/Modal/index.tsx | 3 +- ui/src/pages/Tags/Info/index.tsx | 276 ++++++++++++++----------- ui/src/services/client/tag.ts | 6 + 15 files changed, 707 insertions(+), 127 deletions(-) create mode 100644 ui/src/components/Modal/MergeTagModal.tsx