[PR #213] [MERGED] App Store version release requests #357

Closed
opened 2026-02-26 21:34:45 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/213
Author: @rudrankriyam
Created: 1/27/2026
Status: Merged
Merged: 1/27/2026
Merged by: @rudrankriyam

Base: mainHead: cursor/app-store-version-release-requests-26c4


📝 Commits (4)

  • 5d205dc Add app store version release request support
  • d423ef7 Merge remote-tracking branch 'origin/main' into cursor/app-store-version-release-requests-26c4
  • e20669d fix: validate release request version id
  • 637235b Merge origin/main into cursor/app-store-version-release-requests-26c4

📊 Changes

11 files changed (+373 additions, -0 deletions)

View changed files

📝 README.md (+3 -0)
📝 cmd/commands_test.go (+10 -0)
📝 cmd/versions.go (+1 -0)
cmd/versions_release.go (+66 -0)
cmd/versions_release_test.go (+52 -0)
📝 internal/asc/integration_test.go (+36 -0)
📝 internal/asc/output_core.go (+4 -0)
📝 internal/asc/output_test.go (+36 -0)
📝 internal/asc/output_versions.go (+23 -0)
internal/asc/release_requests.go (+79 -0)
internal/asc/release_requests_test.go (+63 -0)

📄 Description

Implement asc versions release command and POST /v1/appStoreVersionReleaseRequests endpoint to allow releasing pending developer versions, fixes #206.

The new asc versions release command provides a way to trigger the release of an approved App Store version that is in the "Pending Developer Release" state. This command requires a --confirm flag to prevent accidental releases.

Test Results:

  • make test: Passed.
  • make test-integration: Skipped due to missing ASC_KEY_ID, ASC_ISSUER_ID, ASC_PRIVATE_KEY_PATH, and ASC_RELEASE_VERSION_ID environment variables. The integration test for CreateAppStoreVersionReleaseRequest was added and is ready to run with proper credentials.

Open in Cursor Open in Web


🔄 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/213 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/27/2026 **Status:** ✅ Merged **Merged:** 1/27/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `cursor/app-store-version-release-requests-26c4` --- ### 📝 Commits (4) - [`5d205dc`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/5d205dc6603ae636e01bc756b664914c222f3c28) Add app store version release request support - [`d423ef7`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/d423ef7d6ce6d37cdd15b55f9eb5884804ceafec) Merge remote-tracking branch 'origin/main' into cursor/app-store-version-release-requests-26c4 - [`e20669d`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/e20669d0650e9751539ff1d50b723461f2ebc20e) fix: validate release request version id - [`637235b`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/637235be455dc0daed23a951fa6d542cc23e0bbb) Merge origin/main into cursor/app-store-version-release-requests-26c4 ### 📊 Changes **11 files changed** (+373 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+3 -0) 📝 `cmd/commands_test.go` (+10 -0) 📝 `cmd/versions.go` (+1 -0) ➕ `cmd/versions_release.go` (+66 -0) ➕ `cmd/versions_release_test.go` (+52 -0) 📝 `internal/asc/integration_test.go` (+36 -0) 📝 `internal/asc/output_core.go` (+4 -0) 📝 `internal/asc/output_test.go` (+36 -0) 📝 `internal/asc/output_versions.go` (+23 -0) ➕ `internal/asc/release_requests.go` (+79 -0) ➕ `internal/asc/release_requests_test.go` (+63 -0) </details> ### 📄 Description Implement `asc versions release` command and `POST /v1/appStoreVersionReleaseRequests` endpoint to allow releasing pending developer versions, fixes #206. The new `asc versions release` command provides a way to trigger the release of an approved App Store version that is in the "Pending Developer Release" state. This command requires a `--confirm` flag to prevent accidental releases. **Test Results:** - `make test`: Passed. - `make test-integration`: Skipped due to missing `ASC_KEY_ID`, `ASC_ISSUER_ID`, `ASC_PRIVATE_KEY_PATH`, and `ASC_RELEASE_VERSION_ID` environment variables. The integration test for `CreateAppStoreVersionReleaseRequest` was added and is ready to run with proper credentials. --- <a href="https://cursor.com/background-agent?bcId=bc-3c04b46c-c528-41e4-a1b2-4aadda3785bc"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-cursor-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-cursor-light.svg"><img alt="Open in Cursor" src="https://cursor.com/open-in-cursor.svg"></picture></a>&nbsp;<a href="https://cursor.com/agents?id=bc-3c04b46c-c528-41e4-a1b2-4aadda3785bc"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-web-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-web-light.svg"><img alt="Open in Web" src="https://cursor.com/open-in-web.svg"></picture></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 21:34:45 +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#357
No description provided.