Versions in this module Expand all Collapse all v1 v1.7.0 Jan 5, 2026 v1.6.0 Dec 29, 2025 Changes in this version + type DependencyAnalyzer interface + AnalyzeChanges func(ctx context.Context, vcsClient VCSClient, previousTag, currentTag string) ([]models.DependencyChange, error) + CanHandle func(ctx context.Context, vcsClient VCSClient, previousTag, currentTag string) bool + Name func() string + type VCSClient interface + AddLabelsToPR func(ctx context.Context, prNumber int, labels []string) error + CreateIssue func(ctx context.Context, title string, body string, labels []string, ...) (*models.Issue, error) + CreateLabel func(ctx context.Context, name string, color string, description string) error + CreateRelease func(ctx context.Context, release *models.Release, notes *models.ReleaseNotes, ...) error + GetAuthenticatedUser func(ctx context.Context) (string, error) + GetClosedIssuesBetweenTags func(ctx context.Context, previousTag, currentTag string) ([]models.Issue, error) + GetContributorsBetweenTags func(ctx context.Context, previousTag, currentTag string) ([]string, error) + GetFileAtTag func(ctx context.Context, tag, filepath string) (string, error) + GetFileStatsBetweenTags func(ctx context.Context, previousTag, currentTag string) (*models.FileStatistics, error) + GetIssue func(ctx context.Context, issueNumber int) (*models.Issue, error) + GetMergedPRsBetweenTags func(ctx context.Context, previousTag, currentTag string) ([]models.PullRequest, error) + GetPR func(ctx context.Context, prNumber int) (models.PRData, error) + GetPRIssues func(ctx context.Context, branchName string, commits []string, prDescription string) ([]models.Issue, error) + GetRelease func(ctx context.Context, version string) (*models.VCSRelease, error) + GetRepoLabels func(ctx context.Context) ([]string, error) + UpdateIssueChecklist func(ctx context.Context, issueNumber int, indices []int) error + UpdatePR func(ctx context.Context, prNumber int, summary models.PRSummary) error + UpdateRelease func(ctx context.Context, version, body string) error