Skip to content

fix: correctly display offline created group members#60716

Merged
marcaaron merged 8 commits into
Expensify:mainfrom
callstack-internal:fix/regererate-report-attributes-on-personal-details-change
May 5, 2025
Merged

fix: correctly display offline created group members#60716
marcaaron merged 8 commits into
Expensify:mainfrom
callstack-internal:fix/regererate-report-attributes-on-personal-details-change

Conversation

@TMisiukiewicz

@TMisiukiewicz TMisiukiewicz commented Apr 23, 2025

Copy link
Copy Markdown
Contributor

Explanation of Change

Fixed Issues

$ #60602
PROPOSAL:

Tests

  1. Open the Expensify app.
  2. Turn off internet connection.
  3. Tap on FAB and select "Start Chat"
  4. Add to group one or more users that are not part of "Recents" or "Contacts" list.
  5. Finish the group creation flow.
  6. Once redirected to conversation, send a message, so the chat doesn´t disappear from LHN.
  7. Navigate to LHN.
  8. Turn on internet connection.
  9. Once connection is recovered, verify the group name shows names instead of emails
  10. Tap on the search icon on the top right corner.
  11. Verify the group name shows names instead of emails
  • Verify that no errors appear in the JS console

Offline tests

n/a

QA Steps

// TODO: These must be filled out, or the issue title must include "[No QA]."
Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
android.mov
Android: mWeb Chrome
iOS: Native
ios.mp4
iOS: mWeb Safari
ios-web.mp4
MacOS: Chrome / Safari
web.mov
MacOS: Desktop
desktop.mov

@TMisiukiewicz TMisiukiewicz force-pushed the fix/regererate-report-attributes-on-personal-details-change branch from f1d1950 to f2a3c4a Compare April 25, 2025 07:21
@TMisiukiewicz TMisiukiewicz force-pushed the fix/regererate-report-attributes-on-personal-details-change branch from f2a3c4a to 54a6c78 Compare April 25, 2025 07:23
@TMisiukiewicz TMisiukiewicz marked this pull request as ready for review April 25, 2025 07:52
@TMisiukiewicz TMisiukiewicz requested a review from a team as a code owner April 25, 2025 07:52
@melvin-bot melvin-bot Bot requested a review from fedirjh April 25, 2025 07:52
@melvin-bot

melvin-bot Bot commented Apr 25, 2025

Copy link
Copy Markdown

@fedirjh Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot Bot removed the request for review from a team April 25, 2025 07:52
@fedirjh

fedirjh commented May 1, 2025

Copy link
Copy Markdown
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: HybridApp
CleanShot.2025-05-05.at.13.42.05.mp4
Android: mWeb Chrome
CleanShot.2025-05-05.at.13.18.12.mp4
iOS: HybridApp
CleanShot.2025-05-05.at.13.07.59.mp4
iOS: mWeb Safari
CleanShot.2025-05-05.at.12.59.04.mp4
MacOS: Chrome / Safari
CleanShot.2025-05-05.at.12.51.27.mp4
MacOS: Desktop
CleanShot.2025-05-05.at.13.47.22.mp4

@fedirjh

fedirjh commented May 1, 2025

Copy link
Copy Markdown
Contributor

@TMisiukiewicz is it expected that the user is displayed as Hidden; it's a group with a user I haven't interaction with before :
Screenshot 2025-05-01 at 12 40 36 PM

@TMisiukiewicz

Copy link
Copy Markdown
Contributor Author

@fedirjh hmm I think it might happen, the user is probably not in your personal details list

@melvin-bot

melvin-bot Bot commented May 5, 2025

Copy link
Copy Markdown

We did not find an internal engineer to review this PR, trying to assign a random engineer to #60602 as well as to this PR... Please reach out for help on Slack if no one gets assigned!

@melvin-bot melvin-bot Bot requested a review from marcaaron May 5, 2025 13:07
@marcaaron marcaaron merged commit 700d44a into Expensify:main May 5, 2025
@OSBotify

OSBotify commented May 5, 2025

Copy link
Copy Markdown
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@github-actions github-actions Bot added the DeployBlockerCash This issue or pull request should block deployment label May 5, 2025
@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (1/11)

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Linking

Significant Changes To Duration

Name Duration
App start time contentAppeared_To_screenTTI 1001.043 ms → 1142.167 ms (+141.124 ms, +14.1%) 🔴
App start time TTI 1681.743 ms → 1825.867 ms (+144.124 ms, +8.6%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 1001.043 ms
Stdev: 230.124 ms (23.0%)
Runs: 539.2570639997721 602.5981479994953 611.3030839990824 621.7370490003377 626.9531410001218 628.1414700001478 638.8286850005388 652.4829999990761 656.4877170007676 657.7808289993554 659.2509240005165 676.941855000332 679.4366660006344 697.6927140001208 699.4418470002711 713.1373950000852 745.0389479994774 745.5094440001994 1037.0892520006746 1048.425591999665 1062.2579870000482 1063.208140000701 1064.383492000401 1068.8094280008227 1070.4312559999526 1089.9983799997717 1098.5479460004717 1117.8952300008386 1123.0525439996272 1123.777914000675 1125.3291120007634 1135.0072859991342 1136.5310430005193 1138.0983530003577 1142.3102950006723 1144.8478609994054 1146.149669000879 1147.1293919999152 1147.1687230002135 1149.596723999828 1152.9838280007243 1159.0964299999177 1162.0517839994282 1167.2934520002455 1167.576820999384 1171.8350579999387 1179.3578890003264 1183.821624999866 1186.3790680002421 1187.2226739991456 1194.5161470007151 1195.8361319992691 1197.4963969998062 1207.1882729995996 1207.7699510008097 1207.9514429997653 1213.7841340005398 1219.0273589994758 1226.1883630007505 1243.1121069993824

Current
Mean: 1142.167 ms
Stdev: 47.237 ms (4.1%)
Runs: 1037.8100370001048 1051.506737999618 1054.1522049997002 1060.5750949997455 1065.6453520003706 1071.0245030000806 1073.2633190006018 1074.549320999533 1092.790162999183 1103.0396899990737 1103.960088999942 1112.1446429993957 1114.7083749994636 1114.9256100002676 1116.9660739991814 1122.8665040004998 1125.7771959993988 1130.610643999651 1131.335782000795 1132.773586999625 1136.2060300000012 1143.1335300002247 1144.470747999847 1145.480011999607 1148.3756760004908 1148.6969520002604 1150.2612180002034 1151.905379999429 1152.644206000492 1155.153544999659 1159.022539999336 1161.9973089993 1164.0885649994016 1166.4170629996806 1167.0662210006267 1169.1273740008473 1170.6907519996166 1176.9685559999198 1180.4819050002843 1184.362486999482 1185.649410000071 1196.6803959999233 1196.7470030002296 1199.0239310003817 1199.7014910001308 1203.613871999085 1210.7705879993737 1211.2213439997286 1217.979524999857 1219.9684340003878
App start time TTI Baseline
Mean: 1681.743 ms
Stdev: 244.381 ms (14.5%)
Runs: 1119.257063999772 1204.9531410001218 1243.5981479994953 1279.4829999990761 1284.7808289993554 1298.7370490003377 1317.1414700001478 1321.4877170007676 1330.941855000332 1350.8286850005388 1370.6927140001208 1375.1373950000852 1382.3030839990824 1401.2509240005165 1421.5094440001994 1424.441847000271 1432.0389479994774 1434.4366660006344 1650.0892520006746 1661.425591999665 1665.8094280008227 1694.2579870000482 1694.4312559999526 1702.208140000701 1719.5479460004717 1732.9983799997717 1765.383492000401 1768.777914000675 1780.0525439996272 1780.149669000879 1785.0072859991342 1788.8952300008386 1803.0983530003577 1806.596723999828 1808.8478609994054 1811.3102950006723 1820.576820999384 1837.0517839994282 1848.5310430005193 1850.821624999866 1854.1293919999152 1854.8350579999387 1860.3291120007634 1860.8361319992691 1868.3578890003264 1886.5161470007151 1893.7841340005398 1896.0964299999177 1898.7699510008097 1898.9838280007243 1901.1882729995996 1908.1883630007505 1909.2934520002455 1915.4963969998062 1919.1687230002135 1919.3790680002421 1939.2226739991456 1980.9514429997653 1985.0273589994758 1985.1121069993824

Current
Mean: 1825.867 ms
Stdev: 85.203 ms (4.7%)
Runs: 1618.8100370001048 1658.5750949997455 1674.6453520003706 1689.549320999533 1691.2633190006018 1695.1522049997002 1708.960088999942 1713.0245030000806 1716.0396899990737 1729.905379999429 1740.9660739991814 1743.7771959993988 1753.9256100002676 1761.7083749994636 1761.8665040004998 1806.1446429993957 1809.773586999625 1816.480011999607 1830.3756760004908 1830.7705879993737 1833.0885649994016 1833.335782000795 1840.022539999336 1844.1273740008473 1844.4170629996806 1847.6969520002604 1848.790162999183 1858.506737999618 1862.6803959999233 1870.9685559999198 1871.2612180002034 1873.470747999847 1874.4819050002843 1877.9973089993 1879.2060300000012 1883.0662210006267 1883.2213439997286 1884.7014910001308 1885.613871999085 1888.644206000492 1899.9684340003878 1900.153544999659 1904.0239310003817 1917.649410000071 1919.1335300002247 1931.979524999857 1935.362486999482 1940.7470030002296 1946.610643999651 1960.6907519996166

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (10/11)

Meaningless Changes To Duration (9/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Report typing (CPU/UI) Baseline
Mean: 21.071 %
Stdev: 1.029 % (4.9%)
Runs: 19.1 19.1 19.2 19.5 19.7 19.7 19.9 19.9 20.1 20.2 20.2 20.2 20.4 20.4 20.5 20.5 20.6 20.7 20.7 20.7 20.7 20.7 20.7 20.8 20.8 20.8 20.8 20.9 20.9 21 21 21 21 21.1 21.1 21.1 21.1 21.2 21.3 21.4 21.4 21.5 21.5 21.6 21.7 21.8 21.9 21.9 21.9 21.9 22 22.1 22.2 22.4 22.6 23.4 23.4 23.6 23.7

Current
Mean: 21.124 %
Stdev: 1.199 % (5.7%)
Runs: 19.2 19.2 19.3 19.4 19.6 19.6 19.6 19.7 19.8 19.8 20 20 20 20.1 20.1 20.3 20.3 20.3 20.4 20.4 20.5 20.5 20.6 20.6 20.6 20.7 20.8 21 21 21 21 21.1 21.2 21.3 21.3 21.3 21.4 21.4 21.4 21.5 21.5 21.8 22 22 22 22.1 22.1 22.4 22.5 22.6 22.6 22.7 22.8 22.9 23 23.3 23.5 23.6 23.6
Chat opening Chat TTI Baseline
Mean: 751.576 ms
Stdev: 83.796 ms (11.1%)
Runs: 558.8445640001446 573.9080000016838 575.047079000622 596.3432620000094 596.4801030009985 607.5893150009215 610.4244379997253 610.825113998726 630.7453209999949 639.4267990011722 653.168904999271 653.5754389986396 664.0527349989861 685.9381920006126 705.9940189998597 715.468669001013 721.4334319997579 732.7617189995944 735.6187340002507 740.1583249997348 741.1186529994011 743.1437989994884 744.034424001351 750.8618979994208 759.6548669990152 769.5727949999273 769.8496089987457 773.0198569986969 777.1543780006468 780.344197999686 783.8458669986576 784.5618899986148 789.0540369991213 790.0710049998015 795.3728030007333 798.2017830014229 799.5535489991307 803.5869549997151 809.2749019991606 809.8710529990494 811.457438999787 812.8699140008539 815.9596770014614 818.9163819998503 818.957397999242 821.7154950015247 823.9154460001737 824.0209960006177 826.1464449986815 826.169352998957 831.2542319986969 831.2877200003713 834.6481529995799 834.8277179989964 837.6662600003183 841.3954260013998 844.6646740008146 851.6885180007666 855.4444180000573

Current
Mean: 749.797 ms
Stdev: 83.478 ms (11.1%)
Runs: 506.5056149996817 567.9606940001249 585.2514650002122 596.2687180005014 606.8398030009121 613.8213700000197 621.910198001191 643.7234300002456 647.5 662.5882160011679 664.7904470004141 675.7843019999564 676.3074139989913 683.0099700000137 684.0725500006229 691.9211839996278 692.0753579996526 694.906128000468 709.8493249993771 727.2804770004004 728.9866939987987 743.6715500000864 746.167887000367 747.8812260013074 756.3792730011046 757.7442220002413 759.6394050009549 766.530721001327 766.9705010000616 769.0917969997972 776.281739000231 777.7879230007529 781.090616999194 781.9761150013655 790.3798020016402 793.3109540008008 798.203083999455 799.1080330014229 800.4099129997194 800.5587569996715 809.1269530002028 809.4158530011773 812.3358969986439 814.0186369996518 814.3341889996082 814.4205729998648 819.566203000024 822.4914959985763 824.9649260006845 825.3149009998888 825.7271729987115 825.8400069996715 828.0548100005835 832.4471439998597 837.2829190008342 848.6551109999418 851.0592860002071 852.8355310000479 856.0375169999897 869.3488769996911
Chat opening (CPU) Baseline
Mean: 159.415 %
Stdev: 5.990 % (3.8%)
Runs: 149.11966983054026 149.66403382228955 150.67348567591267 150.79493356830693 150.97362411732945 151.7568011094418 152.04015876451416 152.72970254391345 153.00217744615975 153.01895076722062 153.52711627618035 153.52867176632185 153.65897481893893 153.80971127071768 154.1416759083022 155.0139720558883 155.0579159771908 155.57426669507714 155.78237027546894 155.99205024746064 156.07350907350633 156.1936984447615 156.21897666315027 156.38346933474796 156.4471332217218 156.45520797022957 157.94725624610996 158.16147553571548 158.50689951331233 158.62224396409871 159.21633931145016 159.40914496728263 159.61136400498643 160.34166356083608 160.93861457601858 161.58472640641253 161.78038592592674 161.98905638150325 162.22751789281043 162.44358739442472 162.67005906442316 162.85855876821677 163.415842783208 163.50615116166978 163.73086129880156 164.49900767222124 164.61324244399347 165.45325651301533 165.60918197965805 166.99823970885532 167.52688568967642 167.67929497165304 168.3286772385382 168.99410532006982 169.02893985841158 169.06767061524238 169.42311772512858 169.57966048098586 172.07680744401605

Current
Mean: 161.493 %
Stdev: 6.583 % (4.1%)
Runs: 147.4452202404396 148.5944149738968 149.19853263546315 151.97451317841012 152.63264839617383 154.14501037931487 154.52047895682554 155.30580941845395 155.65958560239775 156.03982077632014 156.04451046807105 156.07170360876782 156.21400777858028 156.55766323287048 156.62774212531122 156.71011289676133 156.8062019403567 157.22830648846352 157.35753842652167 158.05960086914502 158.50396027640716 159.0570682911755 159.17782501522456 159.2386813892012 159.35395098957727 159.4503960364796 159.69460293278755 160.29098073989525 160.6091966122852 160.61743862371011 160.7595111689034 161.64637864682032 161.66084315159713 161.7870576466753 162.4175196342602 162.4938621880994 162.93479477694254 163.2582949087526 163.36362551917833 163.6172114282938 164.09530513629554 164.11161316943284 164.72463231703398 164.7983034930128 164.93381864306642 165.39023936403092 166.37466654016845 166.45165295939242 166.4850952420403 166.9666223016709 167.45511921697266 168.220455928469 170.0451995784788 170.64574767515666 171.008954648873 171.4958188888985 173.49106724001814 175.27858409909075 175.70883272267355 178.77493182748069

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (11/11)

Meaningless Changes To Duration (10/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 401.137 MB
Stdev: 4.386 MB (1.1%)
Runs: 389.4716796875 391.3463541666667 391.5185546875 393.4013671875 393.51171875 395.265625 395.5966796875 396.2177734375 396.7359375 396.86953125 397.31484375 397.5265625 398.04296875 398.1640625 398.20703125 398.378125 398.5390625 399.43125 399.55234375 399.73828125 399.775 399.82890625 400.04921875 400.4984375 400.75546875 401.40625 401.427734375 401.43515625 401.49296875 401.51328125 401.59609375 401.7296875 402.646875 402.8734375 402.91328125 403.16953125 403.76953125 404.15546875 404.20703125 404.24375 404.246875 404.3125 404.3564453125 404.409375 404.45703125 404.6125 404.67109375 404.796875 404.93203125 405.025 405.23359375 405.48203125 405.521875 405.74375 406.95859375 408.109375 408.470703125 410.3076171875

Current
Mean: 400.983 MB
Stdev: 4.936 MB (1.2%)
Runs: 388.287109375 390.509765625 390.984375 393.07734375 393.326171875 393.6416015625 394.45625 395.5625 395.82421875 396.0595703125 396.390625 396.7265625 397.1203125 397.2 397.45078125 397.689453125 397.7470703125 398.190625 398.2875 398.5107421875 399.02734375 399.3017578125 399.603125 399.71328125 400.26640625 400.41875 400.4296875 400.64296875 400.875 401.0615234375 401.0953125 401.90390625 402.20703125 402.5771484375 402.64765625 402.9171875 402.96875 403.10234375 403.12421875 403.29765625 403.6220703125 403.81640625 403.86953125 404.028125 404.2666015625 404.48828125 405.1109375 405.4 405.68125 405.7796875 406.10234375 406.4515625 406.67109375 406.943359375 408.234375 408.26796875 408.2978515625 408.310546875 408.5171875 410.871875
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Chat opening (CPU/UI) Baseline
Mean: 33.311 %
Stdev: 2.233 % (6.7%)
Runs: 28.5 29.3 29.9 30 30.8 30.9 31 31.2 31.2 31.3 31.4 31.4 31.7 31.8 31.9 31.9 32 32.3 32.3 32.3 32.4 32.4 32.4 32.6 32.6 32.6 32.6 32.7 32.8 32.9 33.2 33.2 33.4 33.4 33.6 33.7 33.9 34 34 34.1 34.3 34.3 34.4 34.4 34.7 34.9 35.4 35.5 36.2 36.5 36.7 36.7 36.9 37.2 38 38.1 38.9

Current
Mean: 33.424 %
Stdev: 2.246 % (6.7%)
Runs: 28.7 28.9 29.9 30.2 30.3 30.4 30.9 31.1 31.2 31.2 31.5 31.6 32.3 32.3 32.4 32.4 32.4 32.4 32.5 32.6 32.7 32.7 32.7 32.7 32.7 32.8 32.8 33.2 33.2 33.2 33.4 33.5 33.6 33.9 34 34.1 34.2 34.4 34.5 34.5 34.6 34.7 35.3 35.4 35.4 35.4 35.5 35.9 36.5 36.7 36.9 37.3 37.5 37.8 39.4
Money request - Open Manual Tracking Baseline
Mean: 139.814 ms
Stdev: 11.654 ms (8.3%)
Runs: 115.10660799965262 120.606648998335 120.9261469990015 121.90380899980664 127.01648000068963 127.13041199930012 127.21960399858654 127.79357900097966 128.11425800062716 128.25712100043893 129.61718800105155 130.2473560012877 130.64042099937797 130.86718699894845 130.98925800062716 132.19156900048256 133.85335299931467 134.0027270000428 134.0791020002216 134.44482400082052 134.8109539989382 135.09301699884236 135.108927000314 135.33772799931467 136.23079399950802 137.0443110000342 137.33260099962354 137.7103679999709 138.47745699994266 138.6955979987979 138.76359100081027 139.00240099988878 139.20418299920857 140.22220899909735 141.02347799949348 142.61564199998975 142.62080899998546 142.80977400019765 143.30322300083935 143.6506350003183 145.1490480005741 146.01326500065625 148.03776000067592 149.22798600047827 149.36547800153494 149.91853800043464 151.36206099949777 151.378622001037 151.61885600164533 156.16076700016856 157.1263839993626 157.21390799991786 157.70463100075722 158.80094400048256 160.78365099988878 165.68721600063145 169.79573499970138

Current
Mean: 141.611 ms
Stdev: 12.092 ms (8.5%)
Runs: 121.16239400021732 121.49967500008643 122.42183499969542 123.49723299965262 124.29199299961329 124.81770799867809 125.57877600006759 128.90995300002396 129.08988500013947 129.15087899938226 130.0164390001446 130.27811699919403 130.34106400050223 131.8425699993968 131.8948969990015 132.32682299986482 133.06433099880815 133.74768099933863 134.03165700100362 134.7720949985087 137.27437300048769 137.4771320000291 137.70117199979722 138.13468500040472 138.26944999955595 138.3041179999709 138.41870100051165 138.5248210001737 138.52791400067508 138.98494500108063 139.39803100004792 139.89306600019336 142.24324600026011 143.3929850012064 144.54146299883723 145.17679899930954 145.25976499915123 145.81547000072896 146.80920399911702 147.26896099932492 147.27762899920344 147.66121400147676 147.8358559999615 147.86043300107121 149.1235750000924 150.01212499849498 150.46163000166416 150.6958410013467 150.7334799990058 152.9311529994011 153.0006510000676 153.97762100026011 155.48469999991357 157.01973400078714 157.46752899885178 158.4237879998982 163.21691900119185 165.92700200155377 167.73376500047743 175.6650799997151
Money request - Open Contacts Baseline
Mean: 229.056 ms
Stdev: 16.257 ms (7.1%)
Runs: 200.186767000705 200.89799000136554 202.94014499895275 209.61271100118756 211.2135010007769 212.41691100038588 212.5459799990058 212.64392100088298 212.83398500084877 214.7880859989673 215.01802599988878 215.75231899879873 215.91064499877393 216.0773119982332 217.60225399956107 218.21012400090694 218.2582600004971 218.7904059998691 219.24711100012064 219.61625199951231 220.3587239999324 221.44852699898183 221.5840249992907 221.98230000026524 222.86531499959528 223.71614599972963 225.05135099962354 225.2283120006323 226.11812400072813 230.44506900012493 230.6664230003953 231.92224099859595 231.9337570015341 232.20727599970996 232.27998900040984 232.30977400019765 232.53792399913073 233.03312199935317 233.5691329985857 237.22725399956107 239.2497559990734 239.6236569993198 240.68827299959958 242.62605800107121 247.19755099900067 249.48632800020278 250.16145800054073 250.75187199935317 251.63830600120127 253.3892410006374 253.70817100070417 256.75398799963295 258.7588299997151 265.5427649989724 267.453614000231

Current
Mean: 227.489 ms
Stdev: 14.386 ms (6.3%)
Runs: 199.18591300025582 204.874715000391 205.07844999991357 205.24613399989903 208.684488998726 209.093302000314 209.7814530003816 213.5997719988227 214.06526699848473 214.59204100072384 215.35799099877477 215.80448399856687 215.94278999976814 215.96533199958503 216.27746599912643 216.7982999999076 217.6171879991889 218.39168299920857 219.14811200089753 220.88167299889028 221.49918700009584 221.88814300112426 222.38728800043464 223.3986820001155 223.8853760007769 224.35351500101388 224.75793400034308 224.90332099981606 225.61560099944472 225.90201800130308 226.0248620007187 226.08854199945927 227.57527700066566 228.35856100171804 229.62040200084448 229.81127899885178 232.13720699958503 232.55635599978268 232.7141120005399 233.44608500041068 233.71240199916065 234.0847570002079 235.1193440016359 236.0483400002122 236.35807299986482 236.4059659987688 238.22965499944985 240.51700900122523 241.24434399977326 241.52486199885607 243.62312899902463 246.91719599999487 251.49890200048685 252.82885699905455 253.18253600038588 253.3552660010755 261.27901200018823 265.13745100051165
Money request (CPU) Baseline
Mean: 179.005 %
Stdev: 6.337 % (3.5%)
Runs: 164.77870554363628 168.33564553581232 168.5551836547186 168.7568078081076 169.20933053564062 169.28267958096728 170.77295831885922 170.84754480441282 171.2974869294301 171.984808037702 172.3384594439991 172.55799228110055 172.59287898232424 172.85925591446332 173.02493589940198 175.46183837774885 175.5139177563801 175.70369466187256 175.97878661531868 176.15344024572218 176.30159005027554 176.67781862081245 176.75351281581842 177.33744139351964 177.3863164055288 178.52594542021157 178.6269649777675 178.68864591089078 178.84413033866872 179.05588931734118 179.15145611013614 179.53649176886842 179.7158268448447 179.96453987025478 180.33563773487666 180.35929587300527 180.55985418406036 180.62831614859377 180.97822946404676 181.6831749907578 182.30150027729556 182.70575758531155 182.8659024429816 184.16396330029215 184.24923937007213 184.3924727286679 184.7358005736366 184.8890433194793 185.3636470814079 185.8032674827074 186.06225717002476 186.69271843740717 186.9528577652347 187.1113091649089 187.47386575849004 187.80014841222194 187.82304571046132 189.72113490182977 190.56844354597524 191.52506436320567

Current
Mean: 177.763 %
Stdev: 7.088 % (4.0%)
Runs: 165.89408155965538 166.25423004035778 167.19219849223296 167.9630607153795 168.01412145253775 168.45441940386894 168.52974424589033 168.76146250620596 169.17029748817944 169.93314256487417 170.88035174263885 170.93639970085556 171.4235578025527 171.46780630770462 172.06761424435487 172.114925232273 172.27204761412875 172.91355328409256 173.1982343572082 173.4499777487062 173.83453800012785 173.92478263279645 174.10677151075893 174.57483719318813 174.67710130228443 175.47562572355966 176.44840448235195 177.08516992262878 177.22666723667342 177.35034622248006 177.87828269924316 178.06636805933766 178.67223088191648 178.74966814737735 178.8095424692839 178.8475068178179 179.51500574210232 179.8537600139997 179.8909677175694 180.12704537554038 180.18607256898312 180.24452291633375 182.59764171092914 182.93818348976052 183.0558634211445 183.12096700103848 183.4298462791569 183.78432531606703 184.42265175411396 185.0187483512236 185.94114643762077 186.01144485852845 186.338920341399 187.79602502504684 188.83612476811308 189.39090896263096 190.86187263126263 191.63268495013273 191.64929242973832 192.52780248642188
Money request (FPS) Baseline
Mean: 58.991 FPS
Stdev: 0.792 FPS (1.3%)
Runs: 56.92692845230764 57.21618414508422 57.251598760338666 57.41398645277568 57.675193694597816 57.970688755350714 57.99386911267543 58.09523485925561 58.15971662646638 58.25579080406987 58.25767561126904 58.34770602993698 58.39647530296437 58.39871531171699 58.48719498195787 58.59978421854992 58.61721191048513 58.61853321384929 58.69148075273147 58.75130962056145 58.807233475704564 58.81633161849831 58.82045990316372 58.87982540996517 58.88075004239076 58.935504474362574 59.02462713856644 59.042833012316166 59.05356864115619 59.082769650290125 59.11909272255521 59.16353076926835 59.169226655922294 59.182914469594856 59.25964407287693 59.27540354312763 59.304191969348686 59.32826532573493 59.34051518013686 59.404588702224615 59.48695723972296 59.49435595503575 59.4997903415044 59.6590582198272 59.70081046626341 59.82715484443813 59.90582875346394 59.92307744791609 59.96461549479305 60 60 60 60 60 60 60 60 60

Current
Mean: 59.138 FPS
Stdev: 0.814 FPS (1.4%)
Runs: 56.995136852981524 57.56086011600324 57.74860025048861 57.80950098367794 57.812761156923806 57.876761235537764 57.99612644448177 58.0010158650282 58.084635260270474 58.09597127723179 58.288264725628935 58.390195269928185 58.428035950615346 58.4564153996777 58.47113520590136 58.483351615613515 58.60579756980504 58.641931382999296 58.711632185680806 58.7399950615622 58.76271130100889 58.84537746242399 59.02383932817162 59.05272812842561 59.12908600974736 59.1846446831971 59.258625605930995 59.275825676938574 59.34483009745444 59.36202100172038 59.40863122011525 59.42901920368528 59.44713995043795 59.47900970379563 59.50545411495124 59.64215589782212 59.66369992123706 59.69887239816285 59.70314829300411 59.79863697574227 59.874563958053 59.913089066451114 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 458.100 MB
Stdev: 10.056 MB (2.2%)
Runs: 440.05357142857144 440.068359375 441.39208984375 442.25341796875 442.9921875 443.2607421875 446.4330357142857 446.90457589285717 447.28515625 447.3916015625 447.4369419642857 448.78125 450.3052455357143 450.76674107142856 451.40966796875 451.50390625 451.63058035714283 451.73828125 451.994140625 451.99609375 452.41796875 452.57700892857144 453.82142857142856 454.31944444444446 455.34375 455.662109375 455.79296875 455.9111328125 456.25048828125 456.751953125 457.8046875 457.87548828125 458.13720703125 459.17578125 459.78515625 460.1138392857143 460.19252232142856 461.294921875 461.3208705357143 461.35379464285717 462.25167410714283 462.87220982142856 462.90478515625 463.6997767857143 463.7611607142857 464.50048828125 464.9033203125 467.95089285714283 469.4877232142857 470.02232142857144 471.4638671875 472.3353794642857 472.52232142857144 472.94754464285717 473.9075520833333 474.19810267857144 475.02622767857144 475.3130580357143 476.30747767857144 478.109375

Current
Mean: 468.496 MB
Stdev: 8.034 MB (1.7%)
Runs: 450.986328125 453.310546875 456.38783482142856 457.8212890625 457.9912109375 459.19873046875 460.66650390625 460.7650669642857 461.23325892857144 462.14676339285717 463.1674107142857 463.17410714285717 463.18582589285717 463.29129464285717 463.83761160714283 464.07979910714283 464.23486328125 464.2724609375 464.48325892857144 464.546875 464.62276785714283 465.16573660714283 465.36104910714283 465.3717447916667 465.490234375 465.5358072916667 465.80126953125 465.85693359375 465.9564732142857 466.09877232142856 467.06529017857144 467.8701171875 468.1953125 468.3935546875 468.4447544642857 468.5361328125 469.294921875 469.8560267857143 469.90771484375 470.02957589285717 470.2685546875 470.6595052083333 471.435546875 472.02734375 473.9732142857143 476.06752232142856 476.3955078125 478.06752232142856 478.6497395833333 478.96707589285717 481.0708705357143 481.31417410714283 481.41629464285717 481.5943080357143 482.65345982142856 485.11551339285717 485.60267857142856 485.8666294642857
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 43.872 %
Stdev: 2.097 % (4.8%)
Runs: 39.3 40.5 40.7 41.1 41.3 41.3 41.3 41.6 41.7 41.7 41.8 41.9 41.9 41.9 42 42 42.2 42.3 42.3 42.6 42.7 42.9 42.9 42.9 42.9 43 43 43.1 43.5 43.7 43.8 44 44.2 44.2 44.6 44.7 44.8 44.9 45.1 45.1 45.2 45.2 45.3 45.4 45.4 45.6 45.6 45.6 45.9 45.9 46.2 46.3 46.3 46.5 46.6 46.8 46.9 47.1 47.5 49.6

Current
Mean: 44.031 %
Stdev: 1.898 % (4.3%)
Runs: 41 41.4 41.5 41.6 41.7 41.7 41.8 41.9 42 42 42.1 42.2 42.2 42.2 42.3 42.4 42.4 42.6 42.6 42.6 42.6 42.7 42.8 43 43.1 43.2 43.4 43.5 43.6 43.8 43.8 43.9 44 44.4 44.5 44.7 44.8 44.9 44.9 45 45.1 45.1 45.4 45.6 45.7 46 46.2 46.2 46.2 46.4 46.5 46.6 46.6 47 47.1 47.1 47.1 47.2 47.9
Money request - Open Create Baseline
Mean: 135.729 ms
Stdev: 9.218 ms (6.8%)
Runs: 117.58939599990845 118.93570899963379 122.21118200011551 122.33142100088298 122.48417099937797 123.66190600022674 123.83129899948835 125.9718430005014 126.32006900012493 127.35139999911189 128.60078999958932 128.95239199884236 129.41162100061774 130.37316900119185 130.43985999934375 130.7077240012586 131.01692700013518 131.1822510007769 131.5256760008633 131.72619700059295 132.12894700095057 132.4635420013219 132.5802009999752 132.97322599962354 132.97334799915552 134.21842500008643 134.2880450002849 134.49247199855745 134.9759929999709 135.235392998904 135.32352799922228 135.46545399911702 135.6724850013852 135.81494100019336 136.13777700066566 136.17704300023615 136.73722399957478 136.81917300075293 137.13867200165987 137.3880610000342 137.52905300073326 138.2361249998212 140.74157700128853 140.74584900029004 141.16552800126374 141.5951339993626 142.374430000782 143.64355400018394 143.78238900005817 145.42801900021732 145.7334799990058 149.28682500123978 150.58691399917006 153.09541899897158 153.48201500065625 156.19063399918377 156.67614700086415 158.36368799954653

Current
Mean: 142.572 ms
Stdev: 10.005 ms (7.0%)
Runs: 119.1977540012449 120.16101099923253 120.95625800080597 128.14013700000942 128.48767099902034 128.84672000072896 129.1140129994601 131.18949399888515 132.16984000056982 134.73124200105667 135.41821300052106 135.7849929984659 136.47485399991274 137.1735030002892 138.27779199928045 138.9240320008248 139.39208999834955 139.5378820002079 139.7012939993292 139.70389799959958 139.96610599942505 140.56799400039017 140.59716800041497 140.6400559991598 140.72403999976814 140.84879499860108 141.35506200045347 142.16109200008214 142.49646000005305 142.5478920005262 143.18754100054502 143.64713499881327 144.3114829994738 144.64322899840772 144.9427889995277 145.2417399995029 146.0336920004338 147.03873699903488 147.20601399987936 147.60270199924707 147.7666020002216 148.32670100033283 148.58898900076747 148.79182899929583 149.15079799853265 149.69954399950802 150.87182600051165 151.40620899945498 152.57385200075805 154.2888179998845 154.97900399938226 155.47892200015485 160.1934810001403 163.23258499987423 164.64965800009668 164.8756100013852

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (2/11)

Meaningless Changes To Duration (1/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 24.000 ms
Stdev: 1.973 ms (8.2%)
Runs: 21 21 21 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 26 26 26 26 26 27 27 27 28 29 30

Current
Mean: 25.298 ms
Stdev: 3.239 ms (12.8%)
Runs: 21 21 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 26 26 26 26 26 27 28 28 28 29 29 30 30 30 30 32 32 34 35
App start time appCreation Baseline
Mean: 69.881 ms
Stdev: 10.704 ms (15.3%)
Runs: 50 52 55 55 56 57 57 57 58 58 58 58 59 60 61 62 63 63 63 64 64 65 65 66 66 66 66 67 67 68 70 71 71 72 73 73 73 74 75 75 76 77 77 78 78 78 80 81 81 82 82 82 85 86 87 88 88 91 93

Current
Mean: 71.617 ms
Stdev: 9.659 ms (13.5%)
Runs: 53 53 57 58 58 58 58 58 59 59 60 62 62 64 64 67 67 67 68 68 68 69 69 69 69 69 69 70 71 71 72 73 73 73 73 73 74 74 75 75 76 76 76 77 77 79 80 81 81 82 82 82 83 84 85 86 88 89 90 94
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 79.305 ms
Stdev: 9.245 ms (11.7%)
Runs: 62 62 62 65 66 67 69 69 70 70 70 71 71 71 72 74 75 75 75 76 76 76 76 76 77 77 77 77 79 79 80 80 80 80 81 81 82 82 82 82 83 84 84 85 85 86 86 87 87 88 90 90 91 92 95 96 97 98 103

Current
Mean: 80.814 ms
Stdev: 8.898 ms (11.0%)
Runs: 65 67 68 68 70 70 70 71 72 73 73 74 74 74 75 76 76 76 77 77 77 77 77 77 78 78 78 78 78 79 79 79 80 81 81 81 82 82 82 82 82 84 85 85 85 86 89 89 90 91 91 92 92 94 96 97 102 102 104

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (3/11)

Meaningless Changes To Duration (2/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
App start time runJsBundle Baseline
Mean: 318.133 ms
Stdev: 24.068 ms (7.6%)
Runs: 266 266 275 275 278 278 280 280 281 281 283 283 284 284 289 289 289 289 292 292 294 294 294 294 297 297 299 299 302 302 303 303 305 305 306 306 307 307 307 307 308 308 308 308 309 309 309 309 312 312 315 315 315 315 316 316 317 317 318 318 320 320 320 320 321 321 322 322 322 322 323 323 325 325 327 327 328 328 329 329 330 330 330 330 332 332 332 332 334 334 334 334 335 335 336 336 337 337 340 340 343 343 346 346 347 347 353 353 355 355 357 357 358 358 358 358 368 368 368 368

Current
Mean: 319.017 ms
Stdev: 22.002 ms (6.9%)
Runs: 272 272 274 274 277 277 280 280 281 281 284 284 288 288 292 292 295 295 296 296 298 298 298 298 300 300 304 304 304 304 304 304 305 305 308 308 309 309 311 311 312 312 313 313 314 314 315 315 316 316 317 317 317 317 318 318 318 318 318 318 319 319 319 319 319 319 321 321 325 325 326 326 327 327 327 327 327 327 329 329 329 329 330 330 335 335 335 335 337 337 338 338 339 339 339 339 341 341 342 342 343 343 343 343 343 343 343 343 351 351 353 353 353 353 355 355 356 356 359 359
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 505.500 ms
Stdev: 41.076 ms (8.1%)
Runs: 423 427 442 448 451 452 456 468 469 471 471 473 474 476 477 477 482 483 486 487 487 488 490 491 491 492 492 492 492 492 492 493 493 500 500 505 509 517 518 518 521 522 525 528 529 530 535 543 550 557 561 566 567 569 569 570 585 586 586 586

Current
Mean: 503.033 ms
Stdev: 49.339 ms (9.8%)
Runs: 411 426 432 433 438 440 442 446 451 458 458 464 464 469 472 473 474 479 479 482 485 485 486 488 489 490 491 495 495 496 497 497 500 501 502 503 505 507 509 510 510 511 512 513 525 537 540 543 543 547 550 557 563 567 574 584 599 623 627 635
App start time regularAppStart Baseline
Mean: 0.020 ms
Stdev: 0.002 ms (8.4%)
Runs: 0.0157880000770092 0.016112999990582466 0.0167239997535944 0.01684499904513359 0.017496999353170395 0.017578000202775 0.017659001052379608 0.017782000824809074 0.01782200112938881 0.01782200112938881 0.017823001369833946 0.017904000356793404 0.01794399879872799 0.01794400066137314 0.018066000193357468 0.018187999725341797 0.01822900027036667 0.018474001437425613 0.01855499856173992 0.018757998943328857 0.018758000805974007 0.0188400000333786 0.019164999946951866 0.019286999478936195 0.019328000023961067 0.019368000328540802 0.019491000100970268 0.019571999087929726 0.019694000482559204 0.019816000014543533 0.019857000559568405 0.019897999241948128 0.019979000091552734 0.02006000094115734 0.02006000094115734 0.020142000168561935 0.020222999155521393 0.020263999700546265 0.020344998687505722 0.020384998992085457 0.020385999232530594 0.020508000627160072 0.020508000627160072 0.02058899961411953 0.020913999527692795 0.021118000149726868 0.02115899883210659 0.02132199890911579 0.02132200077176094 0.021362999454140663 0.021443000063300133 0.0215659998357296 0.02168699912726879 0.022012999281287193 0.02221600152552128 0.02282699942588806 0.02294899895787239

Current
Mean: 0.020 ms
Stdev: 0.002 ms (10.5%)
Runs: 0.01615399867296219 0.016234999522566795 0.01660200022161007 0.016927000135183334 0.0172520000487566 0.017374999821186066 0.0174150001257658 0.0174150001257658 0.017497001215815544 0.01769999973475933 0.01810699887573719 0.018230000510811806 0.018310001119971275 0.01839200034737587 0.018636001273989677 0.0186769999563694 0.018718000501394272 0.018880000337958336 0.019001999869942665 0.01920599862933159 0.019286999478936195 0.019328000023961067 0.019449999555945396 0.019450001418590546 0.01948999986052513 0.019491000100970268 0.019572000950574875 0.019612999632954597 0.019652999937534332 0.019734999164938927 0.019937999546527863 0.020223001018166542 0.020263999700546265 0.020263999700546265 0.02034500055015087 0.020507998764514923 0.0206300001591444 0.020833000540733337 0.020834000781178474 0.021076999604701996 0.021076999604701996 0.021118000149726868 0.02120000123977661 0.021443000063300133 0.02144400030374527 0.02148500084877014 0.021727999672293663 0.02250100113451481 0.02266399934887886 0.023438001051545143 0.023559998720884323 0.023680999875068665 0.023843999952077866 0.02408899925649166 0.025227999314665794

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (4/11)

Meaningless Changes To Duration (3/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
App start time (CPU) Baseline
Mean: 147.133 %
Stdev: 6.407 % (4.4%)
Runs: 134.8369669152802 135.49851580233982 137.1476933450894 137.753394530503 138.50996015936255 138.79273278587303 140.03000418385028 140.0650423415243 140.3786002492219 140.73421697008413 140.73705179282874 141.17025872413956 142.91531269710737 143.03922585279844 143.41078397340823 143.55179621111415 143.64690083961844 143.78140292302916 144.29586724443678 144.3779108449767 144.42332040367404 144.49266883808198 144.57836967493762 144.79852515554998 145.65111014485782 145.65494625614866 145.6762731812832 145.87622068563195 145.92160783804766 146.20437710041605 146.5403184426676 146.6255336413607 147.2856626334642 147.3935817143172 147.8825817243243 148.30366216608593 148.56079655206088 148.9211276714584 149.31867945022302 150.0883243439878 150.34059209953065 150.37307939394074 150.8175559380379 150.90739247419145 150.94554786139932 151.01109850000265 151.06292428300827 151.4857802995121 151.9108449767132 154.26576565744017 155.55954392340627 156.46501517621638 158.3380650309783 158.9899494333487 159.0396282533747 160.42826049586554 160.75412762159758 162.16682548459085

Current
Mean: 149.709 %
Stdev: 7.510 % (5.0%)
Runs: 135.9898300325873 136.44237574625603 137.4520553446995 137.70896984251942 139.17078108409933 139.42905256405106 139.86369624097352 140.31745780298294 140.65995533739013 141.4491510006536 141.85641528252 142.61829025844932 142.7540058343008 142.95205654152167 143.02139891408495 143.13618995893245 143.79773785761807 144.72249314306092 144.78757085111658 145.59894424677728 145.94355776626293 146.42319139190408 146.50108799638383 146.50385028646735 147.86175930389606 148.5371768565186 148.98565959583277 149.1127567508932 149.56777996070733 149.64125987209758 149.64439163585072 149.78296273097402 150.18708827404475 150.48031869044937 150.68155786889537 152.51710694037757 152.5343818082789 152.93208548353311 153.3470371021161 153.645444014131 153.70000139995994 153.76095617529884 154.00831202494408 154.69387608326676 154.9688999612838 155.5251703589881 156.00347123607568 156.65468727021872 156.95960306699385 157.83532536520573 157.93425630215472 158.3399356853241 158.47849314372021 159.3290405208903 160.12872239153083 161.24369321917106 162.71958893458063 163.7018726513412 163.87238776257968 164.14102488093133
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 378.127 MB
Stdev: 7.642 MB (2.0%)
Runs: 358.392578125 358.90625 360.794921875 364.892578125 367.3268229166667 367.7799479166667 367.890625 370.408203125 370.54296875 370.568359375 370.8854166666667 371.150390625 371.1940104166667 371.2018229166667 372.7552083333333 373.9322916666667 374.2057291666667 374.9635416666667 376 376.4596354166667 376.51171875 376.5416666666667 376.8932291666667 378.0234375 378.2513020833333 378.4375 379.0169270833333 379.2044270833333 379.2838541666667 379.296875 379.7044270833333 379.806640625 380.2552083333333 380.8333333333333 381.0768229166667 381.3411458333333 381.6731770833333 381.6796875 381.8984375 382.453125 382.93359375 383.1497395833333 383.4296875 383.6197916666667 383.94921875 384.01171875 384.5651041666667 384.6302083333333 384.7018229166667 385.984375 386.0924479166667 386.4153645833333 386.7708333333333 386.9778645833333 387.9231770833333 389.1966145833333 392.0520833333333 392.5143229166667

Current
Mean: 378.197 MB
Stdev: 7.921 MB (2.1%)
Runs: 357.59765625 363.8333333333333 364.6966145833333 365.58203125 366.5390625 367.68359375 367.7578125 368.5611979166667 368.583984375 369.8515625 369.875 369.8815104166667 370.328125 370.6080729166667 371.0807291666667 372.46875 372.8072916666667 373.3216145833333 374.7213541666667 375.4752604166667 376.9244791666667 376.9947916666667 377.03125 377.4205729166667 377.54296875 377.673828125 377.6966145833333 378.27734375 378.7903645833333 378.8229166666667 378.98828125 379.10546875 379.4401041666667 379.5299479166667 379.8854166666667 380.0247395833333 380.3815104166667 380.6158854166667 380.8919270833333 381.546875 381.69140625 381.8932291666667 382.7877604166667 383.40625 384.3958333333333 384.41015625 384.69140625 384.9036458333333 384.9140625 385.1458333333333 385.2526041666667 385.70703125 386.5104166666667 386.9114583333333 387.5364583333333 389.73828125 391.6315104166667 392.2122395833333 393.6822916666667 395.56640625

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (5/11)

Meaningless Changes To Duration (4/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
App start time (CPU/UI) Baseline
Mean: 25.747 %
Stdev: 2.181 % (8.5%)
Runs: 20.1 22 22.1 23.3 23.3 23.3 23.4 23.4 23.8 23.9 24 24.1 24.1 24.1 24.5 24.5 24.6 24.6 24.6 24.6 24.7 24.7 24.8 25.1 25.1 25.1 25.1 25.2 25.3 25.3 25.3 25.5 26 26 26 26 26.5 26.6 26.6 26.7 26.8 27 27.2 27.3 27.3 27.4 28 28.4 28.6 28.7 28.9 29 29 29 29.9 30.6 30.6

Current
Mean: 26.247 %
Stdev: 2.212 % (8.4%)
Runs: 23.2 23.2 23.2 23.3 23.3 23.3 23.4 23.4 23.9 24 24 24 24 24 24.1 24.2 24.5 24.5 24.6 24.6 25.3 25.3 25.4 25.4 25.9 26 26 26 26 26 26.1 26.1 26.5 26.6 26.7 26.7 26.7 26.8 27 27.1 27.2 27.3 27.4 27.5 27.5 27.7 27.7 28.1 28.3 29.2 29.2 29.3 29.3 29.7 29.9 30.4 30.6 30.6 31.4
Open search router TTI Load Search Options Baseline
Mean: 141.662 ms
Stdev: 5.826 ms (4.1%)
Runs: 127.69262699969113 128.36413599923253 129.03177899867296 131.59232600033283 132.30126999877393 132.30269400030375 132.3135980013758 132.95300299860537 133.14420599862933 133.78739400021732 134.44478400051594 137.73506600037217 137.85123700089753 139.54105599969625 139.76440500095487 140.11828599870205 140.14628100022674 140.43290200084448 140.59769700095057 141.00219800136983 141.3883459996432 141.54854400083423 142.0852049998939 142.1864829994738 142.24780300073326 142.26765900105238 142.29573599994183 142.4698489997536 142.55908299982548 142.76375299878418 142.82592800073326 142.90864999964833 143.04117900133133 143.05192100070417 143.34016899950802 143.37813400104642 143.41853800043464 143.97286000102758 144.04992699995637 144.09261099994183 144.78653999976814 146.02189199998975 146.14656599983573 146.5712080001831 147.01704899966717 147.10669000074267 147.13313799910247 147.34745300002396 147.59773799963295 148.05619299970567 148.1502680014819 148.79850200004876 149.11523400060833 149.65637199953198 149.83756499923766 150.00732499919832 150.35628299973905

Current
Mean: 140.316 ms
Stdev: 7.689 ms (5.5%)
Runs: 123.77669299952686 124.09505200013518 125.94901499897242 126.46219899877906 127.80432200059295 128.1944169998169 128.65665699914098 128.73982799984515 129.11112399958074 131.5789390001446 132.10497999936342 132.8298749998212 133.1474200002849 134.70341000147164 135.1894940007478 135.23087599873543 135.8463139999658 136.64571199938655 137.20109100081027 137.72550499998033 138.2583820000291 138.33544900082052 138.37146000005305 138.47965499944985 140.07743399962783 140.18159999884665 140.3082280009985 140.78474899940193 141.2911369986832 141.37162300013006 141.8177079986781 141.92635099962354 142.30481000058353 142.52636800147593 142.6265469994396 143.0536700002849 143.46276799961925 143.99418099969625 144.34578499943018 144.81750500015914 145.0728760007769 145.14322899840772 145.4705410003662 145.7582600004971 145.77636700123549 146.15714499913156 146.67236299999058 146.97505700029433 147.21704100072384 147.57694500125945 147.98950199969113 148.21114100143313 148.28255200013518 148.9394120015204 148.9837239999324 149.35705599933863 150.35701500065625 152.67012600041926 154.28108800016344 154.75821899995208

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (6/11)

Meaningless Changes To Duration (5/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 1244.633 ms
Stdev: 92.359 ms (7.4%)
Runs: 987.0019129998982 993.6461180001497 1004.688069999218 1009.148398000747 1009.9475510008633 1021.1022549998015 1040.1020919997245 1054.7931319996715 1056.3351640012115 1059.2133390009403 1060.211833000183 1062.351197000593 1062.856039000675 1064.3341889996082 1065.9793710000813 1076.3208830002695 1078.350951999426 1079.7050780002028 1080.9897869993001 1083.0979410000145 1083.5173749998212 1087.803833000362 1096.4757899995893 1100.7717700004578 1101.0047609992325 1101.022828001529 1101.4271249994636 1101.5650229994208 1103.7816570010036 1106.133016999811 1106.8610849995166 1107.8508309982717 1108.7042239997536 1108.9635419994593 1109.9353439994156 1110.3774420004338 1110.4271649997681 1111.149333998561 1112.5705570001155 1112.726319000125 1113.914958000183 1114.503744000569 1114.7672940008342 1115.6032720003277 1117.0850019995123 1118.160157000646 1122.760539000854 1122.7709969989955 1123.1960860006511 1123.48514899984 1123.5307630002499 1124.5487879998982 1124.6416020002216 1124.6741949990392 1124.788534000516 1125.1260579992086 1125.412923000753 1126.5231539998204 1126.6245120000094 1128.6456709988415 1129.0577389989048 1131.3206379991025 1133.8465580008924 1135.2188319992274 1137.1026210002601 1137.36352599971 1137.5620529986918 1138.5546880010515 1139.022867999971 1139.3966070003808 1139.6159669999033 1140.4563810005784 1143.4154870007187 1147.2996419984847 1148.109985999763 1148.1121420003474 1148.4630950000137 1149.2340910006315 1149.304159000516 1150.3334560003132 1150.9279380012304 1152.137452000752 1154.6748869996518 1155.0421149991453 1155.316122001037 1156.945232000202 1158.5291760005057 1159.434244999662 1159.9156090002507 1161.7720950003713 1161.980104001239 1162.8848069999367 1163.0117999985814 1163.1619879994541 1166.8125 1169.9254160001874 1171.2525639999658 1171.8700360003859 1172.9620360005647 1174.825113998726 1176.089397000149 1177.4385180007666 1177.4385180007666 1178.5590020008385 1186.0893559996039 1187.297933999449 1187.3664970006794 1189.981078999117 1190.805989999324 1190.8077390007675 1191.5253500007093 1193.3421229999512 1194.6117770001292 1196.2539479993284 1197.0755629986525 1197.6072599999607 1197.6072599999607 1198.6503500007093 1200.9766449984163 1201.813232999295 1202.0959479995072 1202.839560000226 1204.5766599997878 1205.9999599996954 1206.714844001457 1207.4683839995414 1208.3813070002943 1208.8139649983495 1209.3871269989759 1211.0133880004287 1211.6939300000668 1213.3440350014716 1213.410481998697 1213.4586599990726 1213.683879001066 1214.1398520004004 1214.3040779996663 1216.4753829985857 1218.1405039988458 1218.273804999888 1218.7510180007666 1219.2917080000043 1220.6230880003422 1220.629272999242 1221.3394379988313 1221.4390060007572 1221.4390060007572 1222.0773119982332 1222.335083000362 1222.4223230015486 1226.4211439993232 1226.7002770006657 1226.866089001298 1228.0089530013502 1228.4512530006468 1228.8082280009985 1229.1399339996278 1229.2534589990973 1230.1158039998263 1231.449626000598 1232.414266999811 1234.5079350005835 1234.5686449985951 1235.4288750011474 1236.1512049995363 1236.2298990003765 1237.5207529999316 1238.0898029990494 1238.1153570003808 1238.9022630006075 1239.3304450009018 1239.5338950008154 1240.0017089992762 1240.0614019986242 1240.5174160003662 1241.1460370011628 1241.7954110000283 1242.4018149990588 1242.4530849996954 1242.8544120006263 1243.284668000415 1245.2432050015777 1246.090129999444 1246.090129999444 1247.366496000439 1247.366496000439 1247.910237999633 1248.2509770002216 1248.409994000569 1248.4462899994105 1248.520101999864 1248.8351250011474 1249.2179370000958 1249.719197999686 1250.507284000516 1250.672038000077 1250.7796640004963 1251.2133389990777 1251.3862719982862 1252.1710210014135 1252.8415530007333 1253.0493979994208 1253.0638840012252 1253.6818850003183 1254.93481499888 1255.2824709992856 1255.293213000521 1256.2840589992702 1256.288290001452 1256.8679210003465 1257.0571699999273 1257.5808119997382 1258.0339770000428 1258.3449709992856 1259.2003180012107 1259.293619999662 1259.4794929996133 1261.3118089996278 1261.8184820003808 1262.1488039996475 1262.1488039996475 1262.5463459994644 1263.1736249998212 1263.84790099971 1263.8979490008205 1265.1596280001104 1265.2261159997433 1266.8424899987876 1267.3158780001104 1267.8685299996287 1268.003539999947 1268.003539999947 1268.1824549995363 1268.5059409998357 1268.9433190003037 1268.991822000593 1269.5583909992129 1270.1655689999461 1270.891155000776 1271.285807998851 1271.7495530005544 1272.272867999971 1272.2832039985806 1272.8197440002114 1273.1601170003414 1273.5326749999076 1273.7220060005784 1273.7610679995269 1273.875204000622 1275.3978690002114 1275.5100919995457 1275.953531999141 1276.7922779992223 1276.9158130008727 1277.0847580004483 1277.5691339988261 1277.696166999638 1277.696166999638 1278.2053640000522 1278.609375 1279.0220539998263 1280.7457280009985 1280.8814300000668 1281.070149999112 1281.1373709999025 1282.094482999295 1282.250204000622 1282.9161379989237 1283.082071999088 1283.5110279992223 1283.5655519999564 1284.2054450009018 1285.2175699993968 1285.4418540000916 1286.4274500012398 1286.4274500012398 1286.597576001659 1287.1621099989861 1287.6145019996911 1287.7519540004432 1288.024902999401 1288.024902999401 1289.0655930005014 1289.1824139989913 1289.4011240005493 1289.538656000048 1292.8749599996954 1293.2551269996911 1293.7843430005014 1294.2179370000958 1295.160563999787 1295.4677329994738 1295.792563000694 1296.7811689991504 1297.164429999888 1297.180704999715 1297.4832359999418 1298.3541269991547 1298.3874920010567 1299.000367000699 1299.2862139996141 1299.2862139996141 1299.4964610002935 1300.8099370002747 1303.8795170001686 1303.9372160006315 1304.791301999241 1305.200154999271 1305.774211999029 1305.860514998436 1306.1680919993669 1306.2958180010319 1306.9620370008051 1307.3067629989237 1307.3128669988364 1308.7693290002644 1308.8517260011286 1311.6360679995269 1313.310099998489 1313.7834480013698 1314.74198500067 1315.4521490000188 1315.6468509994447 1315.687419001013 1315.8307699989527 1315.928833000362 1316.1273200009018 1316.352986998856 1320.133260998875 1320.1756599992514 1320.4894619993865 1321.1033130008727 1322.425862999633 1323.0439860001206 1323.7278250008821 1324.6607670001686 1325.3549810014665 1325.4441739991307 1329.6109219994396 1329.8080659992993 1330.8268240001053 1331.6726080011576 1331.9584969989955 1332.0022379998118 1333.091268999502 1334.1872160006315 1336.7291669994593 1337.5994069986045 1337.9685880001634 1339.0504969991744 1339.2987059988081 1339.2987059988081 1340.2787679992616 1340.9990650005639 1341.3657229989767 1341.48514899984 1343.582154000178 1344.1414390001446 1344.84720900096 1347.820353999734 1347.8688559997827 1348.1189380008727 1351.0974129997194 1352.4337569996715 1352.4362389985472 1352.797120001167 1352.9437669999897 1354.1494559999555 1354.699504999444 1355.6027020011097 1355.6756599992514 1356.5571289993823 1357.855469999835 1359.191813999787 1361.289958000183 1361.788127001375 1362.0841479990631 1362.1490080002695 1362.738932998851 1364.8540049996227 1366.2860110010952 1367.4090579990298 1368.6112479995936 1372.2325039990246 1372.5019129998982 1372.712198998779 1373.691855000332 1374.7474370002747 1376.359905000776 1376.359905000776 1378.8782970011234 1379.966960998252 1381.6723230015486 1383.5393070001155 1385.2172049991786 1388.7980150002986 1388.7980150002986 1389.080038998276 1391.0187579989433 1397.8747979998589 1399.680054999888 1401.9706219993532 1406.8538819998503 1412.2256279997528 1414.4401449989527 1422.4275719989091 1428.3259700015187 1436.338990001008 1441.4010430015624 1450.4390070009977 1476.367554999888 1485.6638200003654 1499.3569750003517

Current
Mean: 1257.336 ms
Stdev: 109.965 ms (8.7%)
Runs: 980.6785480007529 983.0927740000188 984.3728440012783 984.5620939992368 988.4930419996381 994.7324219997972 996.8819989990443 1031.940796000883 1032.2786060012877 1043.1545010004193 1044.7437349986285 1046.5046389997005 1050.9732259996235 1058.8494070004672 1066.2252609990537 1070.0153000000864 1071.832601999864 1076.320395000279 1076.7052410002798 1078.102132000029 1081.7021490000188 1086.0213629994541 1087.3817149996758 1091.4451500009745 1092.7441819999367 1092.7941079996526 1093.336304999888 1094.0800790004432 1095.820232000202 1095.8600679989904 1097.0367030017078 1097.481039000675 1099.6940919999033 1102.9510909989476 1103.1257729995996 1104.5649819988757 1104.9855150002986 1106.1261400002986 1107.003539999947 1110.9528809990734 1111.0462650004774 1111.2592370007187 1111.6770839989185 1113.725912000984 1114.4061699993908 1114.4061699993908 1115.679322000593 1116.059733999893 1116.2181809991598 1117.0713710002601 1117.9993089996278 1122.19511000067 1124.0949299987406 1124.3875730000436 1125.1267909985036 1125.581949999556 1125.7838950008154 1127.164429999888 1128.1571050006896 1134.2304689995944 1134.3276780005544 1135.82348700054 1135.8624680005014 1138.3691410012543 1143.2019450012594 1143.4149990007281 1143.9442149996758 1144.3366710003465 1147.0336100012064 1147.3942059986293 1148.6912849992514 1151.2881680000573 1152.7079680003226 1153.085857000202 1153.085857000202 1153.5979010015726 1160.0867520011961 1160.1454680003226 1160.6285410001874 1161.897787000984 1162.2302249986678 1162.2302249986678 1163.902060000226 1164.8123380001634 1167.0843509994447 1167.5380049999803 1169.6416829992086 1170.7428799998015 1172.8336189985275 1173.978882001713 1176.7054859995842 1176.9560960009694 1177.7272540014237 1180.7239179983735 1180.93286200054 1182.8698330000043 1184.844117000699 1185.2490650005639 1185.3100589998066 1185.712117999792 1185.8018399998546 1192.5398360006511 1193.8182779997587 1194.2392180003226 1194.265259001404 1195.0996499992907 1196.8967289999127 1199.941487999633 1201.1349289994687 1201.3928229995072 1201.6338300015777 1203.1336270011961 1203.4478759989142 1203.538492999971 1203.8801680002362 1208.1794849988073 1209.5984300002456 1210.1346440017223 1210.374836999923 1210.4812420010567 1210.5515950005502 1210.5515950005502 1210.8493249993771 1210.8611660003662 1211.5934659987688 1212.044230999425 1212.7901210002601 1214.403279999271 1215.069784000516 1215.853841001168 1217.0014649983495 1217.1004239991307 1218.5537519995123 1219.9337159991264 1220.6892910003662 1221.1040049996227 1221.820190999657 1222.0894370004535 1222.75415099971 1222.9692790005356 1223.789062999189 1224.882284000516 1226.6033939998597 1228.1713049989194 1228.320232000202 1228.320232000202 1229.856852998957 1230.66040099971 1231.5229490008205 1231.9309090003371 1233.1741949990392 1233.4183360002935 1233.4416109994054 1233.4416109994054 1233.5615650005639 1234.0431319996715 1234.2451169993728 1235.0742599982768 1235.1613779999316 1235.253987999633 1235.7256680000573 1237.3619389999658 1237.9016529992223 1238.6712250001729 1242.278362000361 1242.9701739996672 1243.099568998441 1244.6125489994884 1245.6249189991504 1245.6278900001198 1246.34790099971 1246.34790099971 1246.6314300000668 1247.4568290002644 1248.0338150002062 1249.356608999893 1249.3875739984214 1250.551106998697 1251.0498049985617 1251.1317549999803 1251.6380620002747 1251.7591970004141 1255.462850999087 1255.6913259997964 1256.1409520003945 1256.2341729998589 1257.2527270000428 1257.4889320004731 1257.5427659992129 1258.1642659995705 1259.4561769999564 1259.4561769999564 1259.515788000077 1259.8199869990349 1260.351197000593 1260.398113001138 1260.8153889998794 1261.601034000516 1261.6969820000231 1262.352701999247 1262.4274909999222 1262.7971600014716 1262.8423669990152 1265.3724780008197 1265.6676439996809 1265.7128919996321 1266.4010009989142 1267.2836920004338 1267.387369999662 1267.524780999869 1267.8664560001343 1269.5229100007564 1270.016155000776 1270.6788340006024 1270.913492999971 1272.4586180001497 1272.6180010009557 1274.4717619996518 1276.2012529987842 1276.4107259996235 1276.6818860005587 1276.6818860005587 1276.9210620000958 1277.6525480002165 1278.1423749998212 1278.4555270001292 1278.4832770004869 1279.6907150000334 1279.882975999266 1280.3017180003226 1280.750163000077 1281.2940270006657 1281.6994230002165 1281.6994230002165 1281.7340500000864 1283.7923589982092 1284.6309820003808 1284.6309820003808 1284.7812510002404 1285.1039230003953 1285.3061130009592 1287.4704189989716 1289.4729830008 1289.9077560007572 1290.9591479990631 1291.3237319998443 1291.3258460015059 1291.6492520011961 1291.9684260003269 1294.2020680010319 1294.5076099988073 1294.575074000284 1295.2520349994302 1295.469808999449 1295.5058599989861 1295.9003500007093 1296.3369149994105 1296.4409599993378 1297.2569180000573 1298.7971199993044 1300.1909189987928 1300.347657000646 1300.6276860013604 1300.9322110004723 1301.012491999194 1301.2978109996766 1301.9092209991068 1303.8401289992034 1304.6187350004911 1304.878824999556 1305.1785489991307 1305.368041999638 1305.368041999638 1305.4060469996184 1306.0617270004004 1307.266520999372 1307.472535001114 1308.972574999556 1311.9599210005254 1312.1040449999273 1313.0262860003859 1313.8533529993147 1315.3929860014468 1315.4289560001343 1315.7687579989433 1316.3396000005305 1316.8883880004287 1317.1718760002404 1317.8053389992565 1318.5497650001198 1320.3539229985327 1320.4437259994447 1320.464275000617 1320.464275000617 1321.2691249996424 1321.4991060011089 1322.8077000007033 1323.1193039994687 1323.926595998928 1324.1746020000428 1324.2636730000377 1328.066446999088 1328.1365159992129 1329.4265550002456 1329.906128000468 1330.0614020004869 1330.1928720008582 1330.2845879998058 1331.7097580004483 1332.282593999058 1332.9812019988894 1334.512004001066 1334.901979001239 1335.3229989986867 1336.429811000824 1337.8354909997433 1339.96952399984 1340.5565189998597 1341.4375409986824 1342.6545010004193 1343.2882489990443 1343.2882489990443 1343.9724540002644 1345.0102960001677 1345.2463789992034 1347.6898609995842 1348.241944000125 1348.4098719991744 1351.2017419990152 1351.3816340006888 1351.4599209986627 1352.5961109995842 1353.2770190015435 1356.157267998904 1356.586141999811 1357.0265309996903 1359.2026370000094 1359.460489999503 1360.1112879998982 1364.344197999686 1364.714438000694 1367.9916589986533 1370.3012299984694 1371.7841400001198 1371.7841400001198 1375.4834399987012 1378.2792559992522 1384.2205410003662 1386.0614429991692 1389.9036049991846 1392.6961269993335 1398.8655609991401 1405.7383639998734 1407.1732179988176 1407.1732179988176 1407.8589279986918 1413.3301599994302 1414.523274999112 1416.2931319996715 1424.604778001085 1425.6193039994687 1426.145793998614 1426.145793998614 1432.144247001037 1432.276775000617 1432.5115159992129 1433.6147060003132 1434.410685999319 1439.6592619996518 1440.0673840008676 1441.0190030001104 1449.7886569984257 1457.5733250007033 1458.9457200001925 1460.8930670004338 1461.0789809990674 1461.0999769996852 1466.1228849999607 1467.7492679990828 1471.031860999763 1472.7250169999897 1473.3908699993044 1473.3908699993044 1479.797283001244 1481.7053640000522 1481.7053640000522 1485.6023360006511 1488.3889579996467 1489.7460540011525 1495.417969999835 1497.5963960010558 1497.8963220007718 1501.191692000255 1506.1879489999264 1523.6802990008146
Open search router TTI (CPU) Baseline
Mean: 146.436 %
Stdev: 2.382 % (1.6%)
Runs: 140.99362533246617 142.0130882939634 142.36458937370202 142.69814690765077 143.31992554552252 143.43773431443378 143.64877084272433 143.80854826950087 144.1180866140511 144.26815746775563 144.2954014481354 144.4208089012821 144.45320395764952 144.6553558587312 144.65682799503236 144.66508368592915 144.81321374896334 144.84278819267038 145.05058307170646 145.09373022849422 145.09619591969462 145.331797107928 145.36708530807115 145.52367561159863 145.98658370205106 146.1206533625816 146.1449400496024 146.21217049127992 146.22801866157764 146.4034448751649 146.60483356127796 146.63004250863474 146.80803116329116 146.82405742751817 147.06469660792746 147.16523659188934 147.1900437883791 147.20068876222146 147.21713744724448 147.30392393123591 147.40996487814547 147.55081837025838 147.61155921972238 147.95500279335602 148.00882227399052 148.27584064161368 148.55931873643218 148.74603668586926 148.7545586138645 148.89153362348966 148.96452317684577 149.05566164115348 149.37126139760204 149.4156536038766 150.01752551996415 150.52394307893948 150.93789593637965 151.68879324332215 151.9284340515455

Current
Mean: 146.202 %
Stdev: 3.780 % (2.6%)
Runs: 139.0476909166462 139.55356603265108 139.98027344956662 140.39703806168845 141.0223690296586 141.43364464958654 141.47261017558043 141.58112700616712 141.84267365729485 141.86919901978928 143.0345520219577 143.15327411067264 143.613638576732 143.6727892847961 143.69429890522954 144.0850901183073 144.20911379999865 144.25652387641372 144.48437513515447 144.62999770574854 144.74838700399272 144.76055585058435 144.79636348092131 144.8371504914591 145.0033904253315 145.06449230003804 145.16233194435506 145.28283831509498 145.42758379325718 145.6880922208738 145.8582436065166 145.96066817461283 146.3847645728643 146.50224595456496 146.72403366267238 146.83794489903252 147.03891279484543 147.08615779820894 147.12168476405103 147.19644018741803 147.32267003755362 148.25570571862204 148.3114549174259 148.87375653769033 149.06033365748624 149.28800801369002 149.45649291838689 149.9878664827142 150.04476090961091 150.13153933506658 150.35068439589904 150.35810043300557 150.6851185952195 150.82458925704643 151.09280396591043 151.4563725079273 153.68362204830265 155.72206094967302 156.4879768049274
Open search router TTI (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (7/11)

Meaningless Changes To Duration (6/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Open search router TTI (RAM) Baseline
Mean: 406.864 MB
Stdev: 3.577 MB (0.9%)
Runs: 400.13125 400.8151041666667 401.07265625 401.2610677083333 401.2981770833333 401.3235677083333 401.392578125 402.2259114583333 403.0279947916667 403.28125 403.283203125 403.3125 403.501953125 403.7311197916667 404.0690104166667 404.3229166666667 404.4557291666667 404.9485677083333 405.2135416666667 405.375 405.5390625 405.634375 405.8606770833333 405.9328125 406.0087890625 406.171875 406.1848958333333 406.3430989583333 406.400390625 406.796875 406.928125 407.03125 407.0515625 407.1234375 407.205078125 407.6634114583333 408.0375 408.259765625 408.3671875 408.52109375 408.7845052083333 408.796875 409.3896484375 409.3990885416667 409.404296875 409.490625 409.64296875 409.818359375 409.9140625 410.0807291666667 410.09375 410.13515625 410.1653645833333 410.9734375 411.36328125 412.2200520833333 413.49609375 413.857421875 414.2799479166667 415.40078125

Current
Mean: 406.598 MB
Stdev: 4.176 MB (1.0%)
Runs: 397.5046875 398.44375 400.5904947916667 401.0247395833333 401.13359375 401.2109375 401.822265625 401.8411458333333 402.275390625 402.3678385416667 402.517578125 402.7296875 402.88671875 402.88671875 403.0345052083333 403.37578125 403.4908854166667 404.0950520833333 404.5455729166667 405.1451822916667 405.18984375 405.265625 405.2897135416667 405.3625 405.39296875 405.4778645833333 405.5384114583333 405.8912760416667 405.9015625 406.126953125 406.158203125 406.3328125 406.6028645833333 406.7981770833333 406.935546875 407.4361979166667 407.84375 408.1588541666667 408.3509114583333 408.451171875 408.609375 408.759375 409.0514322916667 409.3385416666667 409.671875 409.6796875 410.26953125 410.3580729166667 410.4407552083333 410.4876302083333 410.52890625 410.9283854166667 411.03125 411.3951822916667 411.4072265625 411.68984375 411.878125 412.27109375 417.75 418.93046875
Open search router TTI (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Open search router TTI (CPU/UI) Baseline
Mean: 25.759 %
Stdev: 1.072 % (4.2%)
Runs: 23.3 23.4 23.8 24 24.2 24.3 24.5 24.6 24.6 24.7 25 25 25 25.1 25.2 25.2 25.2 25.2 25.3 25.3 25.3 25.4 25.5 25.5 25.5 25.5 25.5 25.5 25.6 25.6 25.6 25.7 25.7 25.7 25.8 25.8 25.9 26.1 26.1 26.2 26.3 26.4 26.5 26.5 26.6 26.7 26.8 27 27 27 27.1 27.2 27.2 27.2 27.3 27.3 27.5 27.6 28.2

Current
Mean: 25.822 %
Stdev: 1.388 % (5.4%)
Runs: 23 23.1 23.1 23.3 23.5 23.6 23.6 23.8 23.9 24 24.5 24.5 24.6 24.7 25 25.2 25.3 25.4 25.5 25.5 25.6 25.6 25.6 25.6 25.7 25.9 25.9 25.9 26 26 26.1 26.2 26.3 26.3 26.3 26.5 26.5 26.5 26.6 26.6 26.7 26.7 26.7 26.7 26.8 26.9 26.9 27 27.1 27.2 27.2 27.3 27.5 27.5 27.6 27.6 28.6 28.9

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (8/11)

Meaningless Changes To Duration (7/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 485.867 ms
Stdev: 27.344 ms (5.6%)
Runs: 429.66752099990845 439.12337299995124 440.1795249991119 443.94706199876964 448.1801759991795 450.80350800044835 452.52514600008726 453.11153199896216 455.35673000104725 457.5909430012107 459.2125250007957 459.7183839995414 461.6554770004004 462.3348389994353 463.706747001037 464.0961920004338 465.13566099852324 468.20214900001884 468.49365199916065 472.58239700086415 474.4608970005065 476.8478999994695 478.3139650002122 478.6458739992231 478.92569999955595 482.4931640010327 485.5732420012355 485.671427000314 487.08349600061774 487.3329270016402 487.81644699908793 489.44242300093174 489.68912799842656 489.7282309997827 489.9916589986533 490.24902400001884 491.7176930010319 492.0638020001352 494.29532900080085 494.5733240004629 494.61144999973476 495.80773900076747 496.5930590014905 496.7003579996526 497.41088899970055 500.73498499952257 502.17586299963295 503.5504160001874 503.96077500097454 504.7398680001497 521.0286459997296 522.2123619988561 524.2596030011773 524.3220620006323 529.0349129997194 529.0839039999992 535.7049969993532 536.1702069994062 543.390096001327 550.0123299993575

Current
Mean: 488.459 ms
Stdev: 27.662 ms (5.7%)
Runs: 444.40470400080085 444.8448489997536 445.9947909992188 447.9105630014092 448.08736199885607 450.6753749996424 451.96423299983144 453.94128400087357 455.3413489982486 457.11657700128853 457.72200500033796 458.49674499966204 459.1728109996766 460.49613399989903 463.2797039989382 463.4765629991889 464.26334699988365 466.00439400039613 468.9617100004107 472.8466400001198 475.1715500000864 476.5854899995029 476.8519699983299 477.4985349997878 481.83846099860966 482.48571799881756 482.8394780009985 482.8593349996954 484.17171300016344 485.04903199896216 488.6345620006323 489.40885400027037 490.33036299981177 492.6641840003431 495.78804600052536 496.08308999985456 497.98409100063145 500.20023600012064 501.32841099984944 501.7921550013125 503.74527999944985 503.98673499934375 504.5257569998503 505.1328529994935 505.97281900048256 507.05143299885094 522.5460609998554 523.9461260009557 524.1977539993823 524.2885340005159 524.4277749992907 525.382162000984 526.2736010011286 526.2954510003328 526.3894039988518 526.7672939989716 527.8844000007957 532.5881349984556 534.5430100001395 537.0443120002747
Report typing (CPU) Baseline
Mean: 92.015 %
Stdev: 3.978 % (4.3%)
Runs: 84.73241222349502 85.28822306037421 86.17823946792375 86.4314180203188 86.94325055063868 87.1705792781033 87.28497773558308 87.32363902053045 87.57931538965619 88.33723875476876 88.84282109408069 89.05475142520133 89.24296256050609 89.24449895938332 89.27712494690694 89.2923557915131 89.47273935566636 89.49410160619463 89.58756126304982 89.59484626332838 89.95155027192588 89.95799513625786 90.05570954511029 90.08074069322967 90.3191623451585 90.62290708849523 90.72097891925903 90.81459603174696 90.98797987974822 90.99511892887884 91.15798594956321 91.54091766229011 92.49857874559707 92.52039620248473 92.59701257308832 92.73248491873608 92.88442102583481 93.06108787693601 93.27100525781518 93.53643310828711 93.93999564576346 93.9730734856929 94.18994264483075 94.74913057750194 94.7856806997511 96.25707096931386 96.68271018482538 96.74135685588051 96.75880742843084 96.80600555955564 97.46478434998951 98.19641471514998 98.66662801889485 99.08886677974496 99.22101262071654 99.28365323315502 99.35866195098623 100.0188223113821

Current
Mean: 91.867 %
Stdev: 4.567 % (5.0%)
Runs: 84.87425932205619 85.06822660171672 85.85288467038806 85.86908548288548 86.21004458306658 86.41309141835184 86.82931567197518 87.12321719620452 87.36891924631395 87.47629161166118 87.7670594751454 87.7767129393109 87.98899512551836 88.0123344785923 88.46641914332629 88.51863307981537 88.58654951773123 88.58659074598899 88.71359397518006 88.76892393733931 88.81005962599062 88.81558086938382 88.8574006587725 89.66740499123682 90.0570180127048 90.13405536867248 90.45077701059704 90.51362497903082 90.63000187921872 90.66097945010239 90.99843118846788 91.37529116415523 91.40025220575238 92.24044417756775 92.55136877490044 92.72096572724834 93.14495363494761 93.23726220005898 93.52719323064531 93.83616033101147 93.99386330264801 94.06282166273233 94.11103531128524 94.41187986624571 96.43771021263414 96.61079461242403 96.69651491186409 97.44736716021005 98.03567399039507 98.43273665180324 98.60862258701805 98.71905914787179 98.77410129030709 99.28517453318524 99.96839094492863 100.49046519154847 100.97916275726236 101.32637569056043

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

Performance Comparison Report 📊 (9/11)

Meaningless Changes To Duration (8/10)

Show entries
Name Duration
App start time nativeLaunch 24.000 ms → 25.298 ms (+1.298 ms, +5.4%)
App start time appCreation 69.881 ms → 71.617 ms (+1.735 ms, +2.5%)
App start time nativeLaunchEnd_To_appCreationStart 79.305 ms → 80.814 ms (+1.508 ms, +1.9%)
App start time runJsBundle 318.133 ms → 319.017 ms (+0.883 ms, ±0.0%)
App start time appCreationEnd_To_contentAppeared 505.500 ms → 503.033 ms (-2.467 ms, ±0.0%)
App start time regularAppStart 0.020 ms → 0.020 ms (+0.000 ms, +2.1%)
App start time (CPU) 147.133 % → 149.709 % (+2.576 %, +1.8%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 378.127 MB → 378.197 MB (+0.070 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 25.747 % → 26.247 % (+0.500 %, +1.9%)
Open search router TTI Load Search Options 141.662 ms → 140.316 ms (-1.345 ms, -0.9%)
Open search router TTI Open Search Router TTI 1244.633 ms → 1257.336 ms (+12.703 ms, +1.0%)
Open search router TTI (CPU) 146.436 % → 146.202 % (-0.234 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.864 MB → 406.598 MB (-0.265 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.759 % → 25.822 % (+0.063 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 485.867 ms → 488.459 ms (+2.592 ms, +0.5%)
Report typing (CPU) 92.015 % → 91.867 % (-0.148 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 473.299 MB → 475.066 MB (+1.768 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.071 % → 21.124 % (+0.053 %, ±0.0%)
Chat opening Chat TTI 751.576 ms → 749.797 ms (-1.779 ms, ±0.0%)
Chat opening (CPU) 159.415 % → 161.493 % (+2.078 %, +1.3%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 401.137 MB → 400.983 MB (-0.155 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.311 % → 33.424 % (+0.113 %, ±0.0%)
Money request - Open Manual Tracking 139.814 ms → 141.611 ms (+1.797 ms, +1.3%)
Money request - Open Contacts 229.056 ms → 227.489 ms (-1.567 ms, -0.7%)
Money request (CPU) 179.005 % → 177.763 % (-1.242 %, -0.7%)
Money request (FPS) 58.991 FPS → 59.138 FPS (+0.147 FPS, ±0.0%)
Money request (RAM) 458.100 MB → 468.496 MB (+10.396 MB, +2.3%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.872 % → 44.031 % (+0.159 %, ±0.0%)
Money request - Open Create 135.729 ms → 142.572 ms (+6.843 ms, +5.0%)
Show details
Name Duration
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 473.299 MB
Stdev: 4.854 MB (1.0%)
Runs: 462.1811755952381 463.64968039772725 464.5816592261905 464.92734375 464.9451349431818 466.4866832386364 466.491015625 466.62020596590907 466.63014914772725 467.49094460227275 468.06356534090907 468.42684659090907 469.4697690217391 469.7752130681818 469.8611328125 470.65340909090907 470.97904829545456 471.1923828125 471.1930042613636 471.57997532894734 471.587890625 471.74165482954544 471.7908380681818 472.36629971590907 472.4810546875 473.10565476190476 473.46946022727275 473.7457386363636 474.17116477272725 474.33735795454544 474.34921875 474.6283482142857 474.96342329545456 474.98135653409093 475.2249644886364 475.27982954545456 475.4046052631579 476.0784801136364 476.29371279761904 476.6822265625 476.69159226190476 476.7005859375 476.72372159090907 476.741015625 476.9666193181818 477.01328125 477.1077302631579 477.3408717105263 478.359375 478.6408203125 478.6525213068182 479.0349786931818 479.4541015625 479.86551339285717 480.2912109375 480.29276315789474 481.11576704545456 482.44921875

Current
Mean: 475.066 MB
Stdev: 5.143 MB (1.1%)
Runs: 465.33487215909093 466.02592329545456 467.17453835227275 467.31942471590907 467.451171875 467.58647017045456 468.266796875 468.79030539772725 469.62943892045456 470.24857954545456 470.72407670454544 470.9115953947368 471.0900213068182 471.77734375 471.82510653409093 471.9332386363636 471.9552556818182 472.2425426136364 472.81960227272725 472.876953125 472.9098011363636 473.0482421875 473.10813210227275 473.59765625 473.72975852272725 473.7386363636364 474.1283203125 474.38156960227275 474.4376775568182 475.046875 475.2693536931818 475.8128551136364 475.90254934210526 475.9060724431818 475.9978515625 476.43288352272725 476.52715773809524 476.6910511363636 476.7769886363636 477.8048650568182 477.81332236842104 478.05220170454544 478.1675575657895 478.2857421875 478.455078125 479.0494791666667 479.42311789772725 479.75071022727275 480.51768092105266 481.30487351190476 481.85262784090907 482.8712713068182 483.40625 484.08182565789474 485.1311677631579 485.46558779761904 487.9251644736842
Report typing (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

@github-actions

github-actions Bot commented May 5, 2025

Copy link
Copy Markdown
Contributor

@Expensify/mobile-deployers 📣 Please look into this performance regression as it's a deploy blocker.

@marcaaron

Copy link
Copy Markdown
Contributor

🥲 did we run this 11 times? Well, looks like the first time it ran with a regression and then ran 10 times without a significant one.

I am confused because the run that failed has App start time TTI entry maybe because of:

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Linking

@github-actions

github-actions Bot commented May 6, 2025

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/marcaaron in version: 9.1.40-0 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

@github-actions

github-actions Bot commented May 7, 2025

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/yuwenmemon in version: 9.1.40-7 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 failure ❌
🍎 iOS 🍎 failure ❌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

DeployBlockerCash This issue or pull request should block deployment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants