This is an automated email from the ASF dual-hosted git repository. shuai pushed a change to branch test in repository https://gitbox.apache.org/repos/asf/answer.git
from 36d2904b fix: dashboard unified download link add 59f0c3fb fix: Username minimum length still set to 4 add 30bac18a fix: add signal exit on build failure add 6abf8222 feat: add MergeTag functionality to merge tags and update followers add 9c0844f0 feat: implement MergeTag functionality with UI and backend support add ab04d85d feat: implement migration of followers and tag objects during tag merge add 7b459283 optimize for no result add 9b0a86f4 feat: enhance MergeTagModal with debounced tag search and replace with searchTag add 537b7210 feat: refactor tag migration logic to streamline object relations and remove unused code add 83145487 fix: Optimize the internal logic of merge tags and ui #1110 new 9f420e67 Merge branch 'dev' into test 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: cmd/command.go | 11 +- docs/docs.go | 3 +- docs/swagger.json | 3 +- docs/swagger.yaml | 1 + i18n/en_US.yaml | 11 + i18n/zh_CN.yaml | 9 + 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/schema/user_schema.go | 2 +- 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 + .../Tags/Info/components/MergeTagModal/index.scss | 6 + .../Tags/Info/components/MergeTagModal/index.tsx | 206 +++++++++++++++ ui/src/pages/Tags/Info/index.tsx | 277 ++++++++++++--------- ui/src/services/client/tag.ts | 6 + 21 files changed, 691 insertions(+), 134 deletions(-) create mode 100644 ui/src/pages/Tags/Info/components/MergeTagModal/index.scss create mode 100644 ui/src/pages/Tags/Info/components/MergeTagModal/index.tsx