From f3c05be3074ac9742263677074c9b75cdc72e4f1 Mon Sep 17 00:00:00 2001 From: Dylan Audius Date: Tue, 18 Aug 2026 16:06:29 -0700 Subject: [PATCH] fix(mobile): roll version back to 1.5.185 and drop mobile from changesets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mobile OTA history is keyed on the packages/mobile/package.json version baked into the JS bundle at build time (see src/app/ota-updates.ts), not on the native version. Changesets bumped this to 1.5.186 on 2026-08-03, but the iOS 1.5.186 production build failed, so every iPhone still runs a 1.5.185 bundle and polls histories/ios/production/1.5.185.json — which has had no new release since 2026-07-28. The production OTA publishes on 2026-08-06 landed on 1.5.186 and reached no iOS devices. Roll the version back to 1.5.185 so production OTA publishes target the binary users actually run, and add @audius/mobile to the changesets ignore list so the release tooling stops moving what is effectively an OTA routing key. Mobile's native versions are independent of this field: Android versionName comes from build.gradle and versionCode from Play's max + 1, iOS build number from app_store_build_number + 1. Co-Authored-By: Claude Opus 5 --- .changeset/config.json | 4 +++- package-lock.json | 2 +- packages/mobile/package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index fce1c26540b..35249fb30d4 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,7 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [] + "ignore": [ + "@audius/mobile" + ] } diff --git a/package-lock.json b/package-lock.json index bbec1570b35..fc8e23cf667 100644 --- a/package-lock.json +++ b/package-lock.json @@ -118865,7 +118865,7 @@ }, "packages/mobile": { "name": "@audius/mobile", - "version": "1.5.186", + "version": "1.5.185", "dependencies": { "@amplitude/analytics-react-native": "1.4.11", "@audius/common": "*", diff --git a/packages/mobile/package.json b/packages/mobile/package.json index a2d5b3c5a2e..529c38de4e1 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@audius/mobile", - "version": "1.5.186", + "version": "1.5.185", "private": true, "scripts": { "android:dev": "ENVFILE=.env.dev turbo run android -- --mode=prodDebug",