From 17f25592141518707902c2a6b16c124031b76c7a Mon Sep 17 00:00:00 2001 From: vmikhalevskii Date: Thu, 17 Sep 2026 09:41:27 +0300 Subject: [PATCH 1/4] chore: release 1.13.0 --- apps/mobile/app.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 5387da3..5ff882b 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -31,7 +31,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } slug: process.env.EXPO_PUBLIC_APP_SLUG as string, scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string, owner: process.env.EXPO_PUBLIC_APP_OWNER as string, - version: '1.12.1', + version: '1.13.0', userInterfaceStyle: 'automatic', orientation: 'portrait', icon: './assets/icon.png', @@ -50,7 +50,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } supportsTablet: false, buildNumber: appEnv.select({ default: '18', - production: '44', + production: '45', }), config: { usesNonExemptEncryption: false, @@ -69,7 +69,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } playStoreUrl: `https://play.google.com/store/apps/details?id=${playStoreAppId}`, versionCode: appEnv.select({ default: 15, - production: 44, + production: 45, }), adaptiveIcon: { foregroundImage: './assets/adaptive-icon.png', From 1c725873c01de695b72f1fb33be358e702805b18 Mon Sep 17 00:00:00 2001 From: vmikhalevskii Date: Thu, 17 Sep 2026 10:38:17 +0300 Subject: [PATCH 2/4] chore: remove unused EXPO_PUBLIC_IS_INTERNAL_RELEASE variable --- apps/mobile/.env.template | 1 - apps/mobile/app.config.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/mobile/.env.template b/apps/mobile/.env.template index 2afc624..4ad3204 100644 --- a/apps/mobile/.env.template +++ b/apps/mobile/.env.template @@ -7,7 +7,6 @@ EXPO_PUBLIC_APP_OWNER= EXPO_PUBLIC_APP_SCHEME= EXPO_PUBLIC_APP_NAME= EXPO_PUBLIC_APP_SLUG= -EXPO_PUBLIC_IS_INTERNAL_RELEASE= SENTRY_DSN= SUPABASE_URL= SUPABASE_PUBLISHABLE_KEY= diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 5ff882b..3aacfb7 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -22,7 +22,6 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } publishableKey: process.env.SUPABASE_PUBLISHABLE_KEY, }, env: appEnv.current, - isInternalRelease: process.env.EXPO_PUBLIC_IS_INTERNAL_RELEASE, }; // eslint-disable-next-line @typescript-eslint/no-explicit-any From 5afb9c150507c01b43db63eeabf3196cd90eba01 Mon Sep 17 00:00:00 2001 From: vmikhalevskii Date: Thu, 17 Sep 2026 10:44:08 +0300 Subject: [PATCH 3/4] chore: add sentry plugin --- apps/mobile/app.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 3aacfb7..013433f 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -127,6 +127,14 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } enableBackgroundRecording: false, }, ], + [ + '@sentry/react-native/expo', + { + url: 'https://sentry.io/', + organization: 'open-mobileui', + project: 'react-native', + }, + ], [ 'expo-build-properties', { From 80f20e8834a23ba778f4b0d6aac31164f49abb3b Mon Sep 17 00:00:00 2001 From: vmikhalevskii Date: Thu, 17 Sep 2026 17:32:59 +0300 Subject: [PATCH 4/4] chore: release 1.13.1 --- apps/mobile/app.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 013433f..3430cdd 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -30,7 +30,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } slug: process.env.EXPO_PUBLIC_APP_SLUG as string, scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string, owner: process.env.EXPO_PUBLIC_APP_OWNER as string, - version: '1.13.0', + version: '1.13.1', userInterfaceStyle: 'automatic', orientation: 'portrait', icon: './assets/icon.png', @@ -49,7 +49,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } supportsTablet: false, buildNumber: appEnv.select({ default: '18', - production: '45', + production: '46', }), config: { usesNonExemptEncryption: false, @@ -68,7 +68,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } playStoreUrl: `https://play.google.com/store/apps/details?id=${playStoreAppId}`, versionCode: appEnv.select({ default: 15, - production: 45, + production: 46, }), adaptiveIcon: { foregroundImage: './assets/adaptive-icon.png',