diff --git a/apps/desktop/changelog/next.md b/apps/desktop/changelog/next.md index a3464797c9c..8f5eac449a4 100644 --- a/apps/desktop/changelog/next.md +++ b/apps/desktop/changelog/next.md @@ -6,8 +6,6 @@ ## No longer broken -- Fixed YouTube embeds in entry content and readability view failing to play due to a missing referrer - ## Thanks Special thanks to volunteer contributors @ for their valuable contributions diff --git a/apps/mobile/changelog/0.5.6.md b/apps/mobile/changelog/0.5.6.md new file mode 100644 index 00000000000..4fd0850d424 --- /dev/null +++ b/apps/mobile/changelog/0.5.6.md @@ -0,0 +1,14 @@ +# What's New in v0.5.6 + +## Improvements + +- Upgraded the app to Expo SDK 57, React Native 0.86, and updated native integrations + +## No longer broken + +- Fixed social sign-in callbacks and legacy session migration using the Folo app scheme +- Fixed signed-out launches not opening the login screen +- Fixed two-factor authentication cookies being dropped during session updates +- Fixed push notification registration after sign-in, including retries and token refreshes +- Fixed the timeline view selector overflowing on narrow screens +- Restored the header background after scrolling diff --git a/apps/mobile/ios/Folo/Info.plist b/apps/mobile/ios/Folo/Info.plist index 6680d0043cb..649773993cd 100644 --- a/apps/mobile/ios/Folo/Info.plist +++ b/apps/mobile/ios/Folo/Info.plist @@ -33,7 +33,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 0.5.5 + 0.5.6 CFBundleSignature ???? CFBundleURLTypes @@ -54,7 +54,7 @@ CFBundleVersion - 8 + 9 ITSAppUsesNonExemptEncryption LSApplicationCategoryType diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 2b364248cfd..be6faa61c16 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@follow/mobile", - "version": "0.5.5", + "version": "0.5.6", "private": true, "main": "src/main.tsx", "scripts": { diff --git a/apps/mobile/release.json b/apps/mobile/release.json index e8eb0ec2e46..6184b941afb 100644 --- a/apps/mobile/release.json +++ b/apps/mobile/release.json @@ -1,6 +1,6 @@ { - "version": "0.5.5", - "mode": "ota", - "runtimeVersion": "0.5.0", - "channel": "production" + "version": "0.5.6", + "mode": "store", + "runtimeVersion": null, + "channel": null }