Skip to content

Commit d1b17c0

Browse files
committed
Merge branch 'main' into korytko/display-sender-avatar-next-to-preview
2 parents 1ad31d1 + 81d84d7 commit d1b17c0

File tree

788 files changed

+5661
-3386
lines changed

Some content is hidden

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

788 files changed

+5661
-3386
lines changed

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ const restrictedImportPaths = [
100100
name: 'react-native-animatable',
101101
message: "Please use 'react-native-reanimated' instead.",
102102
},
103+
{
104+
name: 'react-native-onyx',
105+
importNames: ['useOnyx'],
106+
message: "Please use '@hooks/useOnyx' instead.",
107+
},
103108
];
104109

105110
const restrictedImportPatterns = [

.github/workflows/reassurePerformanceTests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,17 @@ jobs:
4848
BASELINE_BRANCH=${BASELINE_BRANCH:="main"}
4949
git fetch origin "$BASELINE_BRANCH" --no-tags --depth=1
5050
git switch "$BASELINE_BRANCH"
51+
cd Mobile-Expensify
52+
git checkout "$(git rev-parse HEAD)"
53+
cd ..
54+
git add Mobile-Expensify
5155
npm install --force || (rm -rf node_modules && npm install --force)
5256
NODE_OPTIONS=--experimental-vm-modules npx reassure --baseline
5357
git switch --force --detach -
58+
cd Mobile-Expensify
59+
git checkout "$(git rev-parse HEAD)"
60+
cd ..
61+
git add Mobile-Expensify
5462
git merge --no-commit --allow-unrelated-histories "$BASELINE_BRANCH" -X ours
5563
git checkout --ours .
5664
npm install --force || (rm -rf node_modules && npm install --force)

Mobile-Expensify

__mocks__/@ua/react-native-airship.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ enum EventType {
66
PushReceived = 'com.airship.push_received',
77
}
88

9-
// eslint-disable-next-line no-restricted-syntax
10-
enum PermissionStatus {
11-
Granted = 'granted',
12-
Denied = 'denied',
13-
NotDetermined = 'not_determined',
14-
}
15-
169
// eslint-disable-next-line @typescript-eslint/no-namespace
1710
namespace iOS {
1811
/**
@@ -78,4 +71,4 @@ const Airship: Partial<AirshipRoot> = {
7871

7972
export default Airship;
8073

81-
export {EventType, iOS, PermissionStatus};
74+
export {EventType, iOS};

__mocks__/react-native-onyx.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
/* eslint-disable rulesdir/prefer-onyx-connect-in-libs */
77
import type {ConnectOptions, OnyxKey} from 'react-native-onyx';
8+
// eslint-disable-next-line no-restricted-imports
89
import Onyx, {useOnyx, withOnyx} from 'react-native-onyx';
910

1011
let connectCallbackDelay = 0;

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009017402
118-
versionName "9.1.74-2"
117+
versionCode 1009017600
118+
versionName "9.1.76-0"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 30 additions & 0 deletions
Loading
Lines changed: 28 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 28 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)