Skip to content

Commit ce2b340

Browse files
committed
Fix conflicts
2 parents e727ebe + 4ef30e8 commit ce2b340

File tree

153 files changed

+6278
-1887
lines changed

Some content is hidden

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

153 files changed

+6278
-1887
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ android {
106106
minSdkVersion rootProject.ext.minSdkVersion
107107
targetSdkVersion rootProject.ext.targetSdkVersion
108108
multiDexEnabled rootProject.ext.multiDexEnabled
109-
versionCode 1001030918
110-
versionName "1.3.9-18"
109+
versionCode 1001031102
110+
versionName "1.3.11-2"
111111
}
112112

113113
splits {

docs/articles/other/Referral-Program.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ As a thank you, every time you bring a new user into the platform who directly o
1414

1515
1. Submit a report or invoice, or share your referral link with anyone you know who is spending too much time on expenses, or works at a company that could benefit from using Expensify.
1616

17-
2. You’ll get $250 for any referred business that commits to an annual subscription and makes two monthly payments.
17+
2. You’ll get $250 for any referred business that commits to an annual subscription, has 2 or more active users, and makes two monthly payments.
1818

1919
That’s right! You can refer anyone working at any company you know.
2020

@@ -42,6 +42,8 @@ While our referral payouts are in USD, you will be able to get paid via a Wise B
4242

4343
- **My referral wasn’t counted! How can I appeal?**
4444

45+
Expensify reserves the right to modify the terms of the referral program at any time, and pays out referral bonuses for eligible companies at its own discretion.
46+
4547
Please send a message to [email protected] with the billing owner of the company you have referred and our team will review the referral and get back to you.
4648

4749
- **Where can I find my referral link?**

ios/NewExpensify/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.3.9</string>
20+
<string>1.3.11</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.3.9.18</string>
33+
<string>1.3.11.2</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.9</string>
18+
<string>1.3.11</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.3.9.18</string>
22+
<string>1.3.11.2</string>
2323
</dict>
2424
</plist>

jest/setup.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ reanimatedJestUtils.setUpTests();
99
// https://reactnavigation.org/docs/testing/#mocking-native-modules
1010
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper');
1111

12-
// We have to mock the SQLiteStorage provider because it uses the native module SQLiteStorage, which is not available in jest.
13-
// Mocking this file in __mocks__ does not work because jest doesn't support mocking files that are not directly used in the testing project
14-
jest.mock('react-native-onyx/lib/storage/providers/SQLiteStorage', () => require('react-native-onyx/lib/storage/__mocks__'));
12+
// Mock react-native-onyx storage layer because the SQLite storage layer doesn't work in jest.
13+
// Mocking this file in __mocks__ does not work because jest doesn't support mocking files that are not directly used in the testing project,
14+
// and we only want to mock the storage layer, not the whole Onyx module.
15+
jest.mock('react-native-onyx/lib/storage', () => require('react-native-onyx/lib/storage/__mocks__'));
1516

1617
// Turn off the console logs for timing events. They are not relevant for unit tests and create a lot of noise
1718
jest.spyOn(console, 'debug').mockImplementation((...params) => {

package-lock.json

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

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.3.9-18",
3+
"version": "1.3.11-2",
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.",
@@ -44,10 +44,11 @@
4444
},
4545
"dependencies": {
4646
"@expensify/react-native-web": "0.18.15",
47-
"@formatjs/intl-getcanonicallocales": "^1.5.8",
48-
"@formatjs/intl-locale": "^2.4.21",
49-
"@formatjs/intl-numberformat": "^6.2.5",
50-
"@formatjs/intl-pluralrules": "^4.0.13",
47+
"@formatjs/intl-getcanonicallocales": "^2.2.0",
48+
"@formatjs/intl-listformat": "^7.2.2",
49+
"@formatjs/intl-locale": "^3.3.0",
50+
"@formatjs/intl-numberformat": "^8.5.0",
51+
"@formatjs/intl-pluralrules": "^5.2.2",
5152
"@gorhom/portal": "^1.0.14",
5253
"@oguzhnatly/react-native-image-manipulator": "github:Expensify/react-native-image-manipulator#c5f654fc9d0ad7cc5b89d50b34ecf8b0e3f4d050",
5354
"@onfido/react-native-sdk": "7.4.0",
@@ -72,7 +73,7 @@
7273
"babel-polyfill": "^6.26.0",
7374
"dom-serializer": "^0.2.2",
7475
"domhandler": "^4.3.0",
75-
"expensify-common": "git+ssh://[email protected]/Expensify/expensify-common.git#3cdaa947fe77016206c15e523017cd50678f2359",
76+
"expensify-common": "git+ssh://[email protected]/Expensify/expensify-common.git#cb5836992710d910ab64f33895052074abdaa357",
7677
"fbjs": "^3.0.2",
7778
"html-entities": "^1.3.1",
7879
"htmlparser2": "^7.2.0",
@@ -109,7 +110,7 @@
109110
"react-native-key-command": "^1.0.0",
110111
"react-native-localize": "^2.2.6",
111112
"react-native-modal": "^13.0.0",
112-
"react-native-onyx": "^1.0.41",
113+
"react-native-onyx": "1.0.41",
113114
"react-native-pdf": "^6.6.2",
114115
"react-native-performance": "^4.0.0",
115116
"react-native-permissions": "^3.0.1",

0 commit comments

Comments
 (0)