fix: 이슈 링크 방향을 Jira 표시 축에 맞게 수정 - #79
Merged
Merged
Conversation
gadak link와 REST 링크 생성이 outwardIssue와 inwardIssue를 반대로 배치하던 문제를 바로잡는다. 링크 타입의 outward·inward 설명에 따라 첫 번째 이슈에 요청한 문구가 표시되도록 요청 끝점을 배치한다. CLI와 REST 회귀 테스트에 blocks, is blocked by, split from, type-id, 대칭 링크 사례를 반영하고 사용자 문서와 에이전트 스킬의 안내를 같은 계약으로 갱신한다.
Owner
|
너무 감사합니다!! |
Owner
머지했습니다 — 좋은 발견이었고, 실측 근거까지 붙은 본문 덕에 검증이 빨랐습니다. 감사합니다. 이쪽에서도 머지 전에 독립 재현을 했습니다: PR 이전 바이너리로 실 Cloud에 후속으로 별도 커밋 하나가 바로 뒤에 붙었습니다: standalone 워크스페이스의 인프로세스 트래커(issuetap)가 같은 축을 거울상으로 들고 있어서 — 지금까지는 두 반전이 상쇄돼 standalone에선 옳게 보였고, 이 PR 단독으로는 standalone이 대신 뒤집히는 상태였습니다. issuetap 쪽을 Jira 실계약(투영은 상대 끝의 POST 역할로 라벨)으로 맞추고 gadak의 모듈 핀을 올렸습니다(midagedev/issuetap@69037e6, gadak a519438). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경 사항
gadak link와 REST 링크 생성이 Jira의outwardIssue/inwardIssue끝점을 반대로 배치하던 문제를 수정했습니다.blocks,is blocked by,split from, type-id, 대칭 링크의 CLI·REST 회귀 테스트를 갱신했습니다.검증
go build ./...go vet ./...gofmt -l .go test ./cmd/gadak -run '^TestLink' -count=1go test ./internal/server -run '^(TestLink|TestResolveLinkType)' -count=1go test ./internal/jira -run 'IssueLink|LinkIssues' -count=1npm run typechecknpm run buildJira 실측 검증
go run ./cmd/gadak link WAFE2-32 WAFE2-33 --type "is blocked by"실행 후, Jira에서WAFE2-32 is blocked by WAFE2-33으로 표시됨.go run ./cmd/gadak link WAFE2-32 WAFE2-33 --type "split from"실행 후, Jira에서WAFE2-32 split from WAFE2-33으로 표시됨.전체 Go 테스트 상태
go test ./...는 현재 실행 환경에서 TTY 폭을 요구하는TestPairingMintQRSuppressionMatrix때문에cmd/gadak패키지에서 실패합니다. 링크 변경과 무관하며, 이 브랜치에서도 동일하게 재현했습니다.