Skip to content

Add stricter filtering to task reports #60902

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 3 commits into from
May 8, 2025
Merged

Conversation

JS00001
Copy link
Contributor

@JS00001 JS00001 commented Apr 25, 2025

Explanation of Change

For future backend changes, we need to account for reports being returned that are not tasks. To fix this, we need to properly filter out non-tasks before manipulating/accessing data.

Fixed Issues

N/A

Tests

Verify that task search in the Reports page works as expected. Play around with different filters/task locations.

  • Verify that no errors appear in the JS console

Offline tests

N/A

QA Steps

Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • [[email protected]] 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

N/A

@JS00001 JS00001 self-assigned this Apr 25, 2025
@JS00001 JS00001 marked this pull request as ready for review April 25, 2025 15:31
@JS00001 JS00001 requested a review from a team as a code owner April 25, 2025 15:31
@melvin-bot melvin-bot bot requested review from inimaga and removed request for a team April 25, 2025 15:31
Copy link

melvin-bot bot commented Apr 25, 2025

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

@inimaga
Copy link
Contributor

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

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

Copy link
Contributor

@inimaga inimaga left a comment

Choose a reason for hiding this comment

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

LGTM 👌

@tgolen
Copy link
Contributor

tgolen commented Apr 29, 2025

Oop, you picked up a conflict.

@JS00001
Copy link
Contributor Author

JS00001 commented Apr 29, 2025

Tasks is reverted for time being, fixing some bugs then will finish this one

@JS00001 JS00001 changed the title Add stricter filtering to task reports [HOLD] Add stricter filtering to task reports Apr 29, 2025
@JS00001 JS00001 changed the title [HOLD] Add stricter filtering to task reports Add stricter filtering to task reports May 8, 2025
@JS00001 JS00001 merged commit c69b73d into main May 8, 2025
20 checks passed
@JS00001 JS00001 deleted the jsenyitko-better-task-checking branch May 8, 2025 12:17
@OSBotify
Copy link
Contributor

OSBotify commented May 8, 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 8, 2025
Copy link
Contributor

github-actions bot commented May 8, 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 928.276 ms → 1036.314 ms (+108.039 ms, +11.6%) 🔴
App start time TTI 1610.742 ms → 1721.148 ms (+110.406 ms, +6.9%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 928.276 ms
Stdev: 252.254 ms (27.2%)
Runs: 597.4008389990777 612.1340299993753 616.2626579999924 631.5571860000491 642.4319119993597 649.9492930006236 653.7783499993384 655.5414460003376 667.6555579993874 671.6730780005455 672.4331490006298 672.8346280008554 673.2865050006658 677.2452470008284 685.1398249994963 689.7613149993122 691.6628280002624 695.1277690008283 700.629814999178 702.2147499993443 703.296385999769 712.2884119991213 726.0485599990934 729.4179919995368 729.7889200001955 730.4916270002723 734.9154540002346 738.5533949993551 747.415687000379 768.5687930006534 803.6404870003462 1039.2163699995726 1079.8841099999845 1095.4044100008905 1110.9605490006506 1111.6818109992892 1137.1298569999635 1139.5225469991565 1150.1195640005171 1151.4120380003005 1164.8242310006171 1166.0086920000613 1169.643485000357 1176.6164670009166 1176.9384269993752 1177.0508919991553 1198.1218040008098 1204.8306130003184 1205.8441010005772 1209.5063739996403 1209.549925999716 1214.70766299963 1217.8952459990978 1229.1220600008965 1237.170877000317 1243.7460479997098 1256.5689909998327 1260.2887309994549 1282.2955239992589 1297.3252319991589

Current
Mean: 1036.314 ms
Stdev: 235.635 ms (22.7%)
Runs: 635.6895209997892 638.4428889993578 661.1150289997458 663.6425289995968 668.4921889994293 672.5976270008832 676.4517340008169 678.7693089991808 682.5313360001892 686.4204450007528 693.4430919997394 697.6051649991423 699.3781610000879 709.5871489997953 718.6610010005534 720.5945720002055 725.4622189998627 732.9281670004129 1038.3304750006646 1039.2293289992958 1050.6520399991423 1078.2471069991589 1080.4855879992247 1089.567692000419 1121.4885520003736 1124.9037549998611 1138.0551820006222 1142.0545290000737 1144.880192000419 1162.0231279991567 1170.7869189996272 1171.9211389999837 1175.2699040006846 1177.3075450006872 1178.8216949999332 1186.8463679999113 1191.6958930008113 1192.2373690009117 1198.5412140004337 1201.7883449997753 1204.7815569993109 1205.8364509996027 1205.8371239993721 1206.4008670002222 1209.9958200007677 1218.6488710008562 1225.7049570009112 1226.0207310002297 1227.6079280003905 1237.5603640004992 1238.6015719994903 1241.7520230002701 1246.8801649995148 1247.8766680005938 1249.267540000379 1267.5328909996897 1270.177332000807 1276.380284000188 1277.172825999558 1277.8823259994388
App start time TTI Baseline
Mean: 1610.742 ms
Stdev: 257.381 ms (16.0%)
Runs: 1225.4008389990777 1227.1340299993753 1274.6730780005455 1290.6628280002624 1293.4319119993597 1294.5571860000491 1295.7783499993384 1303.296385999769 1317.8346280008554 1357.6555579993874 1362.1277690008283 1365.4331490006298 1366.4179919995368 1379.1398249994963 1379.2865050006658 1395.629814999178 1404.2147499993443 1406.9492930006236 1409.7889200001955 1411.4916270002723 1415.5414460003376 1416.2452470008284 1417.2626579999924 1420.553394999355 1435.9154540002346 1439.415687000379 1440.7613149993122 1444.6404870003462 1448.0485599990934 1448.2884119991213 1459.5687930006534 1663.8841099999845 1707.4044100008905 1759.9605490006506 1770.6818109992892 1776.2163699995726 1784.1298569999635 1802.1195640005171 1811.4120380003005 1826.8242310006171 1830.5225469991565 1843.0508919991553 1851.1218040008098 1854.6164670009166 1857.0086920000613 1866.643485000357 1867.70766299963 1888.8441010005772 1904.8306130003184 1917.5689909998327 1921.8952459990978 1922.1220600008965 1924.549925999716 1924.9384269993752 1941.7460479997098 1950.2955239992589 1960.5063739996403 1976.170877000317 1986.3252319991589 2004.2887309994549

Current
Mean: 1721.148 ms
Stdev: 245.805 ms (14.3%)
Runs: 1294.4921889994293 1300.1150289997458 1302.4204450007528 1305.4428889993578 1307.7693089991808 1336.5313360001892 1352.5976270008832 1353.4622189998627 1355.6425289995968 1375.6895209997892 1380.3781610000879 1380.6051649991423 1386.4430919997394 1411.451734000817 1411.5871489997953 1423.928167000413 1432.6610010005534 1447.5945720002055 1690.2293289992958 1697.3304750006646 1699.2471069991589 1733.4855879992247 1768.9037549998611 1769.0545290000737 1778.4885520003736 1784.567692000419 1791.880192000419 1793.0231279991567 1803.6520399991423 1809.0551820006222 1814.7869189996272 1838.8463679999113 1844.6488710008562 1854.6958930008113 1857.9211389999837 1873.7883449997753 1877.3075450006872 1892.8371239993721 1895.4008670002222 1899.2699040006846 1902.2373690009117 1903.8216949999332 1912.0207310002297 1914.5412140004337 1914.6079280003905 1919.7049570009112 1922.9958200007677 1933.8364509996027 1936.6015719994903 1947.8766680005938 1948.5603640004992 1949.267540000379 1956.7815569993109 1963.380284000188 1968.177332000807 1971.7520230002701 1984.8801649995148 1986.172825999558 1995.5328909996897 2008.8823259994388

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (10/10)

Meaningless Changes To Duration (9/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
Money request - Open Contacts Baseline
Mean: 224.424 ms
Stdev: 16.533 ms (7.4%)
Runs: 201.2457280009985 202.05716999992728 204.66316800191998 204.68074600026011 204.78767900168896 205.00813799723983 205.21097800135612 206.21879100054502 206.587401997298 207.2231849990785 207.2315669991076 207.50919600203633 207.57173600047827 208.733764000237 208.81050600111485 209.56290699914098 211.29634600132704 214.7215580008924 214.75610399991274 214.8299150019884 214.9728599973023 215.4043370001018 216.08614100143313 216.42285099998116 216.6226399987936 219.088012997061 219.6425379998982 220.28942900151014 221.2958579994738 222.1083579994738 222.86551899835467 225.899901997298 226.38993300125003 227.32625300064683 229.11014800146222 229.64229399710894 230.15779599919915 230.38301600143313 230.8169349990785 231.39733900129795 231.71297200024128 231.89949600026011 232.04683399945498 232.42484599724412 233.6424160003662 236.16865999996662 238.58410600200295 238.70011400058866 243.73425300046802 244.0097250007093 244.24682699888945 247.99507699906826 249.88069700077176 251.80835000053048 251.8517250008881 257.3324379995465 263.8001300022006 268.13627099990845

Current
Mean: 222.090 ms
Stdev: 16.181 ms (7.3%)
Runs: 197.17740799859166 197.42655399814248 198.08451399952173 200.37801099941134 201.1596269980073 201.95682699978352 202.35087100043893 203.64151999726892 203.91284200176597 204.67972799763083 204.9124349988997 206.5290119983256 207.35933500155807 208.55814599990845 208.76920599862933 209.0954999998212 210.24226899817586 210.61242699995637 210.74918600171804 212.2987879998982 212.78312199935317 216.0740150026977 216.45084699988365 217.65970900282264 217.96647100150585 218.0439039990306 218.50040699914098 219.79044600203633 221.740112002939 221.84488900005817 222.42264799773693 224.4239500015974 224.7951259985566 224.8247069977224 225.8682049997151 226.27758799865842 227.3216559998691 227.66975999996066 228.21191399917006 228.56599999964237 229.70564799755812 230.28711000084877 230.62666800245643 231.1387120001018 231.42960700020194 231.8490810021758 231.9045000001788 234.37406399846077 236.65250699967146 237.03369100019336 242.0283200033009 247.8037919998169 248.9603269994259 249.10339399799705 251.85078999772668 258.1509199999273 258.3159999996424 258.8674720004201
Money request (CPU) Baseline
Mean: 178.856 %
Stdev: 4.005 % (2.2%)
Runs: 170.9460253220793 170.9474207452204 171.60003494824568 172.269750076861 173.60363308040883 173.77343025365806 174.8929366303204 175.14260618805824 175.1715555768399 175.36058226780366 175.36237664592176 175.62370376038453 175.62799711394615 175.74856640744912 175.83276969165954 176.1709193149213 176.637250417577 176.64516852658943 176.78171839334004 177.36804222525979 177.44233361236383 177.56447720116975 177.64496520518347 177.8420156377672 177.8712930664044 177.91357677858645 178.00342379873504 178.44239509787792 178.94510366385055 178.996354785935 179.00333548791235 179.20866973850903 179.46851637629595 179.56520236202493 179.56910014279222 179.6270294619781 179.92695853462018 180.02201498099984 180.18737392241135 180.2102704837372 180.33654470673022 180.36937287571516 180.6165273499 180.8182782628198 181.5262940254947 181.61754895307703 182.4297039875164 183.77631705928255 183.8091280319494 183.89116927767085 184.3177405880533 184.5202822655528 185.49022956136272 186.07534509100932 186.53040664144675 187.7268750719324 187.9690361096539

Current
Mean: 178.712 %
Stdev: 3.998 % (2.2%)
Runs: 169.5105452818742 171.07650204702486 172.07962783514358 172.19264557066515 172.73693183526035 172.76406294335803 174.1197073591312 174.1502738519946 174.51248513416053 174.97968850875583 175.06982120468572 175.24015143587303 175.3685030879475 175.43383806537057 175.64728468925574 176.40467089835937 176.53222182831004 176.56908876504897 177.0405081645484 177.60333853198506 177.7016688333306 178.01857586809933 178.05548630966496 178.14617325787566 178.25066749419997 178.30360504910456 178.3354154074615 178.71872659192806 178.77715352920077 178.85451722404397 179.7545770535956 179.85103061067858 180.08246939964167 180.16275708934302 180.23572728187654 180.26509896030979 180.44819680371123 180.6474171080563 180.6594620573609 180.66079725189118 180.90770938862735 180.94851162104766 181.15486368015118 181.23022821744092 181.49372975911845 181.49886411500245 181.60913234324263 181.71585717569283 182.93108380162977 184.01403024017668 184.35095273328375 184.9138592184926 185.611416532025 186.79957957942605 186.8713181400911 186.88542776302543
Money request (FPS) Baseline
Mean: 58.946 FPS
Stdev: 0.867 FPS (1.5%)
Runs: 56.65932447478919 57.15919392336649 57.25459730642327 57.421609740525 57.45076904954273 57.59588341399958 57.77407846634032 57.864517868121894 57.883034155200455 58.09226016248654 58.270917800845965 58.294140415484804 58.377523165894495 58.440236101997584 58.53873226644103 58.543055313494776 58.575882454942466 58.626708891288544 58.64598833924991 58.649443675517645 58.675114030600184 58.68534655098592 58.76899570040615 58.79596162321481 58.844040394482505 58.85050769665464 58.86054074071073 58.94113529052966 58.97284391523324 59.00814283845046 59.0203560069296 59.072645050557924 59.09988272619765 59.13804174312101 59.164768446427864 59.177741877300186 59.24392377791139 59.27402273749691 59.56418029828785 59.56920716869512 59.64595001081976 59.76811906074925 59.77519618448696 59.941344115576484 59.94263785546657 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 58.904 FPS
Stdev: 0.995 FPS (1.7%)
Runs: 56.95330426523999 57.05521124775387 57.06916997786476 57.20521002623309 57.22732130809211 57.46337688270131 57.47575335416928 57.55782589003855 57.59992395937793 57.707568790619426 57.893952056421334 58.005760647363445 58.01655955648077 58.04824578133442 58.05447735201312 58.058666082875675 58.11024737018353 58.16375153840034 58.178462507705326 58.27291510413129 58.333704890003254 58.36971618667772 58.5492807297468 58.60459992971858 58.729936492576996 58.742275169968785 59.00136111002451 59.00956311878633 59.01342135333338 59.07789257550722 59.08419911952785 59.13844774863498 59.18789476715308 59.307279647564876 59.41642947801502 59.42470027635966 59.47603036954656 59.5688875048488 59.61644816529752 59.839108287456284 59.88077809815269 59.91458979701432 59.920428437223926 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 463.281 MB
Stdev: 6.938 MB (1.5%)
Runs: 449.43896484375 450.0439453125 450.21728515625 452.02783203125 454.30615234375 455.14208984375 455.35379464285717 455.5478515625 455.822265625 455.90966796875 456.224609375 456.34765625 456.62744140625 458.37779017857144 458.44029017857144 458.7451171875 459.22265625 459.30636160714283 459.416015625 459.58705357142856 459.65736607142856 460.25439453125 460.84375 461.74365234375 461.77064732142856 462.2416294642857 462.37744140625 462.4736328125 462.703125 463.25892857142856 463.3482142857143 463.88895089285717 464.07254464285717 464.08482142857144 464.70424107142856 464.7455357142857 465.41796875 465.55810546875 465.58740234375 465.81808035714283 466.7310267857143 466.73193359375 466.95751953125 467.234375 467.26674107142856 468.6881510416667 469.3359375 469.64892578125 469.6748046875 469.99832589285717 470.54296875 472.25537109375 472.83154296875 472.9420572916667 473.06787109375 475.03683035714283 477.3678385416667 477.83154296875 478.7544642857143

Current
Mean: 460.494 MB
Stdev: 6.375 MB (1.4%)
Runs: 446.88504464285717 447.36762152777777 447.84486607142856 450.1494140625 450.736328125 451.76060267857144 451.96533203125 452.61328125 453.10888671875 453.2236328125 454.1669921875 455.04185267857144 456.3314732142857 456.57924107142856 456.61216517857144 457.29854910714283 457.39599609375 457.595703125 457.71707589285717 458.01513671875 458.4462890625 458.55747767857144 459.0595703125 459.29296875 459.32421875 459.48325892857144 459.4849330357143 459.69921875 460.36328125 460.5338541666667 461.10714285714283 461.45982142857144 462.2057291666667 462.2724609375 463.06640625 463.34151785714283 463.4580078125 464.03794642857144 464.26841517857144 464.2779017857143 464.51729910714283 465.03857421875 465.0864955357143 465.2099609375 465.3404017857143 465.6591796875 465.7646484375 465.91238839285717 466.70703125 467.3046875 469.115234375 469.4752604166667 469.5150669642857 470.4609375 470.52880859375 472.73486328125 473.62667410714283
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.566 %
Stdev: 1.630 % (3.7%)
Runs: 40.2 40.3 40.5 40.9 41.2 41.6 41.7 42 42.1 42.2 42.4 42.5 42.5 42.5 42.6 42.6 42.6 42.7 42.7 42.7 42.7 42.8 42.9 42.9 43.2 43.3 43.4 43.4 43.5 43.5 43.7 43.7 43.7 43.8 43.8 43.8 43.9 44 44.1 44.2 44.2 44.4 44.4 44.5 44.5 44.5 44.6 44.7 45.1 45.4 45.7 45.8 45.9 46.1 46.7 47.1 47.2 47.2

Current
Mean: 44.005 %
Stdev: 1.833 % (4.2%)
Runs: 41 41.3 41.4 41.6 41.7 41.8 41.8 41.9 42 42.1 42.4 42.5 42.5 42.6 42.8 42.8 42.9 42.9 42.9 42.9 43 43.1 43.1 43.1 43.2 43.3 43.4 43.5 43.5 43.6 43.7 43.8 43.9 44 44.2 44.3 44.3 44.3 44.4 44.6 44.6 44.7 44.8 45 45.1 45.5 45.5 45.5 45.6 46.1 46.4 46.7 47 47 47.1 47.6 47.7 48.1 48.2
Money request - Open Create Baseline
Mean: 141.091 ms
Stdev: 12.570 ms (8.9%)
Runs: 114.34501099959016 116.84281400218606 119.17862899973989 120.19376600161195 121.29239900037646 124.39514099806547 125.57751500234008 126.40494799986482 127.25105800107121 128.3773609995842 129.30163599923253 129.51851399987936 129.54475999996066 130.5194499976933 130.6392819993198 131.01330599933863 131.0946450009942 131.1115729995072 133.9083249978721 133.9246830008924 135.5178219974041 135.80208400264382 136.41369600221515 136.46329799667 137.18640200048685 137.69291200116277 138.11360700055957 140.30672200024128 140.56835900247097 140.9134529978037 142.20345100015402 142.62137800082564 142.63415499776602 144.1569820009172 144.54272400215268 144.69637100026011 144.96044900268316 146.90828500315547 147.05208400264382 147.08719800040126 147.5955400019884 148.38761400058866 149.76554399728775 149.85209199786186 150.56392399966717 151.86694400012493 152.6636150032282 153.18888400122523 153.2890619970858 153.96944199874997 155.25370299816132 156.9668379984796 158.73417199775577 158.77205399796367 159.0268149971962 159.1049399971962 160.38330100104213 160.88171400129795 162.42313600331545 162.52319300174713

Current
Mean: 143.056 ms
Stdev: 12.859 ms (9.0%)
Runs: 113.85730000212789 117.46651200205088 117.90873200073838 123.34379100054502 126.05436200276017 126.26745700091124 126.53120899945498 126.93843599781394 127.46232100203633 128.60815400257707 128.68408200144768 128.8835450001061 128.959188003093 129.43196599930525 132.62963800132275 134.25130300223827 134.60282399877906 135.94970700144768 136.38448100164533 138.43269800022244 140.26245100051165 140.75467899814248 141.13924200087786 141.22119100019336 141.5949299968779 141.6463629975915 141.77144400030375 141.78902200236917 141.83601899817586 142.37902899831533 142.61193899810314 144.1264650002122 144.2924400009215 144.87194900214672 145.15205899998546 145.16927099972963 146.52990700304508 147.2206629998982 148.07539900019765 149.33085199818015 151.33439199998975 152.0891920030117 152.2315680012107 152.4040529988706 152.54166600108147 154.15702399984002 154.7049150019884 154.85945599898696 155.0589599981904 155.80684399977326 156.7852380014956 158.3553880006075 160.42211899906397 160.63997399806976 160.99430299922824 161.4777429997921 162.06917399913073 163.2412919998169 164.58752400055528 165.187663000077

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (2/10)

Meaningless Changes To Duration (1/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 80.339 ms
Stdev: 11.469 ms (14.3%)
Runs: 63 63 63 63 66 68 68 69 70 71 71 71 71 72 72 72 72 72 72 73 73 75 75 75 77 77 78 78 78 79 79 80 80 80 80 81 81 81 81 82 83 84 84 85 87 87 88 93 93 94 94 97 98 99 100 100 105 107 110

Current
Mean: 82.500 ms
Stdev: 10.865 ms (13.2%)
Runs: 61 65 65 69 69 70 70 71 72 73 73 73 74 74 74 74 75 76 77 77 77 78 79 79 79 79 80 80 80 81 82 82 82 83 83 83 83 83 84 84 85 85 86 86 88 90 91 92 92 92 94 94 95 96 98 104 105 105 109 110
App start time nativeLaunch Baseline
Mean: 25.310 ms
Stdev: 3.573 ms (14.1%)
Runs: 21 21 22 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 24 24 24 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 26 26 26 26 26 27 27 28 28 29 29 29 29 30 31 33 33 34 35 35

Current
Mean: 24.947 ms
Stdev: 2.775 ms (11.1%)
Runs: 21 21 21 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 25 25 25 25 26 26 27 27 27 27 27 27 28 30 30 30 31 31 31 33
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 506.148 ms
Stdev: 27.746 ms (5.5%)
Runs: 447 453 454 455 465 471 471 472 473 479 483 484 489 490 491 494 496 499 499 499 503 503 504 505 506 508 508 508 508 510 512 513 513 513 514 514 514 514 516 517 518 519 519 525 532 532 535 549 550 553 555 556 560 562

Current
Mean: 506.167 ms
Stdev: 31.122 ms (6.1%)
Runs: 444 445 456 457 458 462 466 467 470 473 476 476 480 480 483 488 489 489 491 491 495 495 496 496 498 499 500 501 505 507 508 510 511 511 512 512 513 515 515 515 516 516 520 523 524 525 533 536 537 538 539 546 549 549 550 557 557 559 561 580
App start time runJsBundle Baseline
Mean: 318.949 ms
Stdev: 19.487 ms (6.1%)
Runs: 278 278 280 280 281 281 284 284 291 291 291 291 293 293 295 295 296 296 301 301 303 303 304 304 306 306 307 307 307 307 307 307 308 308 310 310 310 310 310 310 311 311 312 312 313 313 313 313 313 313 314 314 314 314 315 315 317 317 318 318 318 318 319 319 319 319 323 323 324 324 326 326 326 326 327 327 329 329 329 329 329 329 329 329 330 330 330 330 330 330 331 331 334 334 338 338 341 341 341 341 342 342 343 343 344 344 348 348 350 350 350 350 354 354 355 355 357 357

Current
Mean: 321.983 ms
Stdev: 18.632 ms (5.8%)
Runs: 276 276 281 281 290 290 296 296 297 297 301 301 302 302 302 302 303 303 303 303 304 304 305 305 306 306 307 307 308 308 308 308 310 310 313 313 315 315 315 315 315 315 316 316 317 317 317 317 318 318 319 319 320 320 321 321 322 322 322 322 322 322 323 323 324 324 324 324 325 325 326 326 328 328 328 328 329 329 330 330 333 333 333 333 333 333 333 333 334 334 336 336 336 336 339 339 340 340 340 340 340 340 340 340 341 341 346 346 347 347 352 352 354 354 355 355 377 377

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (3/10)

Meaningless Changes To Duration (2/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
App start time appCreation Baseline
Mean: 71.117 ms
Stdev: 9.808 ms (13.8%)
Runs: 56 57 57 58 59 59 59 60 60 60 61 61 61 61 62 63 63 63 65 65 66 67 67 67 68 68 69 69 69 70 70 70 71 72 73 73 73 74 74 74 75 76 76 76 77 78 81 81 81 82 82 83 84 84 85 87 89 91 92 93

Current
Mean: 70.567 ms
Stdev: 10.172 ms (14.4%)
Runs: 54 56 56 56 57 59 59 60 60 60 61 61 62 62 63 63 63 64 64 65 65 65 65 66 66 67 67 67 67 67 67 68 69 70 72 73 74 74 74 75 75 75 75 76 77 77 78 79 79 82 84 84 84 84 86 89 89 91 93 94
App start time regularAppStart Baseline
Mean: 0.021 ms
Stdev: 0.002 ms (10.2%)
Runs: 0.017253000289201736 0.01810699887573719 0.018187999725341797 0.018350999802350998 0.01839200034737587 0.01843300089240074 0.0185139998793602 0.018717998638749123 0.018758000805974007 0.018880000337958336 0.019164999946951866 0.01924700103700161 0.01924700103700161 0.019571999087929726 0.019652999937534332 0.019694000482559204 0.019857000559568405 0.019937999546527863 0.019937999546527863 0.019938001409173012 0.019938001409173012 0.02006000094115734 0.020100999623537064 0.020344998687505722 0.020384998992085457 0.020507998764514923 0.020547999069094658 0.0206300001591444 0.020670000463724136 0.020671000704169273 0.020791999995708466 0.021118000149726868 0.021199999377131462 0.021361999213695526 0.021524999290704727 0.021524999290704727 0.021524999290704727 0.02160699851810932 0.021769998595118523 0.021809998899698257 0.021810000762343407 0.022053999826312065 0.02213600091636181 0.022175999358296394 0.02250099927186966 0.02250100113451481 0.022988999262452126 0.023111999034881592 0.023438001051545143 0.024129001423716545 0.024454999715089798 0.02449600026011467 0.02486100047826767 0.026041999459266663 0.02628600038588047 0.026773998513817787

Current
Mean: 0.022 ms
Stdev: 0.003 ms (13.6%)
Runs: 0.017456000670790672 0.017944999039173126 0.018067000433802605 0.018067000433802605 0.018147999420762062 0.018635999411344528 0.01879899948835373 0.01920599862933159 0.019408999010920525 0.019531000405550003 0.01953199878334999 0.019571000710129738 0.019694000482559204 0.019694000482559204 0.020100999623537064 0.020385999232530594 0.02042599953711033 0.020426999777555466 0.020508000627160072 0.02058899961411953 0.02075199969112873 0.020793000236153603 0.02087400108575821 0.02087400108575821 0.020914999768137932 0.020956000313162804 0.020997000858187675 0.021077999845147133 0.021078001707792282 0.02128100022673607 0.02132200077176094 0.021646998822689056 0.02168700098991394 0.021890999749302864 0.022095000371336937 0.022298000752925873 0.022339001297950745 0.02266400121152401 0.02266400121152401 0.022704999893903732 0.02278600074350834 0.023152999579906464 0.02347799949347973 0.0236820001155138 0.024007000029087067 0.024495000019669533 0.024699000641703606 0.024901999160647392 0.025147000327706337 0.025187000632286072 0.025960000231862068 0.026651998981833458 0.02669299952685833 0.026937000453472137 0.02738500013947487 0.027750998735427856 0.03051700070500374 0.030802998691797256
App start time (CPU) Baseline
Mean: 152.070 %
Stdev: 9.100 % (6.0%)
Runs: 129.515873015873 130.58943089430895 132.34758222954562 133.98923726716012 135.01850054831056 135.202780446722 136.54618473895584 138.85003885003889 138.9085754783841 142.84006503235682 142.89242383492817 143.65530365815815 144.65438814136212 144.6923690487034 145.89378500573594 148.7250996015937 150.25296442687753 152.0178681656223 152.14474637355232 152.56438091030535 152.58769884184406 152.9095073842626 153.12051649928256 153.14511268556606 153.3929797527137 153.51393934764934 153.74838643961064 153.77087508350036 153.82278381542855 154.00207392087967 154.26372912899555 154.27580346878588 154.74433737695028 154.95841365714057 155.21839948733327 155.2442142897224 155.47634695013969 155.6551018359637 156.3164189164694 157.4885049990416 157.70667774830636 158.57350828458277 158.84395856723944 159.08654101244832 159.15713247489523 159.35786230236343 159.37401990382324 159.53439153439146 159.55663208624955 159.5884509259042 160.18209287358604 160.66957466576392 161.12611081534283 162.3436632710674 162.48605577689233 162.58447345299368 163.16057960852126 163.8290808258565 166.00570668949337

Current
Mean: 155.999 %
Stdev: 4.877 % (3.1%)
Runs: 143.74083956538158 144.55487318925512 144.81081531475235 145.872106895729 150.07854769330183 150.4210454592823 150.935673084219 151.29641585233009 152.10339332952077 152.35820992300643 152.97252458851116 153.05071844457365 153.52882864323203 153.56281637810648 153.67456024826535 153.71732899781327 154.02979208426677 154.34975982921188 154.76629216418863 155.0745802332991 155.2419960183796 155.43433422431983 155.45495156550734 156.26294820717118 156.82579064977608 157.01124290084576 157.0141534512377 157.11017316871127 157.48989376315768 157.5617337899627 157.76383516432847 157.8851804994947 158.00662690523532 158.4162371185571 158.9666267701031 159.07285031530563 159.15712654542693 159.50855712287137 160.22847185534988 160.52035550047486 160.535804148512 160.69158210893772 160.86439545758176 160.87972746395045 161.45705376395802 161.99828819121248 162.3823636757094 162.6639903957408 163.02391558424165 165.6308760979937
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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 8, 2025

Performance Comparison Report 📊 (4/10)

Meaningless Changes To Duration (3/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
App start time (RAM) Baseline
Mean: 379.652 MB
Stdev: 10.465 MB (2.8%)
Runs: 354.302734375 355.5859375 358.369140625 359.6640625 368.130859375 368.4986979166667 369.5963541666667 369.630859375 370.984375 371.9622395833333 372.2473958333333 373.06640625 373.337890625 373.533203125 373.9088541666667 373.96484375 374.078125 374.125 374.6315104166667 375.14453125 375.5611979166667 375.6106770833333 376.0598958333333 376.36328125 376.4973958333333 376.5247395833333 376.5546875 376.62890625 376.986328125 377.3736979166667 378.017578125 378.8619791666667 380.34375 380.69140625 381.3567708333333 381.4853515625 382.2682291666667 382.333984375 382.34375 382.5455729166667 384.0009765625 384.1927083333333 384.2552083333333 384.7591145833333 385.6666666666667 387.9921875 388.0390625 389.1184895833333 389.2174479166667 389.421875 389.8111979166667 390.76953125 391.16015625 391.1731770833333 392 392.0520833333333 392.5338541666667 400.1341145833333 404.83203125 408.802734375

Current
Mean: 379.663 MB
Stdev: 10.194 MB (2.7%)
Runs: 353.21875 355.34375 358.02734375 358.25 359.365234375 362.921875 368.8489583333333 371.00390625 371.0130208333333 371.22265625 371.7799479166667 372.1341145833333 372.1966145833333 372.2265625 372.4140625 373.5794270833333 373.802734375 373.9466145833333 373.94921875 374.6536458333333 375.47265625 377.3567708333333 377.7604166666667 377.9309895833333 378.0130208333333 378.583984375 379.2330729166667 380.33984375 381.265625 381.369140625 381.5859375 381.7799479166667 382.2903645833333 382.51171875 382.69921875 382.8020833333333 383.3515625 384.2955729166667 384.3216145833333 385.80078125 386.0247395833333 386.0716145833333 386.51171875 386.6588541666667 386.7083333333333 387.6653645833333 388.3059895833333 388.4453125 388.5221354166667 388.8450520833333 389.0989583333333 389.3059895833333 390.359375 392.7018229166667 393.0221354166667 393.1106770833333 394.4986979166667 394.53515625 394.8424479166667 395.8919270833333
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: 28.751 %
Stdev: 2.704 % (9.4%)
Runs: 22 22.1 23.2 25.1 25.1 25.2 25.9 25.9 26 26.7 26.9 27.1 27.1 27.2 27.2 27.2 27.2 27.2 27.3 28 28.4 28.6 28.6 28.6 29 29 29 29.2 29.3 29.3 29.7 29.8 29.9 29.9 29.9 29.9 29.9 30 30 30 30 30.6 30.9 31 31.3 31.5 31.5 32 32.1 33.3 33.8 34 34.2

Current
Mean: 28.444 %
Stdev: 3.101 % (10.9%)
Runs: 21 21 21.1 21.9 22 23.8 24 24.9 24.9 25.8 26 26 26.1 27.2 27.3 27.3 27.4 27.6 27.9 28 28 28.5 28.6 28.6 28.6 28.7 28.9 29.3 29.4 29.4 29.4 29.4 29.4 29.6 29.6 29.8 29.9 30 30 30 30.1 30.3 30.5 30.6 30.6 30.7 30.7 31.1 31.2 31.3 31.3 31.7 31.7 32.3 32.6 33 35.3
Open search router TTI Load Search Options Baseline
Mean: 139.437 ms
Stdev: 5.251 ms (3.8%)
Runs: 127.39794900082052 130.01004999876022 130.04744399897754 132.14021899923682 132.6106369998306 132.72542299889028 132.94844499975443 133.21146599948406 133.25154599919915 133.26700900122523 133.5534259993583 133.7788079995662 133.874836999923 134.16019700095057 134.4604899995029 135.13838700018823 135.33190900087357 135.37621999904513 135.6204430013895 135.9955250006169 136.65275100059807 136.72770199924707 137.11242699995637 137.17757199890912 137.8615729995072 138.12357600033283 138.52648899890482 138.97497500106692 139.1349690016359 139.63110399991274 139.8177500013262 141.3671870008111 141.6766759995371 141.83072999864817 142.03076200000942 142.6725260000676 142.78792300075293 142.88614900037646 143.1165769994259 143.1881510000676 143.21704100072384 143.23234000056982 143.45878100022674 143.5241700001061 143.65413399972022 143.6549069993198 143.74133300036192 143.75028500147164 143.80314199998975 144.17826300114393 144.27897199988365 144.39322900027037 144.8306889999658 145.22888199985027 145.29268399998546 146.22615600004792 147.43359300121665 148.5675859991461 148.61271100118756 148.93017600104213

Current
Mean: 139.213 ms
Stdev: 5.569 ms (4.0%)
Runs: 129.3197429999709 129.9150799997151 130.60831700079143 130.96842500008643 131.3195799998939 131.32739300094545 131.51916499994695 131.94930000044405 132.92854799889028 133.05456500127912 133.43338999897242 133.48852499946952 133.59635400027037 133.62377899885178 133.74076300114393 133.7810460012406 134.233805000782 134.23677500151098 134.32133000157773 134.39493800140917 134.40803999826312 135.48636899888515 136.01969400048256 136.09387199953198 136.2820640001446 138.3203940000385 139.0079759992659 139.7355550006032 140.4455159995705 140.52229799889028 141.59423799999058 141.82641600072384 141.90502900071442 142.0799560006708 142.15547700040042 142.2822270002216 142.33837899938226 142.68062300048769 142.6984050013125 142.77628600038588 142.98331700079143 143.183755999431 143.2189949993044 143.32250900007784 143.33158400096 143.7596030011773 143.87715600058436 143.98201500065625 144.28336500003934 144.52799499966204 144.5451250001788 145.07470699958503 145.2047519981861 145.47294100001454 145.80692599900067 146.2947179991752 146.32645700126886 148.21492500044405 149.05753600038588 149.88859100081027

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (5/10)

Meaningless Changes To Duration (4/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 1275.892 ms
Stdev: 65.718 ms (5.2%)
Runs: 1102.9560150001198 1103.1988529991359 1106.0987960007042 1107.6661789994687 1108.0038250014186 1108.4199630003422 1112.9418130014092 1114.6143810003996 1117.8264570012689 1119.6220699995756 1121.5961100012064 1122.0804440006614 1122.496786000207 1126.0904959999025 1128.7773850001395 1133.2176109999418 1134.0786950010806 1134.316324999556 1134.4736340008676 1134.6760660000145 1137.3867189995944 1142.659872001037 1146.777344999835 1148.1857919991016 1151.0303150005639 1153.1224770005792 1156.6363929994404 1163.4015709999949 1165.1492520011961 1172.6438400000334 1176.2380379997194 1182.6200370006263 1186.1892499998212 1187.9425050001591 1193.0957850012928 1194.0514729991555 1195.422485999763 1195.913451999426 1199.1070560012013 1201.0834149997681 1202.3909919988364 1202.3909919988364 1202.6457119993865 1205.4697270002216 1205.83227599971 1206.1197919994593 1208.1456710007042 1208.422485999763 1210.378824999556 1212.8899339996278 1212.9839280005544 1213.206747001037 1214.5428470000625 1215.2979739997536 1217.5570080000907 1217.7268070001155 1219.3883880004287 1220.8829350005835 1221.1766359992325 1222.203818000853 1224.0714119989425 1225.5310880001634 1225.8018389996141 1226.8605150002986 1227.3189289998263 1227.6891280002892 1229.1211350001395 1230.016561999917 1230.2808030005544 1231.1646330002695 1231.2546800002456 1231.2983400002122 1231.5635590013117 1231.5635590013117 1231.6931570004672 1231.7741299998015 1232.1939300000668 1233.191935999319 1233.378622001037 1233.7582200001925 1234.6199549995363 1235.2594399992377 1235.769164999947 1238.835409000516 1239.6914880014956 1240.835367999971 1242.4306239988655 1243.0828450005502 1243.3406170010567 1243.3406170010567 1243.4355880003422 1244.3183190003037 1244.3992929998785 1244.4023040011525 1244.5213219989091 1245.1022549998015 1246.0298670008779 1249.5882569998503 1249.6761880014092 1249.8938400000334 1250.2185880001634 1250.6529549993575 1251.3899339996278 1251.5490730013698 1251.8739020004869 1251.9119880013168 1253.046753000468 1253.653525000438 1253.6561689991504 1254.3638110011816 1254.9804689995944 1255.7008469998837 1256.262900000438 1256.9950370006263 1257.1026610005647 1257.2234300002456 1258.0934250000864 1259.0307620000094 1259.2252610009164 1259.4241129998118 1259.9326169993728 1260.2051190007478 1260.3028570003808 1260.780884001404 1261.343710001558 1261.3732100017369 1261.8222659993917 1262.0297860000283 1262.3895679991692 1264.0297040008008 1264.0716960001737 1264.449626000598 1264.5591239985079 1264.9688729997724 1266.1289880014956 1266.3391520008445 1266.469767998904 1266.8599450010806 1267.1319180000573 1268.1780200004578 1268.2916669994593 1268.3174239993095 1268.410237999633 1268.8580320011824 1269.110433999449 1270.3898120000958 1270.6241870000958 1270.882325001061 1270.9759119991213 1270.9759119991213 1271.0886230003089 1271.0886230003089 1271.9466550014913 1272.5426440015435 1272.7389320004731 1273.5823160000145 1273.5823160000145 1273.6888840012252 1273.6888840012252 1273.9857180006802 1274.04223700054 1274.6462409999222 1275.4019779991359 1275.4862479995936 1276.8312180005014 1276.9272869993001 1277.944988001138 1278.1700039990246 1278.243041999638 1278.3309739995748 1278.3309739995748 1278.497518999502 1278.6157229989767 1279.5954189989716 1282.1864420007914 1282.7377119995654 1283.2044680006802 1283.586548000574 1284.0011400002986 1284.3026940003037 1284.3026940003037 1284.3078209999949 1285.182699000463 1285.4091800004244 1285.4210620000958 1285.4540199991316 1285.4830740001053 1285.5788170006126 1286.1337090004236 1286.2530519999564 1287.0328369997442 1287.2642419990152 1287.2711999993771 1287.8656820002943 1288.164510000497 1289.0030519999564 1289.088542001322 1289.1703290008008 1290.4127610009164 1290.6250419989228 1292.1304119993001 1292.4189860001206 1293.2051190007478 1293.544515999034 1294.0150559991598 1294.0150559991598 1294.2337239999324 1295.156413000077 1295.7961839996278 1295.9160159993917 1296.2753500007093 1297.977905999869 1298.9519040007144 1299.1295980010182 1299.1928310003132 1299.2339280005544 1299.3052169997245 1299.7614339999855 1299.8457440007478 1300.5299079995602 1300.5299079995602 1301.2427580002695 1301.4741629995406 1301.512737000361 1301.512737000361 1301.962402999401 1302.106404999271 1302.1704920008779 1302.6204429995269 1303.6590989995748 1303.9327399991453 1304.39469399862 1304.5536710005254 1304.6244709994644 1305.3767499998212 1306.1243900004774 1306.2306319996715 1307.03877799958 1307.1735850013793 1307.637085000053 1308.276327000931 1308.5399179998785 1308.863119000569 1310.4635429996997 1310.6334639992565 1311.0614020004869 1311.8460700009018 1313.895101999864 1313.9635830000043 1314.5778000000864 1315.2210290003568 1315.7540279999375 1315.8271079994738 1316.3756920006126 1316.5449630003422 1316.633910998702 1317.2557779997587 1317.5620530005544 1318.2382009997964 1318.2382009997964 1318.3834240008146 1318.8878999985754 1318.9860440008342 1320.6603600010276 1320.8972180001438 1322.14070700109 1322.5327150002122 1322.9641519989818 1323.0841480009258 1323.1609300002456 1323.3109550010413 1323.3222250007093 1324.3701989986002 1325.319947000593 1326.456625001505 1326.747477998957 1328.1701260004193 1330.0569659993052 1330.3530689999461 1330.7441010009497 1330.7441010009497 1331.3738209996372 1331.5213220007718 1331.5346280001104 1332.6870130002499 1333.539103999734 1334.0450849998742 1334.2064220011234 1335.0376800000668 1335.4091800004244 1335.6145839989185 1336.0815849993378 1336.6948249991983 1338.7282309997827 1340.379313999787 1341.3388679996133 1341.8431809991598 1341.916341001168 1342.3199879992753 1342.7961020004004 1344.651449000463 1345.2513840012252 1346.0809329990298 1346.179770000279 1348.3522139992565 1349.3809009995311 1349.8665779996663 1349.884888999164 1350.8610040005296 1352.754761999473 1352.754761999473 1352.8500990010798 1352.8512379992753 1353.5491950009018 1355.8428550008684 1356.7241620011628 1357.8215340003371 1357.993083000183 1358.0870369989425 1359.2881269995123 1359.5753990001976 1359.7836920004338 1359.8668629992753 1360.0652270000428 1364.546794001013 1366.8059900011867 1368.973022999242 1369.7684330008924 1371.5100100003183 1372.054363001138 1372.794515999034 1372.794515999034 1374.6868900004774 1374.9076340012252 1374.9076340012252 1378.6345630008727 1381.431315999478 1381.431315999478 1385.8594979997724 1386.9185799993575 1388.7436530012637 1395.6363940015435 1398.3240569997579 1398.7913819998503 1399.5030119996518 1405.7589120008051 1412.594117000699 1414.5922050010413 1444.8170580007136

Current
Mean: 1281.564 ms
Stdev: 77.568 ms (6.1%)
Runs: 1083.5771900005639 1083.8298760000616 1084.1704510003328 1088.0509850010276 1093.247070999816 1097.4511319994926 1098.8638110011816 1099.6749679986387 1107.5308030005544 1108.8127449993044 1112.0147300008684 1115.6720390003175 1116.7606210000813 1116.8636070005596 1119.6579599995166 1119.8542480003089 1120.4418540000916 1120.7408460006118 1120.8645430002362 1122.3019210007042 1122.9798590000719 1124.5545259993523 1128.570312999189 1131.617228999734 1132.8891599997878 1132.981282999739 1136.015909999609 1139.1157230008394 1139.4136159997433 1142.637898998335 1144.8955080006272 1145.4482829999179 1146.7907720003277 1147.2019450012594 1152.652994999662 1156.3371590003371 1157.2741299998015 1159.8498539999127 1166.804607000202 1172.7253019995987 1173.5469979997724 1179.9588220007718 1180.9619960002601 1181.0225430000573 1183.6120199989527 1186.4932460002601 1188.4495860002935 1191.878948001191 1196.0727949999273 1197.5996909998357 1198.1665859986097 1199.0353190004826 1199.5676690004766 1201.1548679992557 1206.5965990014374 1209.9062909986824 1210.0608729999512 1212.3471679985523 1213.1836349982768 1213.1836349982768 1213.3782150000334 1213.9590260013938 1214.8377290014178 1217.1396080013365 1217.4586190003902 1217.6498630009592 1220.9198420010507 1222.1345220003277 1222.1345220003277 1222.472779000178 1225.0758470017463 1225.2801519986242 1227.4306240007281 1227.6654880009592 1227.8658050000668 1229.024454999715 1229.2076830007136 1229.3231620006263 1231.0122889988124 1231.1798109989613 1233.8146980013698 1234.8675539996475 1235.331949999556 1235.331949999556 1236.7795829996467 1236.933594999835 1238.0287690013647 1238.7395429983735 1239.182781001553 1241.253744000569 1241.7616379987448 1241.8101410008967 1242.4068200010806 1242.887695999816 1242.9653329998255 1243.6473399996758 1245.1775320004672 1245.3068860005587 1246.7808030005544 1248.6110849995166 1248.680948998779 1248.9216719996184 1249.6718349996954 1249.8133140001446 1251.6140960007906 1252.0965990014374 1252.2091880012304 1252.2673749998212 1252.566692000255 1252.566692000255 1253.3068850003183 1253.3068850003183 1253.7857670001686 1254.3307300005108 1254.6082359999418 1254.8807789999992 1254.947917001322 1258.0029299985617 1259.0240080002695 1259.716268999502 1260.270671999082 1260.2708339989185 1260.559286000207 1261.3355320002884 1262.7253419999033 1262.9092619996518 1263.5562349986285 1263.5562349986285 1264.1921389997005 1265.1431889999658 1265.6382250003517 1267.0525730010122 1267.5032970011234 1267.5287280008197 1267.5287280008197 1268.4939380008727 1268.5475260000676 1268.6364749986678 1268.8603930007666 1269.281006000936 1270.8502200003713 1271.2241629995406 1271.3191739991307 1271.6396080013365 1273.2478849999607 1273.2963059991598 1273.8018399998546 1274.8535569999367 1275.1709810011089 1275.2165939994156 1275.432699000463 1276.3957940004766 1276.838664000854 1278.0225019995123 1278.6687019988894 1279.195395000279 1280.2998060006648 1280.6166990008205 1280.6518959999084 1281.1469320002943 1281.9995940010995 1282.258097998798 1282.3347990009934 1282.3975839987397 1282.3975839987397 1282.6254480015486 1282.6774910017848 1282.6875419989228 1283.0339770000428 1283.6195479985327 1283.7415779996663 1284.09106499888 1284.1416830010712 1284.859701000154 1285.5660819988698 1286.953044001013 1287.727295000106 1288.3053389992565 1288.7296550013125 1288.7595630008727 1289.7262789998204 1290.0738530009985 1291.2573650013655 1292.1556400004774 1292.2547210007906 1292.2639979999512 1292.4053959995508 1292.4053959995508 1292.4923909995705 1293.2288819998503 1293.3218180015683 1293.4790859986097 1293.4862879998982 1294.8907890003175 1294.8907890003175 1295.8192549999803 1296.4407959990203 1296.4407959990203 1296.7251390013844 1296.8774829991162 1298.544352998957 1298.6808279994875 1298.7251389995217 1301.1182460002601 1301.9148770011961 1302.8286540005356 1303.1891690008342 1303.1891690008342 1303.3433440010995 1304.4850260000676 1305.0198579989374 1305.1327309999615 1306.0171719994396 1306.0171719994396 1306.062784999609 1306.4129240009934 1306.4257810004056 1307.242635000497 1307.4837649986148 1307.596924001351 1307.6916100010276 1307.7288819998503 1307.742798998952 1308.4039310012013 1308.5476899985224 1309.0150150004774 1309.2882090006024 1309.523520000279 1309.575195999816 1310.9700520001352 1311.743896998465 1312.3083099983633 1313.3885910008103 1314.4652110002935 1315.4794119987637 1315.7394210007042 1316.4515390004963 1316.7371429987252 1316.9836020004004 1317.1833910010755 1317.2808849997818 1317.5496830008924 1318.0618089996278 1318.2637130003422 1318.7290449999273 1319.3094480000436 1319.871949000284 1320.1006269995123 1320.2668050006032 1321.1160080004483 1321.5139579996467 1321.5139579996467 1321.544108999893 1321.6505540013313 1322.1455490011722 1323.958373999223 1324.588013999164 1324.8935550004244 1325.1747639998794 1325.7563489992172 1326.272176001221 1326.3316249996424 1326.5844330005348 1328.0142829995602 1331.3112800009549 1331.3112800009549 1332.9242770001292 1335.230671999976 1335.2888590004295 1335.9624850004911 1335.9624850004911 1335.9706629998982 1336.3148199990392 1336.5185139998794 1336.9112149998546 1336.9173990003765 1337.436686001718 1337.5632729995996 1338.03540099971 1338.25683600083 1339.1097009982914 1339.2373869996518 1340.0722250007093 1340.2336829993874 1341.6661790013313 1342.2011319994926 1343.6441660001874 1344.0873220004141 1344.2448330000043 1345.6846520006657 1346.2945969998837 1347.6657309997827 1348.1855070013553 1348.3821619991213 1348.3931480012834 1350.394410001114 1350.9527589995414 1351.4903570003808 1351.5398770011961 1352.4164640009403 1352.446940999478 1352.4980480000377 1352.5397549998015 1352.554117999971 1352.594117000699 1353.9286710005254 1354.1350919995457 1356.9703779984266 1358.431111998856 1359.1900639999658 1359.7091070003808 1361.2993170004338 1361.4475509990007 1362.5402029994875 1364.1442070007324 1365.3665779996663 1366.6003830004483 1369.7184660006315 1369.7184660006315 1370.7562669999897 1370.7965500000864 1370.7965500000864 1371.6415200009942 1371.6977549996227 1372.1343600004911 1372.6620289999992 1372.6620289999992 1374.0105799995363 1375.515625 1375.515625 1376.8684490006417 1378.325806999579 1378.5172540005296 1378.6870939992368 1379.414510000497 1379.7563889995217 1383.4155689999461 1383.9828709997237 1384.035726999864 1384.2181809991598 1391.494100999087 1391.7680259998888 1392.1504319999367 1392.2122000008821 1394.9549570009112 1397.0054530017078 1397.0054530017078 1399.2821050006896 1400.7338060010225 1400.9024259988219 1402.3258880004287 1405.1665860004723 1407.0109470002353 1408.37577399984 1409.0673830006272 1410.8271900005639 1417.6749280001968 1420.0603849999607 1425.2245690003037 1439.9194750003517 1441.0049240011722 1448.4552410002798 1489.2974860016257
Open search router TTI (CPU) Baseline
Mean: 150.165 %
Stdev: 4.005 % (2.7%)
Runs: 141.37787056038138 141.69219905733766 142.10428100058624 143.28226339031215 143.35225388799867 143.3852961259844 144.4653298103533 145.03273267854908 145.13461980828006 145.30939259310298 145.95486789031577 146.0747225214161 146.80683356563628 147.0531042351057 147.19520602998313 148.15319705440527 148.2539616189882 148.5445377120558 149.03885217920254 149.0922793980204 149.243543452753 149.36613177864248 149.52060451400294 149.67505356346553 149.96084557000518 150.00710010308956 150.39533811399627 150.4374852824928 150.49653117194302 150.81483399299884 150.97746256255448 151.02263085899327 151.12335043059497 151.3640561546373 151.3950374213472 151.45925016492964 151.46645919409804 151.5576749277367 151.64848368989692 151.86290846582347 152.30818711743834 152.3927894145938 152.46336421758528 152.67909659103861 152.820681820906 152.90305035216326 152.92796895458952 153.06005858859794 153.16965626529108 153.86224719981965 153.91760875662942 154.01072797585775 154.20804068258505 154.4624770691118 154.69378837805053 154.8003344163375 155.73550416305696 156.73832607366657 158.30131597616034 159.3675487031222

Current
Mean: 149.835 %
Stdev: 3.469 % (2.3%)
Runs: 142.08191960012593 142.55128496776632 143.19755737059427 143.379192623226 143.6969781348779 144.4722061027441 144.49268054062082 145.40076012777465 145.7327598116566 146.181852837882 146.5684843934272 147.2971898987185 147.74454519270068 147.76977420684165 147.78669628496257 147.91356186073068 148.02209105751496 148.04905347204067 148.12884433579057 148.17893866664284 149.03607960414365 149.07091803224424 149.30067882522994 149.45928067424364 149.77262615782215 149.81518437901275 149.84000669339702 149.85010848747032 149.87561437177072 150.11329063572188 150.58416237029783 150.6331371464 150.65903056793215 150.71354236718153 150.74413833257424 150.7520932801682 150.7591592364838 151.0502183692497 151.13761344002637 151.28094396424385 151.36598649933163 151.36839504873416 151.8719430946447 151.88216081327832 152.24106256630316 152.44237633526333 152.47231986986662 152.5106116667927 152.7825011206901 153.38991922918396 153.73300476267397 153.98466264839007 154.24344440213045 154.72510063973272 154.88339785273226 154.9952399232204 155.30346269174217 155.97464963368634 157.02368771578
Open search router TTI (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

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
Open search router TTI (RAM) Baseline
Mean: 406.046 MB
Stdev: 4.673 MB (1.2%)
Runs: 395.693359375 396.56875 397.478515625 398.50078125 399.6296875 400.0296875 400.45078125 400.6484375 400.85078125 402.2044270833333 402.38671875 402.6875 402.95234375 403.1453125 403.434375 403.5328125 403.57421875 403.611328125 404.0403645833333 404.22265625 404.2428385416667 404.2962239583333 404.8196614583333 405.2682291666667 405.412109375 405.41875 405.697265625 405.7109375 405.7421875 405.94140625 406.1703125 406.25546875 406.3515625 406.4046875 406.50234375 406.6783854166667 406.7298177083333 406.91796875 407.267578125 407.3313802083333 407.80859375 408.2416294642857 408.2903645833333 408.5123697916667 408.58984375 408.8704427083333 409.35546875 409.82421875 410.482421875 411.8046875 411.9088541666667 412.78828125 412.8678385416667 413.8734375 414.9557291666667 415.810546875 415.861328125 416.0162760416667

Current
Mean: 404.934 MB
Stdev: 5.271 MB (1.3%)
Runs: 395.2546875 395.53515625 395.99453125 397.21875 397.73828125 398.25 399.11953125 399.1822916666667 399.25625 399.3734375 399.625 399.66796875 399.79609375 400.119140625 400.25546875 400.447265625 400.546875 400.703125 400.7484375 402.162109375 402.3125 402.315625 402.396875 402.7109375 403.21015625 403.534375 403.8665364583333 403.8815104166667 404.0140625 404.03203125 404.5227864583333 405.80234375 405.849609375 405.951171875 406.4234375 406.5358072916667 406.6295572916667 406.9791666666667 407.060546875 407.13515625 407.7858072916667 407.9694010416667 408.1966145833333 408.3639322916667 409.378125 409.404296875 409.80859375 409.8248697916667 409.91015625 409.9895833333333 411.00390625 411.91796875 411.9328125 411.98828125 412.0787760416667 412.494140625 412.7317708333333 412.845703125 414.146484375 418.0846354166667

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (6/10)

Meaningless Changes To Duration (5/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
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.753 %
Stdev: 1.127 % (4.2%)
Runs: 24.5 24.7 24.8 24.9 25.2 25.2 25.2 25.3 25.5 25.6 25.6 25.6 25.9 26 26 26 26 26.2 26.2 26.3 26.3 26.3 26.3 26.4 26.5 26.6 26.6 26.8 26.8 26.8 26.9 27 27 27 27.1 27.1 27.1 27.2 27.2 27.2 27.4 27.5 27.6 27.6 27.6 27.6 27.7 27.7 27.8 27.8 27.8 27.9 28.3 28.4 28.5 29 29.2 29.4

Current
Mean: 26.778 %
Stdev: 1.247 % (4.7%)
Runs: 23.9 24.6 24.8 24.9 24.9 25.3 25.3 25.4 25.6 25.6 25.8 25.8 25.8 25.9 25.9 25.9 26 26 26 26 26.2 26.2 26.2 26.2 26.2 26.3 26.5 26.6 26.6 26.6 26.6 26.7 26.7 26.7 26.9 27 27.1 27.2 27.2 27.3 27.3 27.3 27.5 27.6 27.7 27.8 27.9 28 28 28 28.1 28.3 28.3 28.6 28.6 28.6 28.7 28.8 29.2 30
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

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
Report typing Message sent Baseline
Mean: 507.480 ms
Stdev: 41.857 ms (8.2%)
Runs: 421.0214849989861 422.2621260005981 422.6964519992471 423.39290399849415 429.4967859983444 439.6260989997536 448.437458999455 456.42944400012493 462.05631499923766 467.3367919996381 471.2056070007384 472.4155279994011 476.3335369993001 476.64371799863875 476.97892200015485 479.7401529997587 481.7722169999033 483.86523500084877 485.33414700068533 485.51078299991786 490.62638400122523 490.6564949993044 491.21854700148106 491.3770349994302 495.2523609995842 495.8764650002122 500.4753419999033 515.2239180002362 516.3780930005014 516.4796550013125 516.7781569994986 523.2986660003662 524.188110999763 524.785237999633 525.8591309990734 526.1560469996184 526.7859700005502 527.2022299990058 531.0136309992522 532.4656980000436 534.0582679994404 534.8922119997442 535.9054370000958 536.0231120008975 536.922527000308 537.1278899982572 538.9814039990306 539.5069169998169 542.5227869991213 542.8610839992762 543.2213129997253 544.3426920007914 549.1322429999709 557.4379879999906 558.8545329999179 565.1197110004723 565.7228600010276 569.9285480007529 571.2873129993677 600.2731119990349

Current
Mean: 507.533 ms
Stdev: 45.006 ms (8.9%)
Runs: 417.70113199949265 419.66723600029945 421.3652749992907 424.07112700119615 425.0737299993634 432.2045089993626 433.2124840002507 448.4210609998554 459.6096190009266 463.4395349994302 464.95817100070417 467.5874429997057 470.02530900016427 470.9617519993335 472.2708739992231 477.5869960002601 477.9925130009651 478.5297849997878 479.43790800124407 482.13391200080514 485.374878000468 486.27799499966204 487.41670699976385 488.4138999991119 489.0641680005938 490.91133699938655 494.26041699945927 521.7854820005596 522.559366999194 523.3845220003277 523.3914790004492 525.0824790000916 525.272502001375 528.5391849987209 528.9811610002071 530.0341400001198 531.043700998649 531.4017329998314 533.215738998726 534.0714929997921 534.5465500000864 537.4588219989091 542.1625570002943 545.6022539995611 546.246175000444 547.5424809996039 549.8686519991606 550.4144289996475 551.3247889988124 551.7630620002747 552.316244000569 554.3938400000334 557.0807290002704 557.3120529986918 558.0852460004389 560.828125 562.3056239988655 571.2257090006024 577.1081540007144 577.6554370000958

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (7/10)

Meaningless Changes To Duration (6/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
Report typing (CPU) Baseline
Mean: 98.747 %
Stdev: 4.496 % (4.6%)
Runs: 89.83374197253617 91.83366378486058 91.920386373148 92.45275247765241 92.82633183765999 93.08116613638113 93.75756948320364 93.97611300489932 94.02768369220168 94.3100415249547 94.37872300069107 94.62634712811352 94.74141798478429 94.86058140814798 95.09689885823678 95.11040479297506 95.17844632073128 95.29924818555929 95.41702786356038 96.48285751158123 96.55271411263966 96.57029072363605 96.5735401497678 96.80015419583037 96.86639152812074 97.46270077934865 97.52385332995168 98.0197936511331 98.23392146888126 98.28631903630365 98.48052142468127 98.73427639796573 99.5915786940005 99.5981855214742 99.95831311077332 101.03951682039227 101.27787964864075 101.34633902834499 101.52526386427371 101.86777445172088 102.0542202510096 102.12829979368999 102.31811456563798 102.46740868274898 102.76583105368248 103.02174354295585 103.25094828738072 103.32201362431724 103.34452463189211 104.74614214215437 105.16207013712328 105.5038196905044 105.57464825591377 105.91585526892617 106.31042456350946 106.54864024761181 108.64242079197174

Current
Mean: 97.911 %
Stdev: 3.517 % (3.6%)
Runs: 90.94796033397843 91.65929940612018 91.92564848131877 92.15750511624475 92.67170946421021 93.36250708098625 93.67155254224629 93.80838729037328 94.09886647042522 94.6179884809783 94.96956048264168 95.08358874587182 95.15527636801271 95.31278839776344 95.33844368733307 96.21418647024348 96.39763144114714 96.62623689038347 96.68666189780386 96.85477997516269 96.97001901954147 97.05340003169043 97.13372250884828 97.34740605164362 97.48893402517986 97.50825310524887 97.64769877879385 97.65873916033891 97.69316594347598 97.7901236093468 97.88530818003545 97.93097300159216 97.9786360767979 98.06609419192873 98.10653941631804 98.12622967486826 98.6368574073573 98.88546165511197 99.1685844285309 99.34578355083696 99.57697394546967 99.78223288174237 100.3220924622513 100.71091840232684 100.97374329793627 101.15106283382278 101.3677494740316 101.48921034996391 102.24320500188504 102.59858377603699 102.78684291400756 103.45819028996696 104.0732942569375 104.3616624457248 105.75985303871033 106.37358722664136
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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
Report typing (RAM) Baseline
Mean: 471.621 MB
Stdev: 6.272 MB (1.3%)
Runs: 455.92900815217394 457.04017857142856 460.60572916666666 461.09354440789474 461.15122767857144 463.2561141304348 463.34232954545456 465.1574388586956 465.59395559210526 466.30982730263156 466.4693667763158 466.7925967261905 467.15696022727275 467.2015269886364 467.26669034090907 467.7855282738095 468.41331845238096 468.45756392045456 468.70703125 469.078125 469.20383522727275 469.28721217105266 469.437109375 470.0552455357143 470.2055921052632 470.26313920454544 470.34395559210526 471.3724609375 472.27035361842104 472.891796875 472.99520596590907 473.17689732142856 473.34888980263156 473.6510416666667 473.69713541666664 473.9708806818182 474.0009765625 474.00502232142856 474.83872767857144 475.12965029761904 475.1450892857143 475.3682154605263 475.5829613095238 476.2923828125 476.41015625 476.539453125 476.658203125 477.34449404761904 478.0684523809524 478.41221217105266 478.4984375 479.01171875 479.1075994318182 479.14576480263156 480.9936755952381 481.29214638157896 482.78145559210526 486.42166940789474

Current
Mean: 471.582 MB
Stdev: 6.112 MB (1.3%)
Runs: 460.2481398809524 461.26254111842104 461.3042763157895 461.6287286931818 462.06536458333335 462.4389391447368 462.7861842105263 463.12686820652175 464.3982599431818 464.4681332236842 464.95628720238096 464.98359375 465.11985085227275 465.95785361842104 466.1834239130435 466.5035511363636 466.83221726190476 467.1938733552632 467.333984375 467.59037642045456 468.49751420454544 470.3279551630435 470.9111328125 471.7210582386364 471.89918154761904 472.1880580357143 472.2613075657895 472.28782894736844 472.43412642045456 472.4415838068182 473.2064144736842 473.3071546052632 473.3081825657895 473.72730654761904 473.77752976190476 473.87034970238096 474.23704769736844 474.3841145833333 474.71949404761904 474.84694602272725 474.95682565789474 475.0084292763158 475.251953125 475.56517269736844 475.853125 476.0017578125 476.1148792613636 476.1958705357143 476.39864309210526 476.6449424342105 477.07403273809524 477.4901413690476 479.1033380681818 479.27957589285717 479.427734375 480.0904017857143 481.24375 484.74848090277777 486.1532738095238
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 8, 2025

Performance Comparison Report 📊 (8/10)

Meaningless Changes To Duration (7/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
Report typing (CPU/UI) Baseline
Mean: 21.609 %
Stdev: 1.000 % (4.6%)
Runs: 19.7 19.9 20 20.1 20.1 20.1 20.3 20.3 20.4 20.4 20.6 20.6 20.8 20.8 20.9 20.9 20.9 21 21 21.1 21.1 21.1 21.3 21.4 21.6 21.6 21.7 21.7 21.8 21.8 21.9 21.9 21.9 21.9 22 22 22 22 22.1 22.1 22.1 22.2 22.2 22.3 22.4 22.4 22.6 22.6 22.6 22.8 22.8 22.9 23.1 23.2 23.2 23.6 23.9

Current
Mean: 21.612 %
Stdev: 0.848 % (3.9%)
Runs: 20.2 20.3 20.4 20.4 20.4 20.4 20.4 20.5 20.5 20.6 20.6 20.7 20.7 20.8 20.8 20.8 20.9 20.9 21.1 21.3 21.3 21.4 21.4 21.5 21.5 21.6 21.6 21.6 21.6 21.6 21.7 21.7 21.8 21.9 21.9 22 22.1 22.1 22.1 22.1 22.1 22.2 22.2 22.2 22.2 22.2 22.2 22.3 22.4 22.5 22.7 22.7 22.8 22.9 22.9 23.1 23.3 23.4
Chat opening Chat TTI Baseline
Mean: 815.613 ms
Stdev: 46.324 ms (5.7%)
Runs: 678.9686279986054 696.6428629998118 725.0146490000188 738.7731940001249 740.8041999991983 761.6048990003765 765.6764320004731 773.4649259988219 774.0756030008197 782.4648030009121 787.7183439992368 787.8909910004586 795.371581999585 796.6838380005211 798.9738779999316 799.9014889989048 803.093669001013 805.6265469994396 809.9377039987594 813.3236490003765 814.4849040005356 814.5411380007863 816.4537350013852 818.3892010003328 820.4107670001686 824.8474119994789 825.3990480005741 828.0078949984163 832.6431479994208 833.1571859996766 835.9666349999607 839.015951000154 842.2371829990298 844.8660900015384 846.1084390003234 847.3492440003902 847.6202390007675 849.2509359996766 851.0676680002362 852.4011229984462 857.2746990006417 859.1514890007675 865.3834640011191 867.6695560012013 868.8960379995406 872.8661710005254 876.7301430013031 886.805785998702 890.0121260005981

Current
Mean: 811.164 ms
Stdev: 51.129 ms (6.3%)
Runs: 680.4835609998554 682.2458499986678 686.9659020006657 689.207112999633 742.5653889998794 748.922770999372 763.3965250011533 769.6232100017369 770.0104569997638 773.3929039984941 774.5152589995414 779.0008140001446 780.1718349996954 790.4988209996372 798.2908939998597 800.421794001013 802.062663000077 805.2460949998349 810.4372969996184 814.050862999633 820.437580998987 821.1374110002071 821.3629159983248 821.5105799995363 823.3556729983538 825.360270999372 831.3087570015341 831.8927410002798 835.3367110006511 838.1004650015384 838.73783400096 842.4550780002028 842.6774090006948 842.6974289994687 843.7954099997878 845.0200610011816 846.200602998957 846.5876880008727 854.3676350004971 855.187947999686 858.7209890000522 858.8448079992086 866.4774179998785 867.675293000415 870.738119000569 873.4040940012783 874.4958509989083 876.4670010004193
Chat opening (CPU) Baseline
Mean: 164.560 %
Stdev: 2.876 % (1.7%)
Runs: 158.02346919982003 158.73793906019898 158.75479793564608 159.4666618189657 159.52720235018822 159.63456331036463 160.75715174546482 161.33214779571614 161.37215433849983 161.39657356974695 161.98718791555237 162.55356119874253 162.6601605786186 162.9915543976141 162.99844528554155 163.00639348977597 163.5463359137384 163.63707158837428 163.7647855744498 163.8597686924396 163.89805000281666 163.99181976114266 164.13098096523842 164.15507277324758 164.2148548311223 164.22199260981046 164.29623535003878 164.2962692208702 164.3089889956981 164.44523783737495 164.48907318720697 164.52157312194524 164.5532129298359 165.09227303774853 165.43498686657722 165.647181390468 165.67059636202012 165.86236258090284 166.10274273470458 166.3655304497485 166.5109982360002 166.51402056214974 166.5313629760211 166.96171408884376 167.47751432325538 167.52217015185826 167.71644488966274 167.82392649268337 167.84670842860686 167.95541610603678 168.22131611023175 168.39317229047214 168.48770294710673 168.6043005640472 168.63993791665877 168.85479319060866 170.1502581018146

Current
Mean: 165.835 %
Stdev: 2.683 % (1.6%)
Runs: 158.89633898024243 161.23543152284182 161.7953464940865 161.94755974419425 162.0232950540066 162.23578368123393 162.92472129850637 162.93489935891606 163.23290614745247 163.33886489233302 163.44631438925586 163.49779507657658 163.59172966322663 163.67542518635614 163.90007806059768 164.21708756157742 164.289483409684 164.32275988361417 164.46020768543895 164.46826279342415 164.51770298845514 164.55061079593514 164.5886438267162 164.62891294863516 164.79118423148316 165.34753230439026 165.6821590163672 165.71404881969008 165.8245273212259 165.8447288687586 165.85855462239726 165.87515210371575 166.11762181753184 166.29359302431763 166.3208537865392 166.5982066420105 166.62500049602593 166.79411846773115 166.8246188467788 166.83206014006905 166.9536477396432 167.3326117551875 167.40057550740715 167.73403739159522 167.74110633117232 168.38482725117322 168.3963565603557 168.47278792595844 168.6693338773356 169.31190238807272 169.4481251547504 169.8042880607361 169.8394505819097 170.08221423211145 170.09071742422435 170.8414691081423 170.84252898822484 171.02393806650605
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

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

Copy link
Contributor

github-actions bot commented May 8, 2025

Performance Comparison Report 📊 (9/10)

Meaningless Changes To Duration (8/9)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 80.339 ms → 82.500 ms (+2.161 ms, +2.7%)
App start time nativeLaunch 25.310 ms → 24.947 ms (-0.363 ms, -1.4%)
App start time appCreationEnd_To_contentAppeared 506.148 ms → 506.167 ms (+0.019 ms, ±0.0%)
App start time runJsBundle 318.949 ms → 321.983 ms (+3.034 ms, +1.0%)
App start time appCreation 71.117 ms → 70.567 ms (-0.550 ms, -0.8%)
App start time regularAppStart 0.021 ms → 0.022 ms (+0.001 ms, +5.0%)
App start time (CPU) 152.070 % → 155.999 % (+3.929 %, +2.6%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 379.652 MB → 379.663 MB (+0.011 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 28.751 % → 28.444 % (-0.307 %, -1.1%)
Open search router TTI Load Search Options 139.437 ms → 139.213 ms (-0.224 ms, ±0.0%)
Open search router TTI Open Search Router TTI 1275.892 ms → 1281.564 ms (+5.672 ms, ±0.0%)
Open search router TTI (CPU) 150.165 % → 149.835 % (-0.330 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 406.046 MB → 404.934 MB (-1.112 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 26.753 % → 26.778 % (+0.025 %, ±0.0%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 507.480 ms → 507.533 ms (+0.053 ms, ±0.0%)
Report typing (CPU) 98.747 % → 97.911 % (-0.836 %, -0.8%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 471.621 MB → 471.582 MB (-0.039 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 21.609 % → 21.612 % (+0.003 %, ±0.0%)
Chat opening Chat TTI 815.613 ms → 811.164 ms (-4.449 ms, -0.5%)
Chat opening (CPU) 164.560 % → 165.835 % (+1.275 %, +0.8%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 397.882 MB → 399.638 MB (+1.756 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.359 % → 34.029 % (+0.669 %, +2.0%)
Money request - Open Manual Tracking 148.641 ms → 147.836 ms (-0.805 ms, -0.5%)
Money request - Open Contacts 224.424 ms → 222.090 ms (-2.334 ms, -1.0%)
Money request (CPU) 178.856 % → 178.712 % (-0.143 %, ±0.0%)
Money request (FPS) 58.946 FPS → 58.904 FPS (-0.042 FPS, ±0.0%)
Money request (RAM) 463.281 MB → 460.494 MB (-2.787 MB, -0.6%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 43.566 % → 44.005 % (+0.440 %, +1.0%)
Money request - Open Create 141.091 ms → 143.056 ms (+1.965 ms, +1.4%)
Show details
Name Duration
Chat opening (RAM) Baseline
Mean: 397.882 MB
Stdev: 5.570 MB (1.4%)
Runs: 382.5126953125 388.8578125 390.2138671875 390.9326171875 391.5078125 391.6328125 391.9765625 392.13125 392.4658203125 392.9015625 392.9873046875 393.2783203125 393.28515625 393.3779296875 393.5390625 393.7625 393.7703125 393.8837890625 393.9521484375 393.9658203125 394.05234375 394.09921875 394.69296875 394.9109375 394.93359375 394.94609375 395.1828125 395.408203125 395.44609375 397.3765625 397.3796875 398.072265625 398.83203125 398.89609375 399.64609375 400.553125 400.671875 400.8875 401.28828125 401.34375 401.38125 401.3890625 401.984375 402.22109375 402.34609375 402.40546875 402.4859375 403.55625 403.56875 403.6321614583333 403.65 403.7328125 404.409375 404.4772135416667 404.565625 404.67734375 404.8079427083333 408.43515625 408.7953125 410.87109375

Current
Mean: 399.638 MB
Stdev: 5.287 MB (1.3%)
Runs: 385.185546875 388.6703125 390.515625 390.76015625 391.76328125 391.9328125 392.19765625 392.8466796875 393.177734375 393.4423828125 393.560546875 394.01953125 394.22578125 394.2296875 394.25390625 394.580078125 397.21875 397.459375 397.66328125 397.8546875 398.15 399.1625 399.31796875 400.06328125 400.140625 400.33125 400.578125 400.7828125 401.02890625 401.184375 401.3743489583333 401.39453125 401.5421875 401.70234375 401.903125 401.915625 402.08828125 402.38671875 402.4984375 402.6515625 403.1731770833333 403.18359375 403.21640625 403.2625 403.29296875 403.3372395833333 403.375 403.46875 403.515625 403.84375 404.599609375 404.9921875 405.53984375 406.4953125 406.65546875 406.81796875 407.25625 407.32734375 409.53984375
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Chat opening (CPU/UI) Baseline
Mean: 33.359 %
Stdev: 1.834 % (5.5%)
Runs: 28.2 29.6 30.3 30.4 30.8 31 31.1 31.2 31.3 31.3 31.4 31.5 31.6 31.8 32 32 32.2 32.3 32.4 32.4 32.9 33.1 33.2 33.2 33.2 33.2 33.3 33.3 33.5 33.5 33.9 34 34.2 34.2 34.2 34.3 34.3 34.3 34.3 34.4 34.4 34.6 34.6 34.6 34.7 34.7 34.7 34.8 34.8 34.9 34.9 35 35.2 35.2 35.3 35.4 35.8 37.3 38

Current
Mean: 34.029 %
Stdev: 1.608 % (4.7%)
Runs: 30.7 30.8 31.2 31.4 31.6 31.6 32 32.1 32.2 32.4 32.6 32.7 32.8 33 33 33 33.1 33.1 33.2 33.2 33.2 33.3 33.3 33.5 33.6 33.8 33.9 34 34 34 34 34.2 34.4 34.4 34.4 34.5 34.5 34.7 34.7 34.8 34.9 35.1 35.1 35.1 35.3 35.3 35.4 35.4 35.4 35.6 35.6 35.7 36 36 36.2 36.3 37 37.6 37.8
Money request - Open Manual Tracking Baseline
Mean: 148.641 ms
Stdev: 16.555 ms (11.1%)
Runs: 122.50187099725008 122.93811000138521 123.4276119992137 125.41414399817586 128.7411700002849 130.02290799841285 130.05863500013947 130.3008630014956 130.5812179967761 131.3581950031221 131.36149100214243 132.04357899725437 132.93855800107121 132.9852700009942 133.30875699967146 136.75154699757695 136.85477700084448 137.37878400087357 137.7050370015204 139.0607500001788 139.75817899778485 140.17728700116277 141.62748200073838 141.7528080008924 141.76265400275588 142.98087500035763 144.53633600100875 144.72810800001025 145.13081900030375 145.36238599941134 146.70483399927616 146.81164499744773 147.8581949993968 148.44303399696946 151.4291179999709 152.52319299802184 152.74934900179505 155.3934320025146 155.52673400193453 155.74019400030375 155.85497999936342 156.07584599778056 156.3160400018096 156.3166500031948 159.2846280001104 160.45450900122523 161.22806800156832 161.5697019994259 161.6413570009172 162.53629599884152 168.62447100132704 169.16577200219035 169.24918700009584 170.47412199899554 170.66475499793887 173.9140630029142 177.47859700024128 177.89571099728346 188.83805299922824 194.13203899934888

Current
Mean: 147.836 ms
Stdev: 16.067 ms (10.9%)
Runs: 121.75264500081539 122.56152300164104 123.37911000102758 124.02868599817157 126.91076700016856 127.5903730019927 128.77648900076747 129.84053599834442 130.24625699967146 130.61397299915552 132.5903719998896 133.14717600122094 133.66328999772668 134.1067299991846 134.86840799823403 134.94897500053048 134.96496599912643 136.07051599770784 136.5281569994986 136.6423749998212 136.98669400066137 137.156819999218 137.19478400051594 140.3806149996817 143.640340000391 145.2669680006802 145.7071129977703 146.6451820023358 146.69258699938655 146.9930830001831 147.82303900271654 147.94820199906826 149.23844400048256 149.46260599792004 149.65625 149.9977619983256 150.50992799922824 153.08642600104213 154.55668099969625 156.02111800014973 156.22692799940705 156.42858899757266 156.6157229989767 156.6574300006032 158.1991380006075 158.80318200215697 159.63627099990845 160.33113599941134 160.76692800223827 161.89408300071955 162.45605500042439 164.64221199974418 168.75785399973392 169.4268799982965 170.281860999763 172.172485999763 173.63273099809885 180.80830899998546 183.93391900137067 190.29829900339246

Copy link
Contributor

github-actions bot commented May 8, 2025

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

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