mirror of
https://github.com/thegeeklab/git-sv.git
synced 2024-11-10 02:10:38 +00:00
8cf6f1eb56
BREAKING CHANGE: changes commit-log command json, rename subject to description, move all commit message attributes to 'message'
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
package sv
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/Masterminds/semver/v3"
|
|
)
|
|
|
|
// ReleaseNoteProcessor release note processor interface.
|
|
type ReleaseNoteProcessor interface {
|
|
Create(version *semver.Version, date time.Time, commits []GitCommitLog) ReleaseNote
|
|
}
|
|
|
|
// ReleaseNoteProcessorImpl release note based on commit log.
|
|
type ReleaseNoteProcessorImpl struct {
|
|
tags map[string]string
|
|
}
|
|
|
|
// NewReleaseNoteProcessor ReleaseNoteProcessor constructor.
|
|
func NewReleaseNoteProcessor(tags map[string]string) *ReleaseNoteProcessorImpl {
|
|
return &ReleaseNoteProcessorImpl{tags: tags}
|
|
}
|
|
|
|
// Create create a release note based on commits.
|
|
func (p ReleaseNoteProcessorImpl) Create(version *semver.Version, date time.Time, commits []GitCommitLog) ReleaseNote {
|
|
sections := make(map[string]ReleaseNoteSection)
|
|
var breakingChanges []string
|
|
for _, commit := range commits {
|
|
if name, exists := p.tags[commit.Message.Type]; exists {
|
|
section, sexists := sections[commit.Message.Type]
|
|
if !sexists {
|
|
section = ReleaseNoteSection{Name: name}
|
|
}
|
|
section.Items = append(section.Items, commit)
|
|
sections[commit.Message.Type] = section
|
|
}
|
|
if commit.Message.BreakingMessage() != "" {
|
|
// TODO: if no message found, should use description instead?
|
|
breakingChanges = append(breakingChanges, commit.Message.BreakingMessage())
|
|
}
|
|
}
|
|
|
|
return ReleaseNote{Version: version, Date: date.Truncate(time.Minute), Sections: sections, BreakingChanges: breakingChanges}
|
|
}
|
|
|
|
// ReleaseNote release note.
|
|
type ReleaseNote struct {
|
|
Version *semver.Version
|
|
Date time.Time
|
|
Sections map[string]ReleaseNoteSection
|
|
BreakingChanges []string
|
|
}
|
|
|
|
// ReleaseNoteSection release note section.
|
|
type ReleaseNoteSection struct {
|
|
Name string
|
|
Items []GitCommitLog
|
|
}
|