Skip to content

fix: migrate workspace invite role to a new page #60626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 1, 2025

Conversation

daledah
Copy link
Contributor

@daledah daledah commented Apr 22, 2025

Explanation of Change

Fixed Issues

$ #58966
PROPOSAL: #58966 (comment)

Tests

  1. Go to workspace settings > members
  2. Tap invite member > select a member
  3. Tap next
  4. Tap role
  5. Refresh the page
  6. Verify that: After refresh, the app stays at role page
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

  1. Go to workspace settings > members
  2. Tap invite member > select a member
  3. Tap next
  4. Tap role
  5. Refresh the page
  6. Verify that: After refresh, the app stays at role page
  • 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 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 used JaimeGPT to get English > Spanish translation. I then posted it 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.ts 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
Screen.Recording.2025-04-22.at.16.21.15.mov
Android: mWeb Chrome
Screen.Recording.2025-04-22.at.16.26.49.mov
iOS: Native
Screen.Recording.2025-04-22.at.16.27.22.mov
iOS: mWeb Safari
Screen.Recording.2025-04-22.at.17.01.50.mov
MacOS: Chrome / Safari
Screen.Recording.2025-04-22.at.16.57.19.mov
MacOS: Desktop
Screen.Recording.2025-04-22.at.16.58.11.mov

@daledah daledah marked this pull request as ready for review April 22, 2025 11:26
@daledah daledah requested a review from a team as a code owner April 22, 2025 11:26
@melvin-bot melvin-bot bot requested review from QichenZhu and removed request for a team April 22, 2025 11:26
Copy link

melvin-bot bot commented Apr 22, 2025

@QichenZhu 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]

@QichenZhu
Copy link
Contributor

@daledah I'll review this once you resolve the conflicts. Thanks!

@daledah
Copy link
Contributor Author

daledah commented Apr 25, 2025

@QichenZhu Sorry for the delay, I resolved the conflicts 👍

@QichenZhu
Copy link
Contributor

Bug: maybe NAB, role resets to default after tapping Invite on Android native (see 00:30 in the video).

1000000311-2025-04-28.12_31_33.081.mp4

@daledah
Copy link
Contributor Author

daledah commented Apr 30, 2025

@QichenZhu I updated.

@QichenZhu
Copy link
Contributor

QichenZhu commented Apr 30, 2025

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
    Reported in https://expensify.slack.com/archives/C049HHMV9SM/p1746024647986009.
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
    Only one parameter in this PR has canBeMissing set to false, and there are no alerts for it.
  • 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
      Another component exists, but we are refactoring it and may remove the original one in the future.
    • 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.
    The deeplink to the role page doesn't work, but it also doesn't work without this PR.
  • 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.
    ScrollView is inside SectionList.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
    N/A. To test this, we need to switch between components, so it’s not suited for unit tests.
  • 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
android-native.mp4
Android: mWeb Chrome
android-web.mp4
iOS: HybridApp
ios-native.mp4
iOS: mWeb Safari
ios-web.mp4
MacOS: Chrome / Safari
mac-web.mov
MacOS: Desktop
mac-desktop.mov

Copy link
Contributor

@QichenZhu QichenZhu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@melvin-bot melvin-bot bot requested a review from justinpersaud April 30, 2025 15:49
@justinpersaud justinpersaud merged commit 61274d4 into Expensify:main May 1, 2025
17 checks passed
@OSBotify
Copy link
Contributor

OSBotify commented May 1, 2025

✋ 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 1, 2025
Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (1/10)

⚠️ 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 949.009 ms → 1065.264 ms (+116.255 ms, +12.3%) 🔴
App start time TTI 1683.409 ms → 1795.564 ms (+112.155 ms, +6.7%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 949.009 ms
Stdev: 263.454 ms (27.8%)
Runs: 648.8858329998329 653.9017269997858 660.3328680000268 664.4280920000747 670.092004999984 674.1357860001735 684.3809620002285 686.2664549998008 696.3628989998251 697.6084079998545 700.9801179999486 704.070966000203 704.5554969999939 711.6283209999092 712.261872000061 712.8920629997738 713.8203360000625 717.8896260000765 718.4523319997825 719.1435440001078 723.768546000123 724.7715909997933 725.9792619999498 726.3834279999137 726.9910240001045 727.6877150000073 728.0285740001127 732.6687369998544 732.9515120000578 733.9399230000563 745.8957690000534 753.4310189997777 1066.1134560001083 1075.427457000129 1101.7379299998283 1109.479592999909 1158.2964750002138 1178.436321000103 1193.16748799989 1194.4933799998835 1206.2562259999104 1214.024412999861 1217.608758999966 1221.2289499999024 1221.764603999909 1233.3297500000335 1238.989186000079 1252.7428979999386 1255.379139999859 1261.232629999984 1265.4612090000883 1270.2775449999608 1272.5894149998203 1279.4899109997787 1280.5188879999332 1286.6871549999341 1287.1684159999713 1311.3619320001453 1311.664090000093 1341.036429000087

Current
Mean: 1065.264 ms
Stdev: 253.696 ms (23.8%)
Runs: 653.4770909999497 671.1060759997927 677.0892019998282 685.8490030001849 690.0867479997687 697.5449950001203 705.3384779999033 706.7491759997793 706.7963270000182 707.5447789998725 709.5528310001828 716.8904360001907 721.9881580001675 725.9872220000252 728.5299769998528 729.8198939999565 732.5910249999724 747.4434759998694 766.7402769997716 782.6924430001527 1097.7956659998745 1132.3414509999566 1145.7996550002135 1156.2682880000211 1167.8928899997845 1169.9297600002028 1184.8989769998007 1196.6282069999725 1204.977276999969 1206.2292630001903 1208.7362230001017 1210.345139999874 1210.4100970001891 1212.8838129998185 1217.3205519998446 1226.9474800000899 1234.705912000034 1236.2643309999257 1245.2182339997962 1245.990528000053 1252.9564860002138 1255.2736949999817 1263.7429740000516 1266.1065580002032 1268.5252359998412 1268.7011370002292 1274.7433830001391 1277.0612719999626 1278.0763810002245 1283.0583529998548 1283.081530999858 1286.829388000071 1289.7975110001862 1290.9450630000792 1291.5486110001802 1306.6691519999877 1310.1148790000007 1320.1743129999377 1335.9396799998358 1337.1131759998389
App start time TTI Baseline
Mean: 1683.409 ms
Stdev: 264.251 ms (15.7%)
Runs: 1307.885832999833 1323.4280920000747 1363.3809620002285 1363.8203360000625 1399.6877150000073 1406.9017269997858 1410.768546000123 1414.6283209999092 1426.7715909997933 1427.0285740001127 1427.1357860001735 1429.6084079998545 1432.555496999994 1433.3328680000268 1439.2664549998008 1444.8920629997738 1444.8957690000534 1445.9515120000578 1455.3628989998251 1462.1435440001078 1467.261872000061 1471.4523319997825 1473.092004999984 1496.8896260000765 1497.9792619999498 1499.9801179999486 1500.6687369998544 1505.3834279999137 1513.9910240001045 1516.070966000203 1520.9399230000563 1525.4310189997777 1748.1134560001083 1780.427457000129 1831.479592999909 1863.16748799989 1866.7379299998283 1869.436321000103 1878.764603999909 1897.608758999966 1919.024412999861 1923.4933799998835 1926.2289499999024 1955.989186000079 1982.5894149998203 1988.5188879999332 1993.379139999859 1995.4899109997787 1996.1684159999713 1997.2775449999608 1998.6871549999341 2001.2964750002138 2004.7428979999386 2005.3297500000335 2015.2562259999104 2038.664090000093 2049.232629999984 2057.3619320001453 2060.4612090000883 2111.036429000087

Current
Mean: 1795.564 ms
Stdev: 254.460 ms (14.2%)
Runs: 1328.0892019998282 1359.5528310001828 1408.1060759997927 1411.0867479997687 1432.7963270000182 1439.849003000185 1440.9881580001675 1441.5299769998528 1441.5447789998725 1442.4770909999497 1443.3384779999033 1444.8198939999565 1457.5449950001203 1463.8904360001907 1472.7402769997716 1494.7491759997793 1495.9872220000252 1514.4434759998694 1514.5910249999724 1534.6924430001527 1796.7996550002135 1806.7956659998745 1812.2682880000211 1825.9297600002028 1877.6282069999725 1884.8928899997845 1900.3414509999566 1903.8838129998185 1920.977276999969 1926.990528000053 1927.345139999874 1929.2182339997962 1929.3205519998446 1938.9474800000899 1939.705912000034 1940.4100970001891 1943.8989769998007 1959.1065580002032 1963.2292630001903 1971.7433830001391 1975.7362230001017 1998.081530999858 2000.829388000071 2003.0583529998548 2003.2643309999257 2004.7975110001862 2004.9564860002138 2023.5486110001802 2026.0612719999626 2031.2736949999817 2037.1148790000007 2038.5252359998412 2038.7429740000516 2041.6691519999877 2056.1743129999377 2056.9450630000792 2059.701137000229 2079.0763810002245 2084.939679999836 2087.113175999839

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (10/10)

Meaningless Changes To Duration (9/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
Money request - Open Contacts Baseline
Mean: 228.025 ms
Stdev: 14.251 ms (6.2%)
Runs: 201.13850999996066 202.83349599968642 205.87011699937284 210.71704099979252 210.7289230003953 210.92740899976343 211.3047690000385 211.45930999983102 215.03625500015914 215.45674599986523 215.6112060006708 216.66471400018781 217.6256919996813 218.97766199987382 219.71679700072855 219.8354899995029 219.97766099963337 220.5607500001788 220.5857750000432 220.71748900040984 221.91857900004834 222.38667799998075 223.77730299998075 224.73103899974376 224.86336299963295 225.20259600039572 225.5076090004295 225.83194999955595 226.49625699967146 226.50113900005817 226.8996179997921 227.15454099979252 227.37019799929112 228.06774900015444 228.2185469996184 229.11352500040084 229.81685400009155 230.61962899938226 231.28165800031275 231.90087899938226 232.30265300069004 232.98803699947894 234.37341300025582 235.18518100026995 236.98551500029862 238.49503600038588 238.72086599934846 242.86714700050652 244.33378100022674 246.54435200057924 247.64274099934846 250.4073489997536 251.18347200006247 255.21460000053048 261.21496600005776 261.8301190007478 263.70206700079143

Current
Mean: 232.533 ms
Stdev: 19.251 ms (8.3%)
Runs: 204.42631000000983 212.18981900066137 212.29573499970138 212.76778100058436 213.56872600037605 213.89542600046843 214.597494000569 214.89424700010568 215.04736299999058 215.09631300065666 215.19624800048769 215.5911860000342 216.02050799969584 216.04471899941564 216.31421000044793 216.5581060005352 216.80932599958032 218.1800130000338 219.256306999363 219.88875399995595 220.2517910003662 221.87345400080085 221.9796150000766 222.00341800041497 223.36320000048727 223.5400390001014 224.57222499977797 224.77901200018823 225.76847300026566 225.86051400005817 226.5303950002417 226.703572999686 227.0617269994691 227.69844499975443 228.19059200026095 228.4463300006464 228.57238799985498 229.1574710002169 230.50573700014502 233.83158299978822 236.11014899984002 237.51285800058395 242.84851100016385 243.3920090002939 246.5737720001489 248.2366130007431 248.9270829996094 252.32812600024045 252.67789799999446 255.11824500001967 256.566407000646 257.74430300015956 258.32751500047743 261.5608319994062 263.00353999994695 270.4144700001925 272.3292239997536 272.5192470001057 272.82417799998075 283.64587400015444
Money request (CPU) Baseline
Mean: 180.587 %
Stdev: 4.101 % (2.3%)
Runs: 170.9988693243736 172.0463786745007 174.21742750668415 175.06981118593131 175.2301396271783 175.31820489999203 175.58572280351527 175.7906081769935 175.96051308663257 176.10336854004947 176.31300256354706 176.7739888654975 177.46995256368106 177.4910170173844 177.62041891824958 177.63632714267305 177.92658786099352 178.45671366120177 178.6674447029162 178.67086276659745 178.81695028176316 178.94436075899344 179.10572000060407 179.34867471976386 179.37295338169912 179.47271774826584 179.93109062369186 180.07783066104693 180.11465332097626 180.12676759695628 180.40988465222497 180.5566957510556 180.67385799972936 180.67728471406028 181.19184915349558 181.73810312317082 181.74674630383723 181.86622612809725 182.12154865820267 182.71789127232887 182.7596289147936 182.77854632154506 182.98081012513603 183.33160611345536 183.45598968786135 183.5387510484 183.64617895117178 184.02295377332692 184.26279417976562 184.30899324367914 184.45733825191886 184.77192308289852 185.33770390129473 185.51881101870262 185.94873651635922 186.73648219647296 186.78062669741266 187.23498130953902 190.00207929730496 190.97805813897597

Current
Mean: 182.024 %
Stdev: 2.703 % (1.5%)
Runs: 176.62714342891064 176.71805911739114 177.21906047478106 177.36260411331142 177.3891715380319 177.47787772304744 178.2303188850439 178.36326311194645 178.83119406391776 179.00236291791765 179.01096049533803 179.19400602097028 179.76910920348942 179.78420541410546 179.99467195870574 180.08952547532436 180.10504735582882 180.60902094935327 180.68062111477613 180.9845890974676 181.12685256456055 181.26246195083553 181.71453190738183 181.82976492352833 182.03462969653668 182.0557848250574 182.05937954857973 182.25972829772024 182.26991804286308 182.29934655168003 182.5036028549951 182.72458584441773 182.75350137592125 182.83638606718455 183.06407557550492 183.16758406652374 183.17791709660966 183.34086552980366 183.40085017952995 183.4713264422793 183.47866304805297 183.48497078743867 183.48605402850345 183.62595803521478 183.8550645023553 184.17783952842544 184.20897705904403 184.42142421649754 184.574328999756 184.67428709545757 184.81868088607564 184.9361413945995 184.9767897781118 185.25802918592612 185.32356859848795 185.3273062481188 186.9799414174755 187.31404744696783 187.7100520063336
Money request (FPS) Baseline
Mean: 58.717 FPS
Stdev: 0.881 FPS (1.5%)
Runs: 57.25342762361718 57.347417234674346 57.417527393648086 57.46712905762061 57.479915116538166 57.48723048016593 57.564290445183076 57.57709934342098 57.611544147819366 57.64829564308013 57.70986309084945 57.73376797604739 57.82320987960284 57.86854799114681 57.896233731502655 57.899850938730474 58.02035907270806 58.06337316612423 58.08895413071244 58.15112154523346 58.18090655854817 58.27066536473622 58.311990431500355 58.43542820853734 58.454745830790195 58.47804273245585 58.48344519175798 58.491789114379436 58.52056933608319 58.594395284830576 58.684941897416515 58.68641672602923 58.71466070305623 58.922273497787494 58.92983392566661 58.988639934369886 59.03879631391382 59.12398308967835 59.247487452867524 59.3160570687833 59.324367460312956 59.35722324356617 59.429266221977215 59.496369300236644 59.49902876074835 59.50955985346703 59.51842011745025 59.62491738035061 59.70556172936585 59.77350036424694 59.84646130885952 59.97480490429241 59.99033559166059 60 60 60 60 60 60 60

Current
Mean: 58.864 FPS
Stdev: 0.784 FPS (1.3%)
Runs: 57.52648159675032 57.527472447283024 57.53446809524015 57.61779318902792 57.61817324254299 57.83149787535515 57.865370404829505 57.99065473961571 58.00099632780312 58.04616864164476 58.05760970558379 58.104078498984485 58.106306624266516 58.15342348372835 58.21447528045115 58.2193762871921 58.3898619579593 58.412341955021375 58.418508083280365 58.42429206365826 58.48336025693336 58.500651456857 58.514199321142236 58.5813970421263 58.75628447209257 58.775746496846374 58.807489090344404 58.8342109354089 58.86770112771007 58.94439699213437 58.97890085891853 58.98506755193216 59.03190062544864 59.03595116310363 59.20486505132717 59.210364384639476 59.224637990558165 59.26884793348323 59.26987888267776 59.34831457513576 59.49104636394267 59.58224975601049 59.61392422220563 59.67853990075043 59.78462742720996 59.79545037879711 59.81011104562155 59.92830571954739 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 449.616 MB
Stdev: 9.162 MB (2.0%)
Runs: 430.97412109375 431.58056640625 434.94873046875 436.20814732142856 436.91845703125 437.62744140625 438.060546875 439.2080078125 440.30078125 440.45591517857144 441.13916015625 441.16748046875 441.326171875 442.10595703125 442.40673828125 442.86962890625 443.56689453125 444.025390625 444.61474609375 444.64599609375 444.81640625 445.73270089285717 446.05691964285717 446.3443080357143 446.83035714285717 447.21316964285717 447.5513392857143 447.72021484375 447.80419921875 447.9140625 448.5634765625 450.15122767857144 450.60323660714283 450.94140625 451.14013671875 451.4541015625 451.54854910714283 452.1489955357143 452.1646205357143 452.2822265625 452.8588169642857 453.3173828125 455.123046875 455.697265625 456.05126953125 457.05517578125 457.4955357142857 457.568359375 458.44775390625 459.09033203125 459.4380580357143 461.67578125 462.09521484375 463.8291015625 463.95068359375 464.09375 464.9833984375 465.19482421875 467.9140625 467.9251302083333

Current
Mean: 453.098 MB
Stdev: 9.882 MB (2.2%)
Runs: 432.10400390625 436.26025390625 437.0244140625 437.2509765625 438.0458984375 438.31005859375 438.83984375 438.87451171875 440.5814732142857 442.69775390625 443.31396484375 443.56494140625 443.69921875 444.57568359375 445.78292410714283 446.55517578125 447.47823660714283 448.02880859375 448.0625 448.60825892857144 448.80691964285717 449.3408203125 450.6529017857143 451.09765625 451.67020089285717 451.9252232142857 451.95982142857144 452.40283203125 453.662109375 453.84130859375 453.90869140625 454.6556919642857 454.81752232142856 454.84095982142856 455.71435546875 455.78759765625 456.13037109375 456.4583333333333 456.9208984375 456.9838169642857 457.31361607142856 457.771484375 458.11439732142856 458.6064453125 459.36767578125 459.51220703125 461.13671875 461.57861328125 461.92919921875 461.98876953125 462.46142578125 463.01025390625 463.60205078125 465.29443359375 465.9892578125 466.3549107142857 468.47544642857144 470.3119419642857 473.72935267857144 478.12220982142856
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.564 %
Stdev: 1.811 % (4.2%)
Runs: 40.2 40.5 40.7 40.9 41.1 41.1 41.5 41.8 41.8 41.9 41.9 42 42 42.2 42.5 42.5 42.5 42.5 42.5 42.6 42.7 42.8 42.9 42.9 43 43 43 43 43.1 43.2 43.2 43.3 43.4 43.5 43.7 43.8 43.8 44.1 44.2 44.2 44.4 44.4 44.5 44.6 44.7 44.7 44.8 45.1 45.4 45.8 46 46 46.2 46.4 46.5 47.1 47.1 47.2 47.9

Current
Mean: 44.293 %
Stdev: 2.038 % (4.6%)
Runs: 40 41.2 41.7 41.7 41.8 41.8 41.8 41.9 42.3 42.3 42.4 42.5 42.5 42.6 42.8 43 43.1 43.1 43.1 43.2 43.2 43.2 43.2 43.2 43.4 43.5 43.6 43.7 43.8 43.9 43.9 44 44 44.2 44.2 44.3 44.4 44.6 44.7 44.9 45.1 45.3 45.3 45.4 45.9 45.9 46 46 46.4 46.6 46.8 47.2 47.3 47.4 47.4 47.7 47.8 47.8 48.4 49.2
Money request - Open Create Baseline
Mean: 145.940 ms
Stdev: 10.304 ms (7.1%)
Runs: 121.24776200018823 127.05318200029433 129.53519700001925 134.86511300038546 135.51733399927616 135.5595289999619 135.71639000065625 135.85534700006247 136.2264000000432 137.87935400009155 138.1489260001108 138.19844599999487 139.1654460001737 139.2041830001399 139.42879300005734 139.50659199990332 139.63118499983102 139.7975260000676 140.06583600025624 140.25419100001454 140.61201999988407 140.9299320001155 141.05061800032854 141.10144100058824 141.16540499962866 141.59940600022674 141.8340249992907 142.32482900004834 142.74629699997604 146.1570640001446 146.9781090002507 147.33516500052065 147.8680420005694 148.24055999983102 148.76074199937284 148.8037109998986 149.2331130001694 149.38309799972922 149.40612800046802 149.89314800035208 150.3616130007431 150.3833010001108 151.39233400020748 151.5763749992475 152.5487069999799 152.8044839994982 154.93656500056386 155.30920400004834 155.94970700051636 156.57373099960387 158.3263750001788 159.5004070000723 163.27518699970096 167.1267499998212 168.703125 170.17997199948877 171.33638499956578

Current
Mean: 145.999 ms
Stdev: 10.420 ms (7.1%)
Runs: 124.89188599959016 125.40026900079101 126.6175130000338 127.82405599951744 129.89632199984044 134.6255700001493 135.12919100001454 135.19954400043935 135.5610349997878 135.7077629994601 137.8686120007187 137.9439289998263 139.00134199950844 139.13871299941093 139.2342529995367 139.6856689993292 139.82617199979722 140.1160889994353 140.33361800014973 141.12849999964237 141.27046700008214 142.20043999981135 142.78971299994737 142.96569800004363 143.22176100034267 143.76009100023657 144.0910639995709 144.15067500062287 144.60591699928045 144.6490070000291 144.6655279994011 145.827555000782 145.94148799963295 147.13114500045776 147.5804449999705 147.64685100037605 148.03413899987936 148.3506669998169 149.25362199917436 149.48140499927104 149.65205899998546 149.82368999999017 151.15669699944556 151.94311599992216 152.20072400011122 152.46142599917948 153.24406000040472 153.88916000071913 156.97265600040555 159.2806399995461 159.70402000006288 159.74947100039572 160.3767499998212 160.52815700042993 161.33174599986523 164.40462200064212 166.2646070001647 168.26595100015402 169.95373600069433

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (2/10)

Meaningless Changes To Duration (1/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 25.862 ms
Stdev: 3.376 ms (13.1%)
Runs: 21 21 21 22 22 22 22 22 22 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 26 26 26 26 27 27 28 28 28 28 29 29 30 30 30 30 31 31 31 32 32 32 33 33

Current
Mean: 28.034 ms
Stdev: 5.066 ms (18.1%)
Runs: 22 22 22 22 22 23 23 23 23 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 26 26 26 26 27 27 27 27 27 27 28 28 28 29 29 30 31 31 31 31 32 32 32 33 33 34 34 35 35 37 38 39 40 44
App start time appCreation Baseline
Mean: 72.400 ms
Stdev: 8.832 ms (12.2%)
Runs: 53 56 61 62 62 62 63 64 64 64 65 65 65 66 66 66 66 67 67 67 67 68 68 68 69 69 69 70 70 71 72 73 73 74 74 74 74 75 75 75 75 76 76 78 78 79 79 80 80 80 80 80 81 82 83 84 91 91 94 98

Current
Mean: 74.220 ms
Stdev: 9.595 ms (12.9%)
Runs: 54 58 59 61 61 62 62 62 63 64 65 65 66 66 66 66 67 67 67 69 70 70 70 71 71 72 73 73 74 74 75 75 76 76 76 77 77 78 79 79 80 80 81 81 81 82 82 83 83 86 87 87 87 88 90 91 91 91 92
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 546.917 ms
Stdev: 40.905 ms (7.5%)
Runs: 471 472 473 480 481 487 491 499 502 503 505 508 509 516 520 521 522 523 523 527 527 531 531 532 538 539 541 541 541 544 545 546 547 555 558 558 562 565 568 571 572 572 575 576 578 580 582 582 585 585 585 585 587 593 601 602 603 613 629 657

Current
Mean: 540.133 ms
Stdev: 36.589 ms (6.8%)
Runs: 449 457 464 469 472 486 493 496 503 505 508 509 512 515 521 521 522 524 525 526 527 528 530 533 534 536 536 536 538 546 547 547 547 551 551 552 552 555 556 557 561 562 564 565 567 569 573 574 574 574 578 580 580 587 587 588 590 591 604 604
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 88.667 ms
Stdev: 10.827 ms (12.2%)
Runs: 71 72 73 73 74 76 76 76 77 77 78 78 79 79 79 80 80 80 81 81 82 82 83 84 84 85 86 86 86 87 87 89 89 90 91 92 92 93 93 94 94 95 95 95 96 96 97 98 98 100 101 102 102 103 105 106 109 109 110 114

Current
Mean: 87.083 ms
Stdev: 10.702 ms (12.3%)
Runs: 64 69 70 73 73 74 74 75 76 77 77 77 78 78 78 78 79 80 80 81 81 83 83 83 83 84 85 85 85 86 86 86 87 88 89 90 90 91 91 92 92 93 93 94 94 94 95 95 96 97 101 101 101 102 102 103 104 106 109 114

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (3/10)

Meaningless Changes To Duration (2/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
App start time runJsBundle Baseline
Mean: 346.050 ms
Stdev: 26.335 ms (7.6%)
Runs: 291 291 303 303 304 304 307 307 309 309 310 310 310 310 313 313 316 316 317 317 319 319 321 321 322 322 322 322 324 324 325 325 327 327 329 329 330 330 330 330 331 331 331 331 333 333 336 336 337 337 342 342 342 342 343 343 343 343 344 344 345 345 347 347 350 350 352 352 355 355 356 356 357 357 357 357 358 358 358 358 363 363 365 365 367 367 368 368 368 368 368 368 369 369 371 371 371 371 372 372 374 374 375 375 378 378 378 378 379 379 381 381 381 381 381 381 392 392 416 416

Current
Mean: 342.339 ms
Stdev: 22.113 ms (6.5%)
Runs: 283 283 291 291 295 295 304 304 313 313 315 315 318 318 319 319 319 319 320 320 323 323 326 326 326 326 326 326 326 326 327 327 327 327 330 330 331 331 332 332 335 335 336 336 337 337 338 338 339 339 340 340 340 340 341 341 342 342 343 343 343 343 345 345 348 348 350 350 351 351 351 351 352 352 354 354 354 354 354 354 355 355 356 356 356 356 357 357 359 359 360 360 362 362 363 363 364 364 365 365 365 365 367 367 368 368 369 369 373 373 373 373 374 374 384 384 384 384
App start time regularAppStart Baseline
Mean: 0.021 ms
Stdev: 0.002 ms (9.5%)
Runs: 0.0174150001257658 0.017862999811768532 0.01798499980941415 0.018473000265657902 0.018799000419676304 0.018838999792933464 0.0188400000333786 0.018962000031024218 0.019001999869942665 0.019204999785870314 0.01932799955829978 0.019450000021606684 0.019491000100970268 0.019733999855816364 0.019776000175625086 0.019816000014543533 0.01993800001218915 0.020099999848753214 0.02010100008919835 0.020264000166207552 0.020304000005126 0.020427000243216753 0.0204670000821352 0.0204670000821352 0.020589000079780817 0.020671000238507986 0.020752000156790018 0.020752000156790018 0.020752000156790018 0.020793000236153603 0.02083300007507205 0.021198999602347612 0.0211990000680089 0.0211990000680089 0.02128099976107478 0.0215659998357296 0.02164700021967292 0.021687000058591366 0.021768999751657248 0.021850999910384417 0.02193199982866645 0.022013999987393618 0.022053999826312065 0.02209499990567565 0.02225799998268485 0.02270500035956502 0.022785999812185764 0.023070999886840582 0.0235190000385046 0.0236820001155138 0.023966999724507332 0.02478000009432435 0.025187000166624784 0.026529999915510416 0.026814999990165234

Current
Mean: 0.022 ms
Stdev: 0.003 ms (14.4%)
Runs: 0.017659999895840883 0.017740999814122915 0.018066999968141317 0.01814799988642335 0.01823000004515052 0.01831099996343255 0.018554999958723783 0.01887999987229705 0.018880000337958336 0.01920600002631545 0.019328000023961067 0.019611999858170748 0.019652999937534332 0.01977499993517995 0.019896999932825565 0.01993800001218915 0.020018999930471182 0.02010100008919835 0.020223000086843967 0.020304000005126 0.020507999695837498 0.020589000079780817 0.0206709997728467 0.020711000077426434 0.020874000154435635 0.02091500023379922 0.020955000072717667 0.0209969999268651 0.02103699976578355 0.021402999758720398 0.02160700038075447 0.021850000135600567 0.021972999908030033 0.022013000212609768 0.022095000371336937 0.022297999821603298 0.022664000280201435 0.022745999973267317 0.022909000050276518 0.02298999996855855 0.02307200012728572 0.023233999963849783 0.02343800012022257 0.023558999877423048 0.024211000185459852 0.0242510000243783 0.0242510000243783 0.024576999712735415 0.024983000010252 0.025268000084906816 0.026733000297099352 0.02710000006482005 0.027263000141829252 0.028931000269949436 0.02982599986717105 0.030232000164687634 0.030477000400424004
App start time (CPU) Baseline
Mean: 158.556 %
Stdev: 4.019 % (2.5%)
Runs: 148.2077679686797 148.77044038270031 149.16499186525033 153.04970350755576 153.63891646616577 153.73219014437848 155.03143042666971 155.11663571475313 155.23729902986062 155.39367667027238 155.41544429753634 155.55864811133202 155.6263115219985 155.65650721578731 156.5269928303496 156.74041019463203 157.03669943448668 157.15041844590303 157.18720010719122 157.6645701146188 157.72386607088978 157.79929855127497 157.8811163614276 158.24145671910776 158.49933598937568 158.54721037829123 158.6077885682616 158.9947089947091 159.16352676196337 159.37919289769138 159.60600350337918 159.64059555656502 160.05368335789177 160.2643198132642 160.29272815394393 160.7773503785566 160.83092282458261 160.9507691088827 161.38694173205238 161.47479867727668 161.4849123655385 161.98402706221543 162.11576195238234 162.30603424295182 162.49353960710462 163.00115840110746 163.94874696026486 164.17512577202857 164.40057081570504 165.06062162758627 165.53048858132186 166.40026507620948

Current
Mean: 158.743 %
Stdev: 6.006 % (3.8%)
Runs: 143.25781187639186 146.42898177635936 146.95404813358508 147.1063896303779 148.68189556338 150.8755211435378 151.57393694631787 151.63574224015412 152.39029825740877 152.39911569170087 152.51261620185915 152.81232855306496 153.68899494814676 154.68763017364518 154.77333950770074 155.1549214298628 155.42959377313784 155.78767880189136 156.4270928260936 156.45148491099891 157.04765874732968 157.40062960251848 157.48577172006503 157.5029380153884 158.01134470251446 158.17503196286864 158.3158480508777 158.3780818753969 158.7633017198735 158.7953865987139 159.67837967373097 160.39543813576194 160.42809807819748 160.94366382375196 161.19621982480268 161.49213306775437 161.8600559995474 162.06862008553037 162.1309135271322 162.48974924943946 162.62787955442258 162.86198270261008 163.75941617766279 164.0908618282188 164.50038150908634 164.55264572444747 164.6341040118408 164.7023383555516 164.7389642984324 164.95236370631727 165.15063641785383 165.3295846995234 165.79381404867195 166.46765366589867 166.77189014297267 167.00633262028398 168.32018331901145 169.21880553170908
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

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

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (4/10)

Meaningless Changes To Duration (3/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
App start time (RAM) Baseline
Mean: 361.904 MB
Stdev: 6.772 MB (1.9%)
Runs: 345.005859375 350.5546875 351.298828125 353.8125 353.8971354166667 354.3932291666667 354.7265625 355.1809895833333 355.3255208333333 355.76171875 356.1106770833333 356.1822916666667 356.7877604166667 356.91796875 356.9479166666667 356.9622395833333 357.1458333333333 357.4244791666667 358.4114583333333 358.4544270833333 358.69140625 358.77734375 359.3294270833333 359.3802083333333 359.5729166666667 359.587890625 360.1901041666667 360.2109375 360.2825520833333 360.7083333333333 360.7122395833333 360.7578125 361.7434895833333 362.109375 362.1106770833333 362.634765625 362.96875 363.0625 363.4921875 364.703125 364.7083333333333 365.48046875 365.6279296875 365.91796875 366.87890625 367.6002604166667 368.0205078125 368.046875 368.650390625 368.8212890625 370.1455078125 370.80859375 371.3020833333333 372.3359375 372.3385416666667 373.6865234375 375.875 376.7161458333333 377.03515625

Current
Mean: 364.356 MB
Stdev: 6.954 MB (1.9%)
Runs: 349.3333333333333 350.2747395833333 352.7018229166667 352.8489583333333 353.09375 354.5638020833333 355.3606770833333 356.8125 358.2252604166667 358.6953125 358.7057291666667 358.7760416666667 358.8893229166667 359.2291666666667 359.2877604166667 360.2395833333333 360.3984375 360.7434895833333 360.8177083333333 361.0651041666667 361.21875 361.2942708333333 361.7565104166667 361.9518229166667 362.4583333333333 362.7239583333333 363.7096354166667 363.8974609375 364.1588541666667 364.2939453125 364.677734375 365.1025390625 365.3255208333333 365.4677734375 365.771484375 365.890625 366.4462890625 366.90625 367.453125 367.59765625 367.8880208333333 367.95703125 369.40234375 369.7994791666667 369.837890625 369.9231770833333 370.142578125 370.5283203125 371.3971354166667 372.404296875 372.43359375 373.6536458333333 374.0771484375 374.892578125 375.515625 377.0598958333333 377.1302083333333 380.41796875
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: 31.452 %
Stdev: 2.804 % (8.9%)
Runs: 24 25 27 27.9 28 28.2 28.3 28.3 28.5 28.8 29.1 29.3 29.3 29.3 29.4 29.7 29.8 30 30 30.2 30.5 30.6 30.6 30.6 30.8 30.9 31 31.3 31.4 31.4 31.9 31.9 31.9 32.3 32.6 32.7 33 33.1 33.2 33.3 33.3 33.5 33.6 33.7 33.7 33.9 33.9 34.7 34.9 35.1 35.2 35.2 35.7 36 36.1 37.7

Current
Mean: 30.495 %
Stdev: 2.222 % (7.3%)
Runs: 25.3 25.9 26.6 26.6 27.3 27.4 27.9 28 28.4 28.6 28.7 28.7 28.9 29.2 29.2 29.2 29.4 29.8 29.8 29.9 29.9 30 30 30 30.1 30.1 30.2 30.3 30.6 30.6 30.6 30.7 30.7 30.7 30.8 30.9 31 31.2 31.2 31.2 31.4 32 32 32 32 32.2 32.4 32.5 32.5 32.6 33.2 33.3 34.5 34.6 34.7 35 35.7
Open search router TTI Load Search Options Baseline
Mean: 143.366 ms
Stdev: 4.443 ms (3.1%)
Runs: 134.51391599979252 135.18880200013518 135.20308399992064 136.47232999978587 137.0137129998766 137.36934400023893 138.26066099992022 139.14343299996108 139.14921100018546 139.63688100036234 139.64461300009862 139.80232700007036 139.87943599978462 140.0076500000432 140.03421999979764 140.16446899995208 140.3286950001493 140.59098300011829 140.87699400028214 141.5752770002 141.59464500006288 141.85262000001967 141.93119300017133 141.95825199969113 142.05432099988684 142.1276039998047 142.33866399992257 142.40079700015485 142.41898600012064 142.42386900028214 142.51037600031123 142.62276199972257 143.26212500035763 143.27579799992964 143.44860799983144 143.49861699994653 143.80183900007978 143.81115700025111 143.87475599953905 144.79968299996108 145.46260599978268 145.8045650003478 146.3403320000507 146.3826500000432 146.51310299988836 146.66882300004363 146.7021900000982 147.13932299986482 147.63004499999806 147.67753099976107 147.75097599998116 148.63081900030375 148.81909199990332 148.98299199994653 149.95479299966246 150.33064800035208 151.7521569998935 151.86193799972534 152.5231119999662 154.18912700004876

Current
Mean: 146.459 ms
Stdev: 5.758 ms (3.9%)
Runs: 133.47367400024086 138.42643300024793 138.84513300005347 138.84720900002867 139.78255200013518 139.84798199962825 140.02807600004598 140.09086099965498 140.18050100002438 140.28593000024557 140.296875 140.51387499971315 141.53759799990803 141.6903479998 142.7706710002385 142.912271999754 142.95540399989113 142.95878100022674 142.96545400004834 143.0451250001788 143.10884599993005 143.25484200008214 143.9967450001277 144.44010400027037 144.48144500004128 144.97888199985027 145.2824710002169 145.3920900002122 145.5333259999752 145.74068199982867 145.78820799989626 145.84338400000706 145.90165199991316 145.93697099993005 146.21289099985734 146.28385400027037 146.44242300000042 146.9452309999615 147.02730299998075 147.95723500009626 148.80875699967146 149.31282499991357 149.33524599997327 150.39192700013518 150.42293299967423 150.68566899979487 151.07393399998546 151.1645510001108 152.1059979996644 152.85607900004834 153.41068500000983 153.47766099963337 153.5454909997061 153.70882100006565 154.1913250000216 156.3206789996475 156.71146599994972 157.90861000027508 159.3176270001568 160.80574500001967

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (5/10)

Meaningless Changes To Duration (4/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 1227.514 ms
Stdev: 78.802 ms (6.4%)
Runs: 1039.6174730001949 1044.644288000185 1045.7277430002578 1046.5929370000958 1050.9917409997433 1058.326783000026 1058.7825520001352 1059.906210000161 1060.9688719999976 1061.974731999915 1062.13830600027 1062.9953209999949 1063.1228850004263 1066.7001149998978 1068.6051030000672 1069.0123700001277 1069.06559299957 1070.1516519999132 1070.6445320001803 1072.7690030001104 1073.443318999838 1076.0054120002314 1080.2034100000747 1082.4870200003497 1086.5706380000338 1087.084554999601 1087.642741999589 1087.8269050000235 1090.5052090003155 1093.6944180000573 1097.9057620000094 1099.2469489998184 1100.3024100000039 1100.731324000284 1101.211791999638 1109.4624850000255 1110.6412760000676 1110.6547849997878 1118.618083000183 1122.2087409999222 1127.1571870003827 1140.9412839999422 1141.2362480000593 1144.500447999686 1146.725260999985 1150.6377770002 1151.7329509998672 1154.5266520003788 1154.5907389996573 1155.1907150000334 1159.9364020000212 1161.1164559996687 1161.4426679997705 1162.2758380002342 1164.9490569997579 1167.3090420002118 1167.3090420002118 1167.680378999561 1168.1618249998428 1168.568847999908 1171.9375419998541 1172.7878829999827 1172.8824880002066 1176.5786950001493 1176.6278889998794 1179.578206999693 1179.74768100027 1180.3297119997442 1182.5363369998522 1184.5446369997226 1186.199911000207 1186.199911000207 1187.1476239999756 1187.6489260001108 1188.2228199997917 1188.4054370000958 1188.8332120003179 1188.8450939999893 1190.9494630000554 1191.103108999785 1191.2095550000668 1192.5154219996184 1193.0469979997724 1193.1026210002601 1194.5762940002605 1194.5914309998043 1194.928467000369 1195.3102219998837 1195.73258500034 1196.676880999934 1197.5248210001737 1197.976319000125 1198.345379000064 1198.345379000064 1199.7005210001953 1200.6861170004122 1202.094036000315 1202.1010340000503 1202.849731999915 1203.0130620002747 1203.3824469996616 1203.516764999833 1203.5710049998015 1203.8885499997996 1204.3182780002244 1205.7134199999273 1206.6576749999076 1207.6128340000287 1207.6331380000338 1207.8022059998475 1208.7123630000278 1209.9042160003446 1211.3253180002794 1211.4281820002943 1212.7640799996443 1214.5564379999414 1214.6361499996856 1215.876018000301 1216.1998299998231 1216.7667640000582 1216.8348400001414 1216.9387620002963 1217.05078099994 1217.5115160001442 1217.5115160001442 1218.8275559996255 1219.4506429997273 1219.8426520000212 1220.0365810003132 1220.778728000354 1222.0125739998184 1222.627807999961 1223.3054210003465 1223.7917890003882 1223.7989509999752 1223.8483890001662 1224.7338460003957 1225.554444000125 1225.554444000125 1226.3805339997634 1226.3823250001296 1226.7524020001292 1227.2629809998907 1227.7860520002432 1228.0279960003681 1229.3455010000616 1229.9625249998644 1232.2933359998278 1232.4313570000231 1232.540608999785 1232.6407469999976 1233.3615729999729 1233.3972180001438 1233.4440520000644 1233.4463709997945 1233.796182999853 1233.8977870000526 1234.0994060002267 1234.237182999961 1234.2590340003371 1235.4448659997433 1235.8379319999367 1236.0631919996813 1236.0889890003018 1236.1083180001006 1237.7238769996911 1238.3419190002605 1238.8865970000625 1239.8226729999296 1239.8287769998424 1240.8306490001269 1241.4422209998593 1241.7561860000715 1242.7977709998377 1242.8937579998747 1243.5405680001713 1243.7963870000094 1244.719360999763 1244.719360999763 1245.3601890001446 1245.3656419999897 1245.3766679996625 1245.4884850000963 1245.7237960002385 1246.1982029997744 1247.2305100001395 1247.4014900000766 1248.1055100001395 1248.2757170000114 1248.5817470001057 1248.9503179998137 1249.2900399998762 1250.3139650002122 1250.531697999686 1250.5474049998447 1251.104330000002 1252.1422129999846 1253.1706150001846 1253.3892419999465 1254.0574950003065 1254.544677999802 1254.641806000378 1254.641806000378 1255.2883310001343 1255.7385660000145 1255.9762780000456 1256.375 1256.5961510003544 1257.7288819998503 1258.645020000171 1258.7340100002475 1259.2552900002338 1259.4192709997296 1259.675659999717 1259.675659999717 1260.626629000064 1260.7233890001662 1262.0627859998494 1264.341065000277 1264.913819000125 1265.112875000108 1265.4149579997174 1266.1059169997461 1267.2505300003104 1267.862509000115 1268.425659999717 1268.8559170002118 1269.7600099998526 1270.744752000086 1272.8615319998935 1272.9616300002672 1273.3201500000432 1273.8022869997658 1274.4263929999433 1274.4398199999705 1274.6170250000432 1274.6203620000742 1278.5251879999414 1278.6567799998447 1280.6357420003042 1281.2371009998024 1281.6429849998094 1282.131184999831 1283.8389900000766 1284.0582690001465 1287.1721600000747 1287.5931809996255 1288.6322020003572 1289.6133630000986 1289.9121920000762 1290.0864270003513 1290.0864270003513 1291.2086999998428 1291.6132000000216 1291.9820559998043 1292.7760830000043 1294.2813320001587 1295.04508500034 1295.3104660003446 1295.6736249998212 1296.5788980000652 1301.1204030001536 1301.230671999976 1303.7928470000625 1305.5218919999897 1307.297688999679 1307.5344650000334 1307.6235770001076 1308.569540000055 1309.241781000048 1312.697184999939 1314.321492999792 1314.3649500003085 1314.9974370002747 1315.2600920000114 1315.3135990002193 1316.9146739998832 1317.826417000033 1319.1576750003733 1319.1626789998263 1321.5500900000334 1324.2444660002366 1325.1789959999733 1325.3817150001414 1325.6940520000644 1328.1505950000137 1328.2492690002546 1330.1046150000766 1331.2303470000625 1332.0195730002597 1334.419311999809 1334.419311999809 1334.9462490002625 1338.8899750001729 1344.016969000455 1344.016969000455 1344.2540699997917 1346.597942000255 1348.491049000062 1349.8900970001705 1359.2285569999367 1359.9518639999442 1367.1356209996156 1382.4853110001422 1382.4853110001422 1388.5556239997968 1390.3046880001202 1390.3046880001202 1397.913453000132 1399.047201000154 1402.709920999594 1408.2831629998982 1421.315673999954

Current
Mean: 1246.135 ms
Stdev: 90.850 ms (7.3%)
Runs: 1027.0591639997438 1032.485880999826 1033.9310710001737 1034.7322599999607 1037.0169680002145 1044.2000739998184 1047.56380299991 1049.7358400002122 1050.9696450000629 1052.0039880000986 1052.107503999956 1053.34167600004 1054.2120370003395 1055.1447350000963 1056.7355150002986 1057.7888599997386 1058.5311290002428 1060.4303390001878 1060.6531580002047 1065.144654000178 1067.8720300002024 1069.7033689999953 1070.8953860001639 1072.7979739997536 1074.1245930003934 1074.1380630000494 1074.28125 1077.3844409999438 1081.6777340001427 1082.6742760003544 1086.2707110000774 1088.2238770001568 1088.612875000108 1094.950074000284 1096.9769700001925 1098.7281499998644 1099.7137449998409 1100.8236499996856 1101.492391999811 1101.7204599999823 1107.7846280001104 1112.6795250000432 1120.4497489999048 1122.170003999956 1122.309489000123 1123.257000000216 1125.2835699999705 1139.1708579999395 1141.2609050003812 1146.260743000079 1148.3690189998597 1149.9157309997827 1150.670696000103 1151.4145519998856 1151.6677250000648 1151.6954359998927 1152.7612310000695 1154.838339000009 1159.3964030002244 1159.4113779999316 1161.915771999862 1163.293661000207 1164.7056889999658 1166.575643000193 1168.2712820000015 1169.6620690003037 1169.8597419997677 1170.3054610001855 1170.400309999939 1170.415487000253 1171.9992680000141 1174.738322999794 1174.738322999794 1175.4180920002982 1176.1807050001808 1177.3574629998766 1179.7438970003277 1180.6008709999733 1180.7351080002263 1182.0032149995677 1183.2412119996734 1183.9269620003179 1184.9529219996184 1185.8007000000216 1186.2811290002428 1187.0378829999827 1187.159994999878 1187.7636720002629 1188.0963139999658 1188.425904000178 1188.7626559999771 1188.9010830000043 1189.2886969996616 1191.473063999787 1192.92549699964 1193.9175219996832 1194.4705409999005 1194.6522630001418 1194.8411459997296 1195.2544759996235 1195.4589849999174 1195.5091970004141 1195.7718509999104 1195.8849700000137 1196.7740080002695 1197.9628909998573 1199.1300050001591 1199.1458339998499 1200.6705740001053 1201.118449000176 1201.2841389998794 1202.4837250001729 1203.047527000308 1203.0483810002916 1203.8801679997705 1204.49768100027 1205.0826020003296 1205.993612000253 1207.8037119996734 1207.8092450001277 1208.05049699964 1208.1446130000986 1208.3723959997296 1208.372965999879 1208.5019130003639 1208.7456880002283 1208.964680999983 1212.6529139997438 1213.5500079998747 1214.216310000047 1214.7613130002283 1215.0861420002766 1215.507040000055 1215.5570069998503 1216.1505539999343 1216.1505539999343 1217.8090010001324 1217.8090010001324 1220.0570489997044 1221.9820970003493 1222.6442470001057 1223.6075450000353 1223.717244999949 1223.717244999949 1224.085654000286 1224.2012130003422 1224.3306080000475 1224.4322519996203 1224.7009290000424 1225.8969329996035 1226.0463870000094 1226.0606689997949 1226.0606689997949 1227.1057540001348 1229.1948649999686 1230.5788990003057 1231.4557300000452 1231.8473310000263 1232.8875739998184 1233.1243499997072 1235.1428219997324 1236.3813069998287 1236.7707120003179 1236.9606130002066 1236.9868169999681 1236.9941000002436 1237.1955160000362 1237.9261480001733 1239.1970629999414 1240.8264979999512 1240.9209399996325 1240.946574000176 1240.946574000176 1241.6945810001343 1242.90649499977 1242.9283449999057 1243.3718270002864 1245.7255859998986 1247.279378999956 1247.4562180000357 1248.6180829997174 1248.9239500002004 1248.9405930000357 1250.964194000233 1251.4706219998188 1251.4706219998188 1251.4910079999827 1251.672201000154 1252.3932300000452 1252.4938560002483 1253.007000000216 1255.4115810003132 1255.9343269998208 1256.6160479998216 1257.4667569999583 1257.78072099993 1258.95780499978 1259.618530999869 1260.3210459998809 1260.5316989999264 1260.806599999778 1261.4908449999057 1262.122762999963 1262.7699390002526 1264.98331699986 1265.1465659998357 1266.0237230001949 1266.1717130001634 1266.335857000202 1266.335857000202 1266.5352380000986 1266.6431899997406 1266.6431899997406 1266.7339689997025 1266.7339689997025 1266.8013100000098 1268.0273850001395 1268.7728689997457 1268.9211430000141 1269.5045170001686 1271.8136809999123 1273.0548100001179 1273.3082689996809 1273.3177089998499 1273.6388759999536 1273.866251999978 1274.0760509995744 1274.2931729997508 1274.2931729997508 1274.3284919997677 1274.6582030002028 1275.5067549999803 1276.1742349998094 1277.3589280000888 1277.3589280000888 1278.1920980000868 1278.9635830000043 1279.326946000103 1279.6796470000409 1281.3142099999823 1281.727132000029 1282.5851239999756 1282.5922850002535 1282.8854580000043 1283.031739000231 1283.4589450000785 1284.0995279997587 1285.512411000207 1285.8276370000094 1286.0852059996687 1286.270183000248 1286.4357509999536 1287.8791100000963 1289.7231040000916 1290.46720500011 1290.724610000383 1290.816366000101 1291.094605000224 1291.094605000224 1291.3148199999705 1292.6389169995673 1293.3362639998086 1293.756144999992 1293.756144999992 1294.5645759999752 1295.8754070000723 1296.037597999908 1296.4632979999296 1296.5687669999897 1296.7110599996522 1296.7110599996522 1297.6818039999343 1298.0587160000578 1298.2902839998715 1299.921875 1300.9720469997264 1301.0199390002526 1301.1598320002668 1301.8029790003784 1303.7299399999902 1303.7420660001226 1304.013061999809 1305.799846000038 1307.9346119998954 1307.979493000079 1309.454509999603 1309.4555669999681 1309.7952880002558 1310.7153739999048 1311.092855999712 1311.092855999712 1312.8093679999001 1313.304281000048 1313.3959149997681 1313.8361819996499 1314.1868909997866 1314.1868909997866 1314.8501389999874 1316.6026210002601 1316.7602540003136 1316.9625260001048 1319.8473310000263 1319.9333099997602 1320.8674329998903 1321.5865889997222 1321.5865889997222 1321.9309499999508 1321.9309499999508 1321.9962160000578 1322.7441820004024 1323.2665200000629 1323.7451179996133 1325.1618659999222 1325.331625000108 1326.3674729997292 1327.7999689998105 1330.288656000048 1330.673340999987 1330.8444019998424 1331.3660900001414 1334.2696130000986 1334.4547529998235 1334.773886000272 1336.5320649999194 1337.344076000154 1337.355103999842 1338.3511149999686 1343.153199000284 1343.9259449997917 1344.8834649999626 1344.8834649999626 1346.075724999886 1346.4939790000208 1346.940471000038 1348.9197189998813 1349.1871749996208 1349.4443369996734 1350.4356290004216 1351.8680429998785 1351.9320479999296 1353.854940999765 1354.2331550000235 1355.1115729999729 1358.3745120000094 1360.6422539995983 1360.9484870000742 1361.9146730001085 1363.4809579998255 1365.636069000233 1366.0199799998663 1366.26408000011 1368.3605559999123 1369.2924399999902 1372.695842999965 1373.5151379997842 1376.0543220001273 1376.881347999908 1376.881347999908 1379.5900070001371 1381.8841969999485 1385.7849129997194 1385.7849129997194 1385.965983999893 1386.295533000026 1389.3354090000503 1390.0296229999512 1390.0296229999512 1390.310262999963 1390.6782240001485 1391.1830660002306 1392.3925780002028 1395.0147299999371 1398.8496920000762 1399.419840999879 1407.6670739999972 1407.7297780001536 1408.506429999601 1412.9576829997823 1413.0769050000235 1415.9494639998302 1422.6797290001996 1425.3243820001371 1427.0382899995893 1436.1831469996832
Open search router TTI (CPU) Baseline
Mean: 153.461 %
Stdev: 3.405 % (2.2%)
Runs: 145.19103239162817 146.36395343469047 147.04576172666475 148.1050024980805 149.04386600424854 149.4259715816403 149.84203672673263 149.86486255732981 149.90550258807005 149.9662118360004 150.22667465838978 150.7053363658684 150.86146542220197 150.88702785955454 150.8935050200928 151.0307263900002 151.18306615428577 151.4891920665108 151.91435671815236 152.17089619215648 152.46914261919318 152.65158743201854 152.67678891093735 152.79698756271983 152.92355968637077 153.18641287853907 153.21482220704698 153.65563689323554 153.78277333196883 153.7846470102278 153.83456665667495 154.04122317445962 154.10416512409716 154.14760197207653 154.16050125515943 154.64897283657882 154.67644855356286 154.7538397324905 154.79106395212798 154.8259674101343 155.05518375876255 155.27766121492752 155.28942115768473 155.71350434246705 156.37976568924958 156.49609142164158 156.55090615050375 156.83592421808933 157.27759813341245 157.47159776957773 157.48187431560058 157.993963867225 158.33593256143388 159.22271281076087 159.40321250220046 160.5823124487718 160.67163255952488

Current
Mean: 153.700 %
Stdev: 3.744 % (2.4%)
Runs: 144.28791797501532 145.0982966053306 146.82306223822272 147.2377823799386 148.72607664704307 148.75686056645478 149.09373112057264 149.1611187966924 149.4160083606363 150.34444067674437 150.63267613542737 150.94580604137283 150.98713813238876 151.21695824200927 151.523397997198 151.53712184909858 151.6144305504685 151.91862614271326 151.94737628144514 152.0888867616337 152.39202601554203 152.51931735081072 152.594055808626 152.78506521793915 152.91311614985554 152.9563280866016 153.208061202535 153.76111701954832 153.76734490146484 153.78321632075316 154.39769396919812 154.53827832034497 154.88818600291322 155.12255677822435 155.13968729902376 155.1891455923504 155.22393743071927 155.24694547287137 155.3826960758599 155.74128461387278 156.236417050872 156.36282713386598 156.64530977759188 156.6736606221398 156.82614411399308 157.06711661419163 157.20694782618554 157.48089988462485 157.89163747314757 158.36614225379012 158.40338942401456 158.80142094142207 158.83414942114268 158.8919468425792 158.95596993672316 159.6361179209859 161.68795655674182
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

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
Open search router TTI (RAM) Baseline
Mean: 397.851 MB
Stdev: 4.378 MB (1.1%)
Runs: 386.9640625 389.29375 391.34453125 391.43125 391.5421875 392.37734375 392.7765625 393.0240885416667 393.4328125 393.765625 393.97421875 394.1770833333333 394.3561197916667 395.0810546875 395.271875 395.3990885416667 395.5171875 395.6109375 395.90234375 396.150390625 396.2063802083333 396.818359375 397.03203125 397.1979166666667 397.234375 397.5611979166667 397.590625 397.60625 397.73125 397.803125 397.8971354166667 397.990625 398.48046875 398.54609375 398.861328125 398.88671875 399.06796875 399.076171875 400.18515625 400.2955729166667 400.4361979166667 400.51953125 400.89375 401.0755208333333 401.27265625 401.76953125 402.0149739583333 402.11484375 402.59140625 403.6692708333333 404.1529947916667 404.1705729166667 404.4908854166667 404.503125 406.6171875 409.88671875

Current
Mean: 395.605 MB
Stdev: 5.453 MB (1.4%)
Runs: 382.66796875 386.0109375 386.3625 386.48984375 386.61796875 387.81484375 388.7765625 389.28671875 389.5390625 389.55234375 389.62578125 389.76796875 390.96015625 391.2828125 391.44296875 391.53359375 392.759375 392.78125 392.92421875 393.3427734375 393.43671875 393.5520833333333 393.7649739583333 394.17109375 394.3921875 394.619140625 394.8296875 395.5221354166667 395.5859375 396.021875 396.2018229166667 396.2796875 396.975 397.0208333333333 397.3912760416667 397.4811197916667 397.87578125 398.0494791666667 398.2140625 398.528125 398.6984375 398.74765625 399.0345052083333 399.11328125 399.41796875 399.42265625 399.9388020833333 400.73828125 400.859375 401.80078125 401.828125 402.3430989583333 402.5221354166667 402.6321614583333 402.98125 404.1671875 405.1067708333333 405.753125 406.13515625

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (6/10)

Meaningless Changes To Duration (5/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
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: 26.925 %
Stdev: 1.720 % (6.4%)
Runs: 23.1 23.6 24 24.2 24.2 24.3 24.5 24.6 24.8 24.9 25.1 25.4 25.5 25.6 25.6 25.6 25.7 25.9 25.9 26.2 26.2 26.2 26.2 26.3 26.3 26.6 27 27.2 27.3 27.3 27.4 27.4 27.5 27.5 27.6 27.6 27.7 27.7 27.8 27.8 27.9 27.9 28 28.1 28.3 28.3 28.6 28.7 28.8 28.8 28.8 29 29.1 29.2 29.2 29.3 29.6 29.8 29.9

Current
Mean: 26.865 %
Stdev: 1.870 % (7.0%)
Runs: 22.7 23.2 23.6 23.6 24.3 24.7 25 25.1 25.1 25.1 25.1 25.4 25.4 25.5 25.5 25.6 25.6 25.8 25.8 25.9 25.9 26 26 26.1 26.2 26.3 26.4 26.5 26.5 26.6 26.6 26.6 26.9 26.9 26.9 27.1 27.2 27.4 27.4 27.5 27.5 27.9 27.9 28 28.2 28.2 28.8 28.9 29 29.1 29.2 29.3 29.3 29.4 29.4 29.6 29.8 29.9 30.7 30.8
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: 503.071 ms
Stdev: 35.527 ms (7.1%)
Runs: 426.52315300004557 430.74849399970844 430.7728679999709 431.9364020000212 435.6956380000338 437.6936440002173 445.8566079996526 451.94262699969113 452.6247560000047 454.17679900024086 460.3941249996424 466.0640870006755 469.4146729996428 477.91434699948877 479.637043999508 480.48539199959487 480.4999590003863 483.81538899987936 483.956706000492 484.2536629997194 491.1652020001784 495.72359200008214 497.55090299993753 498.86690300051123 502.181925999932 506.26334699988365 521.8707680003718 522.668904999271 522.8487550001591 523.3190099997446 523.4707439998165 523.6289069997147 523.6944169998169 523.753866000101 524.1663419995457 524.8787839999422 525.5366209996864 525.6977540003136 525.8076990004629 525.8861090000719 525.9428719999269 526.3146159993485 526.3199879992753 527.5687259994447 528.744547999464 529.6362709999084 531.5195319997147 532.6167809991166 532.894491000101 533.9310709992424 535.0396730005741 535.1405849996954 536.7946780007333 536.9841720005497 537.3947760006413 537.9045819994062 539.1436769999564 542.0998539999127 542.296590000391 552.6055499995127

Current
Mean: 503.316 ms
Stdev: 36.997 ms (7.4%)
Runs: 419.8194580003619 431.6851809998043 434.1498620007187 436.04280599951744 439.95817099977285 443.4382330002263 445.32816600007936 449.59851100016385 452.7287600003183 453.38037199992687 455.67671700008214 457.54349800013006 465.9552819998935 468.25382499955595 473.0855719996616 473.41674800030887 475.9937749998644 478.5938320001587 485.08207200001925 485.2063810005784 493.71240200009197 494.3138840002939 497.3526209993288 499.5389809999615 502.4392499998212 518.4836029997095 519.0965579999611 520.9978839997202 521.8994150003418 523.4361990001053 523.6979980003089 523.7755939997733 523.8803710006177 524.0217289999127 524.2207850003615 524.3820799998939 524.4977619992569 525.0948080001399 525.3375660004094 525.9803470000625 525.9868169995025 526.3214519992471 526.5153000000864 527.1785890003666 529.3671469995752 529.4444579994306 532.6701260004193 532.7783619994298 533.7044679997489 533.718954000622 535.3435880001634 536.1636150004342 537.6180829992518 537.6328130001202 539.402710000053 540.593913000077 541.0308030005544 548.0773520004004 553.3719480000436 570.9447840005159

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (7/10)

Meaningless Changes To Duration (6/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
Report typing (CPU) Baseline
Mean: 100.452 %
Stdev: 5.121 % (5.1%)
Runs: 90.20623961863278 91.41631761203134 92.0772325626595 92.17995630090938 93.89464742947949 94.40967083233984 94.60704026107094 94.63399313326701 94.68984074643853 95.14867842254243 95.33349470642938 95.83048168848713 96.19854838691668 96.22240561677162 96.25297050144277 96.82740884313156 97.10758094471599 97.296846755729 97.43300640369515 97.45655912281235 97.4741577127205 97.53463549430752 97.82203145359237 98.06275212221108 98.8065917381921 99.08239689480092 99.36510112470057 99.49915331053141 99.69174356398328 99.82556040705569 99.98720127691863 100.22640994003567 100.43507889863007 100.94456830930721 101.00677778443429 102.1177712521851 102.12208645581627 102.16449536594209 102.98801729399872 103.22520997649767 103.53071913188782 103.57071409554874 103.70745366227669 104.12158832097253 104.12820702768586 105.22189983717335 105.67593735978053 106.05818590332196 106.06421528375087 106.45839615031554 107.08509299799577 107.18570865514097 107.71072890109333 107.96003209173318 108.63322890973373 108.63834952737129 109.60477529988069 109.82689476485687 109.8810774353592

Current
Mean: 100.344 %
Stdev: 5.087 % (5.1%)
Runs: 87.19031005765305 89.30845691708265 91.0560949525182 94.26733311763417 94.66380774217549 95.05325929740859 95.53518646485782 95.57119089792685 95.623274430313 96.36940496135118 96.46469564566378 96.46905678674533 96.57225972977494 96.59975625852798 96.64297199954443 96.67705804706307 96.98118476976798 97.14656580792627 97.19954840234975 97.23942584213584 97.3217756092053 97.4226664470024 97.76030297299756 98.04844263209843 98.32188137157918 98.42015625675745 98.555632230221 98.86814471004256 99.44353724115352 99.61970537640629 99.6455777467232 99.68144375806447 100.46140851160021 101.1545422877164 101.45702274993634 101.98540891487824 102.08575846619841 102.20233946820815 102.33893451817609 102.47371299010574 103.2300168965571 103.3072319100451 103.43340729612014 103.64666314215215 103.80682281418653 104.27546279143144 104.39559007307625 104.56370140588336 104.9144647558564 105.38600525949909 105.44563408804053 105.95330883069548 106.18961027053875 106.25481622924895 107.1541568799455 107.42694150953434 108.5084277655879 108.78366914573733 108.98083923764997 115.10155665589926
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

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
Report typing (RAM) Baseline
Mean: 465.523 MB
Stdev: 6.428 MB (1.4%)
Runs: 453.8383556547619 455.4048108552632 455.41426809210526 456.20632102272725 456.314453125 457.3203125 457.66921164772725 458.93768601190476 459.0205592105263 459.0581825657895 459.1715198863636 459.7560546875 460.1487926136364 460.25071022727275 460.7529296875 461.27076480263156 461.37961647727275 461.62027138157896 461.64453125 462.57236842105266 462.6947265625 462.884375 462.9749177631579 463.4371448863636 463.6311677631579 463.8536086309524 464.2399259868421 464.4516858552632 464.6099917763158 465.0337171052632 465.1879111842105 465.6846217105263 465.7880345394737 466.13984375 466.15457589285717 466.244921875 466.42557565789474 466.5369318181818 467.0152138157895 467.07741477272725 467.372265625 467.77006392045456 468.2775213068182 469.7599609375 469.9253700657895 470.488671875 470.54769736842104 470.57886904761904 472.266796875 472.277734375 472.49794407894734 472.9469572368421 474.66238839285717 475.1716796875 475.9123046875 476.25863486842104 479.188671875 479.76747532894734 482.38715277777777

Current
Mean: 464.835 MB
Stdev: 4.907 MB (1.1%)
Runs: 454.43022017045456 455.54276315789474 455.8941592261905 456.21999289772725 456.9368832236842 457.86328125 457.9241832386364 460.26480263157896 460.34609375 460.3774671052632 460.6683799342105 460.873828125 461.74293154761904 462.2438322368421 462.52269345238096 462.6904296875 462.76171875 462.8603050595238 463.183984375 463.38203125 463.3924851190476 463.4283203125 463.5680509868421 463.6178042763158 463.7808948863636 463.82105654761904 463.958984375 464.1494654605263 464.2825520833333 464.5433799342105 464.58309659090907 464.8275082236842 464.8342927631579 465.2046130952381 465.6168323863636 465.66015625 465.9436677631579 466.6134765625 466.6724330357143 466.8109375 466.9330078125 467.6142113095238 467.73384232954544 467.8856907894737 468.63692434210526 468.72637648809524 469.0096726190476 470.10855263157896 470.56960227272725 470.60234375 471.2594572368421 471.41920230263156 472.51295230263156 472.8603515625 473.83717105263156 474.9625 476.8794921875
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

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (8/10)

Meaningless Changes To Duration (7/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
Report typing (CPU/UI) Baseline
Mean: 22.078 %
Stdev: 1.233 % (5.6%)
Runs: 19.7 19.9 20.1 20.2 20.3 20.4 20.4 20.4 20.5 20.6 20.6 20.6 20.7 21 21.1 21.1 21.1 21.3 21.3 21.4 21.4 21.4 21.7 21.8 21.8 21.8 21.8 22 22 22.1 22.2 22.3 22.4 22.4 22.5 22.6 22.6 22.8 22.8 23 23 23.3 23.3 23.3 23.4 23.4 23.4 23.4 23.4 23.5 23.5 23.5 23.6 23.6 23.6 23.7 23.7 23.8 24.1

Current
Mean: 21.939 %
Stdev: 1.120 % (5.1%)
Runs: 19.3 19.6 19.6 19.9 19.9 20 20.2 20.3 20.4 20.7 21 21.1 21.1 21.1 21.2 21.2 21.4 21.4 21.6 21.6 21.6 21.6 21.7 21.8 22 22.1 22.1 22.1 22.2 22.2 22.3 22.3 22.3 22.3 22.3 22.3 22.4 22.5 22.6 22.6 22.6 22.7 22.8 22.8 22.8 22.9 22.9 22.9 22.9 23 23 23 23.1 23.3 23.3 23.5 23.6 23.6 23.8
Chat opening Chat TTI Baseline
Mean: 810.408 ms
Stdev: 39.021 ms (4.8%)
Runs: 717.281697999686 737.4552820008248 737.8521730005741 738.734538000077 741.1285809995607 749.4950769999996 762.2621260005981 766.3745529996231 771.850056999363 776.1048990003765 777.3334959996864 777.6614990001544 777.7772220000625 778.3040769994259 783.172079000622 783.1941729998216 783.2811689991504 788.8903810000047 791.1269950000569 791.6695969998837 792.0622560000047 794.6662200000137 796.035074999556 797.4506430001929 799.275391000323 802.3822440002114 804.9776209993288 808.4951989995316 814.2429609997198 821.5817059995607 825.3508310001343 825.8695069998503 826.1764319995418 826.5239670006558 826.6703699994832 827.5624190000817 836.8428149996325 837.1549889994785 839.8022870002314 841.2422280004248 842.9361579995602 845.4628500007093 845.9772549998015 847.9474700000137 849.168578999117 850.9995529996231 851.4526370000094 852.4311929997057 853.076132000424 853.6463220007718 854.4779059998691 854.5225430000573 857.2388100000098 860.6168209994212 861.4104819996282 862.4180509997532 874.1307789999992

Current
Mean: 809.302 ms
Stdev: 42.562 ms (5.3%)
Runs: 667.6767989993095 749.0477299997583 749.0841879993677 750.4241539994255 752.0882569998503 759.2374679995701 759.7053220001981 759.7279059998691 760.4652510005981 762.3603929998353 767.9460859997198 771.4326990004629 771.8765059998259 771.9921059999615 774.3668630002066 777.0382900005206 777.8983159996569 784.081949999556 785.8291830001399 788.3095300002024 800.0044360002503 802.8248290000483 805.9086109995842 809.9746510004625 810.3175050001591 810.894612999633 811.1918949997053 813.8122149994597 820.2362469993532 821.4551200000569 821.5421150000766 822.2398690003902 825.1892499998212 827.5046790000051 827.609416000545 831.7423909995705 836.0806889999658 836.3356530005112 837.324421999976 839.0448409998789 840.7170009994879 841.5676269996911 842.98283000011 845.0288499994203 845.4016519999132 849.291137999855 854.3027349999174 855.075847000815 856.0231530005112 857.3065189998597 863.2983410004526 867.5902509996668 877.0349930003285 879.2126059997827 884.9508059993386
Chat opening (CPU) Baseline
Mean: 167.098 %
Stdev: 3.614 % (2.2%)
Runs: 158.60467956432282 159.67485048396293 160.28463655709646 160.894251546672 161.03890976092777 161.34017564240355 161.6880276577591 161.88347755649184 162.06093302992124 163.47721788896868 163.7137655598125 164.0541770886601 164.3426893424814 164.91506740741784 165.43956873958516 165.57025110689514 165.61957917158952 165.74150918736032 165.80917723547424 166.05102928254425 166.12966109032683 166.15006521749143 166.50511548910916 166.6250949396579 166.94126386088377 167.15174560491803 167.20632616937834 167.26249057921962 167.4454813158435 167.62282586104806 167.6796760537584 167.71178542051678 167.736993396408 167.77548428365714 167.86488494994217 167.949633228293 168.0738739652179 168.47123082213966 168.8324087744171 169.0610375603492 169.28430530528843 169.30578427350744 169.54177981835068 169.6811329267704 169.68339202596022 170.45815675216025 170.5789778283272 170.5972882002842 170.82224429374065 170.96538434662693 171.1028952081301 171.49258449848713 171.56508135704632 171.6138938426807 171.6375139661489 172.81987498199436 173.475300449494 174.64148289738984

Current
Mean: 167.720 %
Stdev: 4.473 % (2.7%)
Runs: 157.57226683529757 157.67340956431516 158.1440715173478 159.73501117138767 160.20496085009185 161.35644095723802 162.67960556317794 162.6815056815295 162.91422591807228 163.306388542296 163.3678788607992 164.20303659800072 164.34280568617464 164.57206389588666 164.9484664105988 165.05921057058293 165.09634862251391 165.17266549234088 165.56281507286454 166.0082675814415 166.6986215363111 166.75100898190618 167.29389673001978 167.40551901464144 167.51241506131888 167.52639023800353 167.56850797698166 168.05865750592153 168.14755389039084 168.15013117953893 168.44654236461244 168.6757226729924 168.74674286605517 168.8342116233835 169.28266618808834 169.65140575001135 169.6872167120561 169.69558400839466 169.8548388888988 169.92284775581 169.97457757543546 170.03697941279356 170.4593250118528 170.53069435921907 170.57494673020625 170.71845851904814 170.95297750654214 171.05118498592816 171.06213402889313 171.0813514681413 171.24279799125776 171.60937883044303 171.63944077597327 171.95228669637999 173.01267386385746 174.45890568402803 176.48374210756305 177.7144459004787 178.42906096811123
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

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

Copy link
Contributor

github-actions bot commented May 1, 2025

Performance Comparison Report 📊 (9/10)

Meaningless Changes To Duration (8/9)

Show entries
Name Duration
App start time nativeLaunch 25.862 ms → 28.034 ms (+2.172 ms, +8.4%)
App start time appCreation 72.400 ms → 74.220 ms (+1.820 ms, +2.5%)
App start time appCreationEnd_To_contentAppeared 546.917 ms → 540.133 ms (-6.783 ms, -1.2%)
App start time nativeLaunchEnd_To_appCreationStart 88.667 ms → 87.083 ms (-1.583 ms, -1.8%)
App start time runJsBundle 346.050 ms → 342.339 ms (-3.711 ms, -1.1%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +4.7%)
App start time (CPU) 158.556 % → 158.743 % (+0.186 %, ±0.0%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 361.904 MB → 364.356 MB (+2.452 MB, +0.7%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 31.452 % → 30.495 % (-0.957 %, -3.0%)
Open search router TTI Load Search Options 143.366 ms → 146.459 ms (+3.093 ms, +2.2%)
Open search router TTI Open Search Router TTI 1227.514 ms → 1246.135 ms (+18.621 ms, +1.5%)
Open search router TTI (CPU) 153.461 % → 153.700 % (+0.238 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 397.851 MB → 395.605 MB (-2.246 MB, -0.6%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.925 % → 26.865 % (-0.060 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 503.071 ms → 503.316 ms (+0.245 ms, ±0.0%)
Report typing (CPU) 100.452 % → 100.344 % (-0.108 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 465.523 MB → 464.835 MB (-0.688 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 22.078 % → 21.939 % (-0.139 %, -0.6%)
Chat opening Chat TTI 810.408 ms → 809.302 ms (-1.106 ms, ±0.0%)
Chat opening (CPU) 167.098 % → 167.720 % (+0.623 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 391.016 MB → 391.552 MB (+0.537 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 32.898 % → 33.857 % (+0.959 %, +2.9%)
Money request - Open Manual Tracking 146.921 ms → 147.745 ms (+0.824 ms, +0.6%)
Money request - Open Contacts 228.025 ms → 232.533 ms (+4.509 ms, +2.0%)
Money request (CPU) 180.587 % → 182.024 % (+1.437 %, +0.8%)
Money request (FPS) 58.717 FPS → 58.864 FPS (+0.146 FPS, ±0.0%)
Money request (RAM) 449.616 MB → 453.098 MB (+3.483 MB, +0.8%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.564 % → 44.293 % (+0.729 %, +1.7%)
Money request - Open Create 145.940 ms → 145.999 ms (+0.059 ms, ±0.0%)
Show details
Name Duration
Chat opening (RAM) Baseline
Mean: 391.016 MB
Stdev: 5.659 MB (1.4%)
Runs: 380.92421875 382.028125 382.10546875 382.240625 382.565625 382.79609375 382.95234375 382.97109375 384.08359375 385.1609375 385.2625 386.259375 386.58046875 386.9814453125 387.15625 387.16953125 387.32421875 387.51015625 387.6875 387.88203125 387.9359375 388.48515625 388.60078125 388.853515625 388.99296875 389.56796875 389.7765625 389.78828125 389.92265625 390.115625 390.60546875 390.9546875 390.9873046875 391.22109375 391.30390625 391.974609375 392.4171875 393.2453125 393.45625 393.46484375 394.01484375 394.1828125 394.3609375 394.44921875 394.54921875 394.63671875 394.775390625 395.7625 396.85546875 398.94296875 399.046875 399.19140625 399.28125 399.29765625 399.440625 399.51171875 399.53515625 399.7046875 401.11640625 402.9778645833333

Current
Mean: 391.552 MB
Stdev: 5.701 MB (1.5%)
Runs: 378.517578125 379.41328125 380.306640625 381.6609375 382.72890625 383.0640625 383.8625 384.34765625 384.6796875 384.76484375 387.0341796875 387.040625 387.1669921875 387.1765625 387.26484375 387.403125 387.51796875 387.53125 388.75 388.77578125 389.103125 389.2783203125 389.82421875 389.87421875 390.07109375 390.46328125 390.61171875 391.3375 392.040625 392.115625 392.83046875 393.046875 393.1 393.17578125 393.8109375 394.3046875 395.15625 395.20078125 395.27109375 395.4875 395.6234375 396.2180989583333 396.29453125 396.58671875 396.63828125 396.63984375 396.68046875 396.85625 397.0109375 397.334375 397.675 397.9890625 398.23984375 398.28515625 398.3265625 398.6875 400.0234375 400.32578125 401.05
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: 32.898 %
Stdev: 1.676 % (5.1%)
Runs: 29.2 29.2 29.7 29.8 30 30.4 30.4 31.2 31.2 31.3 31.4 31.6 31.8 32 32 32.2 32.2 32.2 32.3 32.3 32.3 32.3 32.6 32.7 32.9 32.9 33 33.2 33.2 33.2 33.2 33.2 33.4 33.6 33.6 33.6 33.7 33.8 33.9 34 34 34 34 34.2 34.2 34.3 34.4 34.4 34.6 34.6 34.7 34.8 34.9 34.9 36.2 37.4

Current
Mean: 33.857 %
Stdev: 2.179 % (6.4%)
Runs: 28.6 28.9 28.9 29.3 30 31.1 31.2 31.2 31.6 31.9 32.1 32.4 32.5 32.6 32.7 32.7 32.8 32.8 32.8 33 33.4 33.4 33.5 33.5 33.9 33.9 33.9 33.9 34 34 34.2 34.2 34.3 34.3 34.6 34.6 34.7 34.8 34.8 34.9 35.2 35.2 35.2 35.2 35.4 35.9 36 36.1 36.3 36.3 36.4 36.5 36.5 36.7 36.8 36.8 37 38.3
Money request - Open Manual Tracking Baseline
Mean: 146.921 ms
Stdev: 13.812 ms (9.4%)
Runs: 121.40539600048214 123.90006600040942 124.5608719997108 125.60062600020319 127.88439900055528 128.28816700074822 129.9198809992522 130.34765600040555 132.36132799927145 132.80114699993283 132.85282399971038 133.37552899960428 134.0384110007435 134.08060699980706 135.5016689999029 136.45088700018823 137.2891030004248 140.1934810001403 140.2893880000338 140.37821500003338 140.43542499933392 142.03173799999058 142.21488399989903 142.71508800052106 142.96801800001413 143.41198799945414 144.06579599995166 146.20853700023144 146.50549300014973 146.838175999932 147.37105299998075 147.40193699952215 148.00557500030845 148.63749200012535 150.52433299925178 150.85668999981135 151.4320480003953 152.4513339996338 152.51098699960858 152.61051500029862 152.6330570001155 152.94807900022715 153.73852599970996 153.78491199947894 154.6918939994648 156.18347200006247 159.34370899945498 159.5560710001737 160.04097499977797 160.57360799983144 162.29072999954224 162.95768200047314 163.81522599980235 166.2083739992231 167.27734400052577 168.19913700036705 169.83829700015485 179.02571700047702 184.50008099991828

Current
Mean: 147.745 ms
Stdev: 13.326 ms (9.0%)
Runs: 128.27250199951231 128.9200029997155 129.18302399944514 129.66320800036192 130.2047530002892 130.91092999931425 131.993978000246 132.42708399984986 133.76326500065625 135.05045599956065 136.42346199974418 136.79248099960387 136.92504900041968 137.3738199993968 137.91442900057882 138.2572020003572 138.86169400066137 139.0935469996184 139.49503600038588 139.55017099995166 140.6470539998263 142.0458980007097 142.06115700025111 143.42232300061733 143.49104800075293 143.71321599930525 144.37886600010097 144.91202799975872 145.18265799991786 145.66206900030375 145.76224799919873 145.93798799999058 145.9832760002464 146.5168460002169 147.0993649996817 147.36547800060362 148.26472999993712 149.7881669998169 150.21341999992728 152.51151499990374 152.56193100009114 153.03483100049198 155.37886600010097 155.54329399950802 156.67590299993753 157.78515600040555 158.0705159995705 158.30452399980277 160.7256260002032 161.59838899970055 163.32775900047272 165.12451200000942 165.55900100059807 166.1347250007093 166.4282629992813 169.79935699980706 177.8773199999705 180.24666399974376 186.72245200071484

Copy link
Contributor

github-actions bot commented May 1, 2025

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

Copy link
Contributor

github-actions bot commented May 1, 2025

🚀 Deployed to staging by https://github.com/justinpersaud in version: 9.1.39-0 🚀

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

Copy link
Contributor

github-actions bot commented May 6, 2025

🚀 Deployed to production by https://github.com/yuwenmemon in version: 9.1.39-8 🚀

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

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