Skip to content

Commit fb945b7

Browse files
committed
Merge main and resolve conflicts
2 parents fb43e1c + 144b45d commit fb945b7

118 files changed

Lines changed: 1655 additions & 724 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/javascript/failureNotifier/failureNotifier.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ ${errorMessage}
122122
1. **Why the PR caused the job to fail?**
123123
2. **Address any underlying issues.**
124124
125+
**For detailed instructions, check [this SO](https://stackoverflowteams.com/c/expensify/questions/21936).**
126+
125127
**🐛 We appreciate your help in squashing this bug!**`;
126128

127129
await octokit.rest.issues.create({

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009036400
115-
versionName "9.3.64-0"
114+
versionCode 1009036401
115+
versionName "9.3.64-1"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
resConfigs "en", "es"

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@
640640
"rideshare",
641641
"RNCORE",
642642
"RNFS",
643+
"RNLinksdk",
643644
"rnmapbox",
644645
"RNTL",
645646
"RNVP",

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.3.64.0</string>
47+
<string>9.3.64.1</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.3.64</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.64.0</string>
16+
<string>9.3.64.1</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.3.64</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.64.0</string>
16+
<string>9.3.64.1</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.3.64-0",
3+
"version": "9.3.64-1",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# `react-native-plaid-link-sdk` patches
2+
3+
### [react-native-plaid-link-sdk+12.5.3+001+fix-oauth-hybrid-app-ios.patch](react-native-plaid-link-sdk+12.5.3+001+fix-oauth-hybrid-app-ios.patch)
4+
5+
- Reason:
6+
7+
```
8+
Fixes Plaid OAuth getting stuck in a retry loop on HybridApp iOS (e.g.
9+
Banco Santander ES). HybridApp routes the bank's universal-link return
10+
through JS Linking, so LinkKit never sees the callback URL and re-fires
11+
OAuth after its internal timeout. The patch exposes [PLKHandler
12+
resumeAfterTermination:] to JS so we can forward the URL back into the SDK.
13+
14+
The patch:
15+
1. Adds RCT_EXPORT_METHOD(continueFromRedirectUri:) to RNLinksdk.mm.
16+
2. Tracks the active module via a static sSharedInstance, set when
17+
createPlaidLink succeeds and cleared on exit/handoff, so the
18+
forwarder can resolve the correct handler.
19+
3. Adds the matching continueFromRedirectUri Spec entry to
20+
src/fabric/NativePlaidLinkModuleiOS.ts (required on New Architecture
21+
so the TurboModule codegen exposes the method to JS).
22+
```
23+
24+
- Upstream PR/issue: -
25+
- E/App issue: https://github.com/Expensify/App/issues/87757
26+
- PR introducing patch: https://github.com/Expensify/App/pull/88534

0 commit comments

Comments
 (0)