Skip to content

Commit 3fb72ac

Browse files
committed
Merge branch 'main' into follow-up/86646
2 parents ece7c47 + 1dd01da commit 3fb72ac

246 files changed

Lines changed: 5659 additions & 2615 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.

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 1009036427
115-
versionName "9.3.64-27"
114+
versionCode 1009036506
115+
versionName "9.3.65-6"
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"

assets/images/bot.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

assets/images/table-pencil.svg

Lines changed: 1 addition & 0 deletions
Loading

config/eslint/eslint.seatbelt.tsv

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676
"../../src/components/ImportSpreadsheet.tsx" "react-hooks/refs" 1
7777
"../../src/components/InteractiveStepSubPageHeader.tsx" "no-restricted-syntax" 1
7878
"../../src/components/KYCWall/BaseKYCWall.tsx" "react-hooks/refs" 2
79-
"../../src/components/LHNOptionsList/OptionRowLHN.tsx" "react-hooks/preserve-manual-memoization" 1
8079
"../../src/components/LoadingIndicator.tsx" "@typescript-eslint/no-deprecated/StyleSheet.absoluteFillObject" 1
8180
"../../src/components/LocaleContextProvider.tsx" "react-hooks/set-state-in-effect" 1
8281
"../../src/components/Lottie/index.tsx" "react-hooks/set-state-in-effect" 1
@@ -347,7 +346,6 @@
347346
"../../src/pages/ReimbursementAccount/USD/BeneficialOwnerInfo/subSteps/BeneficialOwnerDetailsFormSubSteps/ConfirmationUBO.tsx" "no-restricted-syntax" 1
348347
"../../src/pages/ReimbursementAccount/USD/BusinessInfo/subSteps/IndustryCode/IndustryCodeSelector.tsx" "react-hooks/set-state-in-effect" 1
349348
"../../src/pages/ReportDescriptionPage.tsx" "no-restricted-syntax" 1
350-
"../../src/pages/ReportDetailsPage.tsx" "react-hooks/exhaustive-deps" 1
351349
"../../src/pages/ReportDetailsPage.tsx" "react-hooks/preserve-manual-memoization" 4
352350
"../../src/pages/ReportParticipantsPage.tsx" "react-hooks/set-state-in-effect" 1
353351
"../../src/pages/RoomMembersPage.tsx" "react-hooks/preserve-manual-memoization" 1

config/webpack/webpack.common.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {sentryWebpackPlugin} from '@sentry/webpack-plugin';
2+
import {execSync} from 'child_process';
23
import {CleanWebpackPlugin} from 'clean-webpack-plugin';
34
import CopyPlugin from 'copy-webpack-plugin';
45
import dotenv from 'dotenv';
@@ -29,6 +30,16 @@ const dirname = path.dirname(filename);
2930

3031
dotenv.config();
3132

33+
function getCurrentBranchName(): string {
34+
try {
35+
return execSync('git rev-parse --abbrev-ref HEAD', {encoding: 'utf-8'}).trim();
36+
} catch {
37+
return '';
38+
}
39+
}
40+
41+
const localBranchName = getCurrentBranchName();
42+
3243
type Options = {
3344
rel: string;
3445
as: string;
@@ -202,6 +213,9 @@ const getCommonConfiguration = ({file = '.env', platform = 'web'}: Environment):
202213
// react-native-render-html uses variable to log exclusively during development.
203214
// See https://reactnative.dev/docs/javascript-environment
204215
__DEV__: /staging|prod|adhoc/.test(file) === false,
216+
// Expose the current git branch so the debug menu can display it in the browser tab title.
217+
// Empty string in non-development builds.
218+
__GIT_BRANCH__: JSON.stringify(isDevelopment ? localBranchName : ''),
205219
}),
206220
...(isDevelopment ? [] : [new MiniCssExtractPlugin()]),
207221

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,7 @@
847847
"workshopping",
848848
"workspacename",
849849
"worktree",
850+
"worktrees",
850851
"writeitdown",
851852
"xcconfig",
852853
"xcodeproj",

ios/NewExpensify/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>9.3.64</string>
26+
<string>9.3.65</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleURLTypes</key>
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.3.64.27</string>
47+
<string>9.3.65.6</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

0 commit comments

Comments
 (0)