[PR #662] [MERGED] feat: add full app release status dashboard #690

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

📋 Pull Request Information

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

Base: mainHead: feat/status-dashboard-full-585


📝 Commits (6)

  • 19e27eb feat: add full app release status dashboard
  • 1e6577c fix: harden status dashboard and improve triage output
  • af3ee5f Fix ambiguous build beta detail fallback mapping
  • 678a575 Merge pull request #664 from rudrankriyam/cursor/positional-fallback-order-603d
  • 4e03255 Fix status date selection to parse RFC3339 timestamps
  • 6e2cd0e Merge pull request #666 from rudrankriyam/cursor/version-date-comparison-logic-448f

📊 Changes

5 files changed (+1631 additions, -0 deletions)

View changed files

internal/cli/cmdtest/status_test.go (+466 -0)
📝 internal/cli/docs/templates/ASC.md (+1 -0)
📝 internal/cli/registry/registry.go (+2 -0)
internal/cli/status/status.go (+903 -0)
internal/cli/status/status_test.go (+259 -0)

📄 Description

Summary

  • add a new top-level asc status dashboard command that aggregates app, builds, TestFlight, App Store, submission, review, phased release, and links into one deterministic payload
  • add --include section filtering (builds,testflight,appstore,submission,review,phased-release,links) with usage validation, plus table/markdown renderers for human-readable dashboards
  • use bounded concurrent fetches for independent sections while reusing existing ASC client methods and shared timeout/auth/output behavior
  • register status in the root registry and update the embedded command reference (ASC.md) command group list
  • add cmdtests for missing --app, full JSON shape, include filtering, invalid include validation, and table output; add status unit tests for include parsing + deterministic tie-break helpers

Closes #585.

Test plan

  • go test ./internal/cli/status
  • go test ./internal/cli/cmdtest -run Status
  • go test ./internal/cli/docs ./internal/cli/registry ./cmd
  • make format
  • make lint
  • ASC_BYPASS_KEYCHAIN=1 make test
  • go run . status --help

🔄 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/662 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 2/20/2026 **Status:** ✅ Merged **Merged:** 2/20/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `feat/status-dashboard-full-585` --- ### 📝 Commits (6) - [`19e27eb`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/19e27eb0d3ba4d0c4e638c3ccacdd26350870a9a) feat: add full app release status dashboard - [`1e6577c`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/1e6577cb3a98ea221f70d96df8683b741006ee8a) fix: harden status dashboard and improve triage output - [`af3ee5f`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/af3ee5fee0a0b2f7c13aabaa0a5d8832389b9993) Fix ambiguous build beta detail fallback mapping - [`678a575`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/678a575042236e12436236b8fd5f588f3d56fa56) Merge pull request #664 from rudrankriyam/cursor/positional-fallback-order-603d - [`4e03255`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/4e03255688b89fca392ff3a3c1a494fe08ad65ee) Fix status date selection to parse RFC3339 timestamps - [`6e2cd0e`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/6e2cd0e9a8b7db5d127805e6167a906e4c4268d7) Merge pull request #666 from rudrankriyam/cursor/version-date-comparison-logic-448f ### 📊 Changes **5 files changed** (+1631 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `internal/cli/cmdtest/status_test.go` (+466 -0) 📝 `internal/cli/docs/templates/ASC.md` (+1 -0) 📝 `internal/cli/registry/registry.go` (+2 -0) ➕ `internal/cli/status/status.go` (+903 -0) ➕ `internal/cli/status/status_test.go` (+259 -0) </details> ### 📄 Description ## Summary - add a new top-level `asc status` dashboard command that aggregates app, builds, TestFlight, App Store, submission, review, phased release, and links into one deterministic payload - add `--include` section filtering (`builds,testflight,appstore,submission,review,phased-release,links`) with usage validation, plus table/markdown renderers for human-readable dashboards - use bounded concurrent fetches for independent sections while reusing existing ASC client methods and shared timeout/auth/output behavior - register `status` in the root registry and update the embedded command reference (`ASC.md`) command group list - add cmdtests for missing `--app`, full JSON shape, include filtering, invalid include validation, and table output; add status unit tests for include parsing + deterministic tie-break helpers Closes #585. ## Test plan - [x] `go test ./internal/cli/status` - [x] `go test ./internal/cli/cmdtest -run Status` - [x] `go test ./internal/cli/docs ./internal/cli/registry ./cmd` - [x] `make format` - [x] `make lint` - [x] `ASC_BYPASS_KEYCHAIN=1 make test` - [x] `go run . status --help` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 22:32:08 +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#690
No description provided.