Release/1.0 #1
+2
-1
@@ -3,11 +3,12 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
|
|
||||||
## [0.4.1] - 2026-07-07
|
## [0.4.2] - 2026-07-07
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- **CI build step** — `go build ./cmd/...` failed with "output already exists and is a directory" because Go tried to write a binary named `cmd`, conflicting with the source directory; fixed by passing `-o /dev/null`
|
- **CI build step** — `go build ./cmd/...` failed with "output already exists and is a directory" because Go tried to write a binary named `cmd`, conflicting with the source directory; fixed by passing `-o /dev/null`
|
||||||
|
- **Optional pom.xml** — releaser no longer fails when `pom.xml` (or the configured `maven.pom_path`) does not exist; it logs a notice and proceeds directly to tag and push, making the tool usable in non-Maven projects
|
||||||
|
|
||||||
## [0.4.0] - 2026-07-07
|
## [0.4.0] - 2026-07-07
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# releaser
|
# releaser
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A CI-friendly release automation tool for GitFlow workflows using Conventional Commits.
|
A CI-friendly release automation tool for GitFlow workflows using Conventional Commits.
|
||||||
|
|
||||||
|
|||||||
+11
-3
@@ -203,9 +203,15 @@ func run(o options) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- pom.xml (skipped with --tag-only) ---
|
// --- pom.xml (skipped with --tag-only or when the file does not exist) ---
|
||||||
if !o.tagOnly {
|
pomPath := filepath.Join(absRepo, cfg.Maven.PomPath)
|
||||||
pomPath := filepath.Join(absRepo, cfg.Maven.PomPath)
|
_, statErr := os.Stat(pomPath)
|
||||||
|
hasPom := !errors.Is(statErr, os.ErrNotExist)
|
||||||
|
if statErr != nil && hasPom {
|
||||||
|
return fmt.Errorf("check pom path: %w", statErr)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !o.tagOnly && hasPom {
|
||||||
currentPomVersion, err := maven.ReadVersion(pomPath)
|
currentPomVersion, err := maven.ReadVersion(pomPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("read pom version: %w", err)
|
return fmt.Errorf("read pom version: %w", err)
|
||||||
@@ -235,6 +241,8 @@ func run(o options) error {
|
|||||||
return fmt.Errorf("commit pom.xml: %w", err)
|
return fmt.Errorf("commit pom.xml: %w", err)
|
||||||
}
|
}
|
||||||
fmt.Fprintf(os.Stderr, "info: committed: %s\n", commitMsg)
|
fmt.Fprintf(os.Stderr, "info: committed: %s\n", commitMsg)
|
||||||
|
} else if !o.tagOnly && !hasPom {
|
||||||
|
fmt.Fprintln(os.Stderr, "info: no pom.xml found — skipping version bump commit")
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Git tag ---
|
// --- Git tag ---
|
||||||
|
|||||||
+33
-4
@@ -211,6 +211,7 @@ func TestRunPomOverride(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestRunMissingPom(t *testing.T) {
|
func TestRunMissingPom(t *testing.T) {
|
||||||
|
// --pom points to a non-existent file: pom update is skipped, tag is still created.
|
||||||
_, dir := setupRepo(t)
|
_, dir := setupRepo(t)
|
||||||
addFile(t, dir, "x.go", "// fix")
|
addFile(t, dir, "x.go", "// fix")
|
||||||
repo, _ := gogit.PlainOpen(dir)
|
repo, _ := gogit.PlainOpen(dir)
|
||||||
@@ -218,10 +219,38 @@ func TestRunMissingPom(t *testing.T) {
|
|||||||
w.Add("x.go")
|
w.Add("x.go")
|
||||||
w.Commit("fix: patch", &gogit.CommitOptions{Author: testSig()})
|
w.Commit("fix: patch", &gogit.CommitOptions{Author: testSig()})
|
||||||
|
|
||||||
// Use --pom to point to a non-existent file; keeps the working tree clean.
|
err := execCmd(t, "--no-push", "--branch", "release/1.2", "--repo", dir, "--pom", "nonexistent.xml")
|
||||||
err := execCmd(t, "--branch", "release/1.2", "--repo", dir, "--pom", "nonexistent.xml")
|
if err != nil {
|
||||||
if err == nil {
|
t.Fatalf("missing pom should be skipped, got error: %v", err)
|
||||||
t.Fatal("expected error for missing pom.xml")
|
}
|
||||||
|
|
||||||
|
// Tag must still have been created.
|
||||||
|
repo2, _ := gogit.PlainOpen(dir)
|
||||||
|
_, err = repo2.Tag("v1.2.0")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("expected tag v1.2.0 to be created")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRunNoPomAtDefaultPath(t *testing.T) {
|
||||||
|
// Repo with no pom.xml at the default path: runs without error, creates tag.
|
||||||
|
dir := t.TempDir()
|
||||||
|
repo, err := gogit.PlainInit(dir, false)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
addFile(t, dir, "main.go", "package main")
|
||||||
|
commitAll(t, repo, dir, "fix: initial")
|
||||||
|
|
||||||
|
err = execCmd(t, "--no-push", "--branch", "release/2.0", "--repo", dir)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("no pom.xml should not be an error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
repo2, _ := gogit.PlainOpen(dir)
|
||||||
|
_, err = repo2.Tag("v2.0.0")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("expected tag v2.0.0 to be created")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user