[PR #598] [MERGED] feat: generate release notes from git history #643

Closed
opened 2026-02-26 22:31:55 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/598
Author: @rudrankriyam
Created: 2/17/2026
Status: Merged
Merged: 2/17/2026
Merged by: @rudrankriyam

Base: mainHead: feat/release-notes-from-git


📝 Commits (2)

  • 4456fb9 feat(release-notes): generate notes from git history
  • 68f8384 fix(release-notes): reject unexpected args

📊 Changes

7 files changed (+624 additions, -0 deletions)

View changed files

internal/cli/cmdtest/release_notes_generate_test.go (+200 -0)
📝 internal/cli/docs/templates/ASC.md (+1 -0)
📝 internal/cli/registry/registry.go (+2 -0)
internal/cli/releasenotes/release_notes.go (+192 -0)
internal/releasenotes/git.go (+84 -0)
internal/releasenotes/releasenotes.go (+106 -0)
internal/releasenotes/releasenotes_test.go (+39 -0)

📄 Description

Closes #588.

Adds asc release-notes generate to generate App Store "What's New" text from local git history.

  • New command group: release-notes with generate subcommand
  • Supports --since-tag / --since-ref, --until-ref, --max-chars, --include-merges, --format
  • Output: --output json|text|table|markdown (--pretty for JSON)
  • Includes cmdtests using a temporary git repo + unit tests for formatting/truncation

Tests

  • make format
  • make lint
  • ASC_BYPASS_KEYCHAIN=1 make test

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/598 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 2/17/2026 **Status:** ✅ Merged **Merged:** 2/17/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `feat/release-notes-from-git` --- ### 📝 Commits (2) - [`4456fb9`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/4456fb90f2a35b6cd1d335c2645144a98df17db5) feat(release-notes): generate notes from git history - [`68f8384`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/68f83846a08cc0ca08b6b41aaf54f3c912f35d11) fix(release-notes): reject unexpected args ### 📊 Changes **7 files changed** (+624 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `internal/cli/cmdtest/release_notes_generate_test.go` (+200 -0) 📝 `internal/cli/docs/templates/ASC.md` (+1 -0) 📝 `internal/cli/registry/registry.go` (+2 -0) ➕ `internal/cli/releasenotes/release_notes.go` (+192 -0) ➕ `internal/releasenotes/git.go` (+84 -0) ➕ `internal/releasenotes/releasenotes.go` (+106 -0) ➕ `internal/releasenotes/releasenotes_test.go` (+39 -0) </details> ### 📄 Description Closes #588. Adds `asc release-notes generate` to generate App Store \"What's New\" text from local git history. - New command group: `release-notes` with `generate` subcommand - Supports `--since-tag` / `--since-ref`, `--until-ref`, `--max-chars`, `--include-merges`, `--format` - Output: `--output json|text|table|markdown` (`--pretty` for JSON) - Includes cmdtests using a temporary git repo + unit tests for formatting/truncation Tests - `make format` - `make lint` - `ASC_BYPASS_KEYCHAIN=1 make test` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 22:31:55 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/App-Store-Connect-CLI#643
No description provided.