Skip to content

Commit 037ff8f

Browse files
committed
Merge branch 'main' into revert-73877-revert-72677-follow-up-71057
2 parents b5a39d2 + 4892bca commit 037ff8f

91 files changed

Lines changed: 1233 additions & 421 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/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
key: ${{ runner.os }}-jest
4545

4646
- name: Jest tests
47-
run: NODE_OPTIONS="$NODE_OPTIONS --experimental-vm-modules" npm test -- --silent --shard=${{ fromJSON(matrix.chunk) }}/${{ strategy.job-total }} --max-workers ${{ steps.cpu-cores.outputs.count }} --coverage --coverageDirectory=coverage/shard-${{ matrix.chunk }}
47+
run: NODE_OPTIONS="$NODE_OPTIONS --experimental-vm-modules" npm test -- --silent --shard=${{ fromJSON(matrix.chunk) }}/${{ strategy.job-total }} --maxWorkers=4 --coverage --coverageDirectory=coverage/shard-${{ matrix.chunk }}
4848

4949
- name: Upload coverage to Codecov (PRs - tokenless)
5050
if: ${{ github.event_name == 'pull_request' }}

Mobile-Expensify

__mocks__/react-native-permissions.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ const request = jest.fn(() => RESULTS.GRANTED as string);
1313
const checkLocationAccuracy: jest.Mock<string> = jest.fn(() => 'full');
1414
const requestLocationAccuracy: jest.Mock<string> = jest.fn(() => 'full');
1515

16-
// eslint-disable-next-line unicorn/prefer-set-has
17-
const notificationOptions: string[] = ['alert', 'badge', 'sound', 'carPlay', 'criticalAlert', 'provisional'];
16+
const notificationOptions = new Set<string>(['alert', 'badge', 'sound', 'carPlay', 'criticalAlert', 'provisional']);
1817

1918
const notificationSettings: NotificationSettings = {
2019
alert: true,
@@ -35,7 +34,7 @@ const checkNotifications: jest.Mock<Notification> = jest.fn(() => ({
3534
const requestNotifications: jest.Mock<Notification> = jest.fn((options: Record<string, string>) => ({
3635
status: RESULTS.GRANTED,
3736
settings: Object.keys(options)
38-
.filter((option: string) => notificationOptions.includes(option))
37+
.filter((option: string) => notificationOptions.has(option))
3938
.reduce(
4039
(acc: NotificationSettings, option: string) => {
4140
acc[option] = true;

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 1009024801
118-
versionName "9.2.48-1"
117+
versionCode 1009025401
118+
versionName "9.2.54-1"
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"

docs/_data/_routes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ platforms:
106106

107107
- href: concierge-ai
108108
title: Concierge AI
109-
icon: /assets/images/lightbulb.svg
109+
icon: /assets/images/simple-illustration__concierge-bot.svg
110110
description: Learn about Concierge AI and what it can do.
111111

112112
- href: workspaces
Lines changed: 1 addition & 0 deletions
Loading

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.2.48</string>
26+
<string>9.2.54</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.2.48.1</string>
47+
<string>9.2.54.1</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.2.48</string>
14+
<string>9.2.54</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.2.48.1</string>
16+
<string>9.2.54.1</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3664,7 +3664,7 @@ PODS:
36643664
- SocketRocket
36653665
- Turf
36663666
- Yoga
3667-
- RNNitroSQLite (9.1.11):
3667+
- RNNitroSQLite (9.2.0):
36683668
- boost
36693669
- DoubleConversion
36703670
- fast_float
@@ -4810,7 +4810,7 @@ SPEC CHECKSUMS:
48104810
RNLiveMarkdown: 8cdadb9f25254c6a6603723c7ed02b18913b1464
48114811
RNLocalize: 0aa716b7d0f1316ca5f8f16ed42b79b9e3093279
48124812
rnmapbox-maps: 870cd752e1d132e05465f3074b582ce6c7e742e9
4813-
RNNitroSQLite: d5cf8c550c51015e1ecc93ff6e7509187c6c1c9e
4813+
RNNitroSQLite: ddd882f7bab0370f6045782284c34862636bc8a7
48144814
RNPermissions: d507f1fe0ee109c8f6f882808fcf8a173645e40b
48154815
RNReactNativeHapticFeedback: 43c09eb41d8321be2e1375cb87ae734e58f677b0
48164816
RNReanimated: 91d075aaf0c89d51a0708cd64cd6c77f7fa42cdc

ios/ShareViewController/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.2.48</string>
14+
<string>9.2.54</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.2.48.1</string>
16+
<string>9.2.54.1</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

0 commit comments

Comments
 (0)