From 2b4741cfe75f8afc6c108543884c0d8ddc5dc2a8 Mon Sep 17 00:00:00 2001 From: srivastavaayush1611LT Date: Wed, 23 Sep 2026 09:07:12 +0530 Subject: [PATCH] docs(api): document release_notes on /app/upload/realDevice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ports the change merged to stage in #3571 — the release_notes form field on the real-device upload endpoint, with the 1100-character cap and the unsupported-character note in the field description. --- api-specs/app-automation.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/api-specs/app-automation.yaml b/api-specs/app-automation.yaml index 9337032d4..dcf316d83 100644 --- a/api-specs/app-automation.yaml +++ b/api-specs/app-automation.yaml @@ -112,6 +112,13 @@ paths: enum: ['individual', 'team'] default: 'individual' description: Visibility scope of the uploaded application. + release_notes: + type: string + maxLength: 1100 + description: >- + Release notes for this build. Maximum 1100 characters; anything longer is + truncated. Emoji and non-Latin scripts are not supported as of now. + Neither case fails the upload. required: - appFile - name @@ -135,6 +142,11 @@ paths: type: string custom_id: type: string + release_notes: + type: string + description: >- + The release notes as stored, after the 1100-character cap and character-set + substitution. Omitted when the stored value is empty. example: app_id: "APP10160502401693989036908244" name: "Appname" @@ -142,6 +154,7 @@ paths: app_url: "lt://APPID" url: "APP_URL" custom_id: "Custom" + release_notes: "Fixed login crash on Android 14; improved upload speed" '401': description: Unauthorized access. Authentication required. '415':