Versions in this module Expand all Collapse all v0 v0.1.0 Jul 18, 2026 Changes in this version + func DecodeIssueIDs(docComment string) []string + func EncodeIssueIDs(ids []string) string + func ExtractIssueIDs(subject string) []string + func LoadUnreachableHunks(repoRoot string, maxCommits int) ([]CommitInfo, []HunkInfo, error) + type CommitInfo struct + SHA string + Subject string + Timestamp int64 + type FileHistory struct + Commits map[string]CommitInfo + Files map[string][]string + func LoadHistory(repoRoot string, maxPerFile int) (FileHistory, error) + type HunkInfo struct + Added int + Binary bool + FilePath string + Index int + NewLines int + NewStart int + OldLines int + OldStart int + Patch []byte + Removed int + SHA string + func LoadHunks(repoRoot string, maxCommits int) ([]HunkInfo, error)