Bump app version 9.4.3 → 9.5.3

Feeld raised its minimum supported app version (9.5.3 hit the App Store
2026-06-05) and now rejects 9.4.3 with UNSUPPORTED_APP_VERSION 400 on every
GraphQL call — which broke site load entirely. Verified 9.5.3 is accepted.

Updated APP_VERSION in constants.ts (drives the Apollo x-app-version header)
and server/index.js, plus the UA / x-app-version strings in the vite graphql,
firebase, and fldcdn proxies.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Trey T
2026-06-07 18:51:25 -05:00
parent 8b3e3eb839
commit 48b53bbed3
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1255,7 +1255,7 @@ app.put('/api/okcupid/token', (req, res) => {
const FIREBASE_API_KEY = 'AIzaSyD9o9mzulN50-hqOwF6ww9pxUNUxwVOCXA';
const FIREBASE_REFRESH_URL = `https://securetoken.googleapis.com/v1/token?key=${FIREBASE_API_KEY}`;
const GRAPHQL_ENDPOINT = 'https://core.api.fldcore.com/graphql';
const APP_VERSION = '9.4.3';
const APP_VERSION = '9.5.3';
const OS_VERSION = '26.2.1';
// iOS app identifiers (mirror of src/config/constants.ts)
const IOS_BUNDLE_ID = 'com.3nder.threender';