refactor(versioning): clean up version calculation and logs

This commit is contained in:
Nightapes
2019-05-16 21:30:35 +02:00
parent d7664eb8e8
commit 9f7d3e3b58
6 changed files with 136 additions and 84 deletions

View File

@@ -2,9 +2,12 @@
package analyzer
import (
"fmt"
"regexp"
"strings"
log "github.com/sirupsen/logrus"
"github.com/Nightapes/go-semantic-release/internal/gitutil"
)
@@ -18,18 +21,43 @@ func newAngular() *angular {
regex: `(TAG)(?:\((.*)\))?: (.*)`,
rules: []Rules{
{
Tag: "feat",
Release: "minor",
Enabled: true,
Tag: "feat",
Release: "minor",
Changelog: true,
},
{
Tag: "fix",
Release: "patch",
Enabled: true,
Tag: "fix",
Release: "patch",
Changelog: true,
}, {
Tag: "perf",
Release: "patch",
Enabled: true,
Tag: "perf",
Release: "patch",
Changelog: true,
}, {
Tag: "docs",
Release: "none",
Changelog: false,
},
{
Tag: "style",
Release: "none",
Changelog: false,
}, {
Tag: "refactor",
Release: "none",
Changelog: false,
}, {
Tag: "test",
Release: "none",
Changelog: false,
}, {
Tag: "chore",
Release: "none",
Changelog: false,
}, {
Tag: "build",
Release: "none",
Changelog: false,
},
},
}
@@ -39,14 +67,15 @@ func (a *angular) getRules() []Rules {
return a.rules
}
func (a *angular) analyze(commit gitutil.Commit, tag string) (AnalyzedCommit, bool) {
func (a *angular) analyze(commit gitutil.Commit, tag string) (AnalyzedCommit, bool, error) {
analyzed := AnalyzedCommit{
Commit: commit,
Tag: tag,
}
re := regexp.MustCompile(strings.Replace(a.regex, "TAG", tag, -1))
matches := re.FindAllStringSubmatch(commit.Message+" "+commit.Message, -1)
matches := re.FindAllStringSubmatch(commit.Message, -1)
if len(matches) >= 1 {
if len(matches[0]) >= 3 {
analyzed.Scope = matches[0][2]
@@ -56,14 +85,17 @@ func (a *angular) analyze(commit gitutil.Commit, tag string) (AnalyzedCommit, bo
if len(splitted) == 1 {
analyzed.ParsedMessage = splitted[0]
return analyzed, false
log.Tracef("%s: found %s", commit.Message, tag)
return analyzed, false, nil
}
analyzed.ParsedMessage = splitted[0]
analyzed.ParsedBreakingChangeMessage = splitted[1]
return analyzed, true
log.Tracef(" %s, BREAKING CHANGE found", commit.Message)
return analyzed, true, nil
}
}
return analyzed, false
log.Tracef("%s does not match %s, skip", commit.Message, tag)
return analyzed, false, fmt.Errorf("Not found")
}