* misc: Improved the hitbox of grouped commands caret
* Fix the hitbox and add a test for nested withins
* changelog entry
* Fix flake in percy snapshot of running test
* update snapshot to take at the right state - put spinner icon back but don't animate it
* internal: (cy.prompt/studio) add ability to track on dirty data in studio
* fix types
* fix build
* add changelog
* unify types
* Update CHANGELOG for version 15.6.0
Updated changelog for version 15.6.0 with new features and bugfixes.
* types update
* Update cli/CHANGELOG.md
* chore: updating v8 snapshot cache
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 096b756d49 chore: convert @packages/net-stubbing tests to vitest from mocha (#32758)
---------
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
* chore: updating v8 snapshot cache
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 096b756d49 chore: convert @packages/net-stubbing tests to vitest from mocha (#32758)
---------
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
* chore: updating v8 snapshot cache
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 096b756d49 chore: convert @packages/net-stubbing tests to vitest from mocha (#32758)
---------
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
* chore: updating v8 snapshot cache
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 93375b7a2a fix: ensure that the text alignment for grouped command logs is consistent (#32757)
* index on develop: 096b756d49 chore: convert @packages/net-stubbing tests to vitest from mocha (#32758)
---------
Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
* fix: ensure that the text alignment for grouped command logs is consistent
* changelog
* Update CHANGELOG for release 15.5.1
Added release notes for version 15.5.1, including a bugfix for command text behavior.
* Apply suggestions from code review
* Update CHANGELOG.md
* chore: test against Node.js 25
* also use Node 24 current
* and 22 latest
* revert the other image updates to just test Node 25
* and binary node versions
Add explicit optimizeDeps.include configuration for React dependencies in the
test fixture's Vite config. This ensures React, React DOM, and JSX runtime
are pre-bundled before component tests execute, preventing a race condition
where the React module could be null during test execution.
The issue occurred because Vite 6.2.5's module loading could execute test
files before React was fully resolved, causing intermittent failures with
'Cannot read properties of null (reading useState)' errors.
This fix ensures React dependencies are always available when tests run,
eliminating the flakiness.
Fixes#32499