When to use: Update release notes (What's New) and store URLs (support, marketing, privacy policy) for your app.
- Completed 01 Install & Project Init
- An editable app version in App Store Connect
Single locale, inline text:
asc --app myapp whats-new --text "Bug fixes and performance improvements." --locales en-USApply the same text to multiple locales:
asc --app myapp whats-new --text "Bug fixes." --locales en-US,zh-HansIf --locales is omitted, the text is applied to all available version locales.
Multi-locale from file:
Create AppStore/data/whats_new.txt:
en-US:
- Bug fixes
- Performance improvements
---
zh-Hans:
- 修复已知问题
- 性能优化
Then run:
asc --app myapp whats-new --file AppStore/data/whats_new.txtSupport URL:
asc --app myapp set-support-url --text "https://example.com/support"Marketing URL (with locales):
asc --app myapp set-marketing-url --text "https://example.com" --locales en-US,zh-HansPrivacy Policy URL:
asc --app myapp set-privacy-policy-url --text "https://example.com/privacy"asc --app myapp support-url
asc --app myapp marketing-url
asc --app myapp privacy-policy-urlwhats_new.txt format not recognized
Ensure each locale section ends with --- (three dashes on its own line). Locale codes must match App Store Connect locales.
URL not updating
Support and marketing URLs are version-localized fields and therefore require an editable App Store version. The privacy policy URL is an App Info localization field. Use --dry-run to confirm the target locales before updating.