fix: ensure that the text alignment for grouped command logs is consistent (#32757)

* 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
This commit is contained in:
Ryan Manuel
2025-10-18 15:34:21 -05:00
committed by GitHub
parent a15c705650
commit 93375b7a2a
3 changed files with 11 additions and 0 deletions

View File

@@ -1,4 +1,12 @@
<!-- See the ../guides/writing-the-cypress-changelog.md for details on writing the changelog. -->
## 15.5.1
_Released 10/20/2025 (PENDING)_
**Bugfixes:**
- Fixes an issue where grouped command text jumps up and down when expanding and collapsing in the command log. Addressed in [#32757](https://github.com/cypress-io/cypress/pull/32757).
## 15.5.0
_Released 10/17/2025_

View File

@@ -487,6 +487,7 @@
.command-expander {
color: $gray-500;
transform: rotate(-90deg);
transform-origin: center;
transition: transform 150ms ease-out;
path {
@@ -514,6 +515,7 @@
padding: 0;
align-items: center;
justify-content: center;
height: 28px;
.command-expander {
margin: 0;

View File

@@ -21,6 +21,7 @@ export const monorepoPaths = {
pkgLaunchpad: path.join(__dirname, '../../packages/launchpad'),
pkgNetStubbing: path.join(__dirname, '../../packages/net-stubbing'),
pkgNetwork: path.join(__dirname, '../../packages/network'),
pkgNetworkTools: path.join(__dirname, '../../packages/network-tools'),
pkgPackherdRequire: path.join(__dirname, '../../packages/packherd-require'),
pkgProxy: path.join(__dirname, '../../packages/proxy'),
pkgReporter: path.join(__dirname, '../../packages/reporter'),