Skip to content

Commit 93375b7

Browse files
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
1 parent a15c705 commit 93375b7

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<!-- See the ../guides/writing-the-cypress-changelog.md for details on writing the changelog. -->
2+
## 15.5.1
3+
4+
_Released 10/20/2025 (PENDING)_
5+
6+
**Bugfixes:**
7+
8+
- 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).
9+
210
## 15.5.0
311

412
_Released 10/17/2025_

packages/reporter/src/commands/commands.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@
487487
.command-expander {
488488
color: $gray-500;
489489
transform: rotate(-90deg);
490+
transform-origin: center;
490491
transition: transform 150ms ease-out;
491492

492493
path {
@@ -514,6 +515,7 @@
514515
padding: 0;
515516
align-items: center;
516517
justify-content: center;
518+
height: 28px;
517519

518520
.command-expander {
519521
margin: 0;

scripts/gulp/monorepoPaths.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const monorepoPaths = {
2121
pkgLaunchpad: path.join(__dirname, '../../packages/launchpad'),
2222
pkgNetStubbing: path.join(__dirname, '../../packages/net-stubbing'),
2323
pkgNetwork: path.join(__dirname, '../../packages/network'),
24+
pkgNetworkTools: path.join(__dirname, '../../packages/network-tools'),
2425
pkgPackherdRequire: path.join(__dirname, '../../packages/packherd-require'),
2526
pkgProxy: path.join(__dirname, '../../packages/proxy'),
2627
pkgReporter: path.join(__dirname, '../../packages/reporter'),

0 commit comments

Comments
 (0)