Skip to content

Commit 6c48851

Browse files
committed
Updated change log.
1 parent 1d15007 commit 6c48851

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- Bug Fixes
44
- Updated `rich_utils.ANSI_STYLE_SEQUENCE_RE` to only match ANSI SGR (Select Graphic Rendition)
5-
sequences for text styling.
5+
sequences for text styling. It previously also matched DEC Private Mode sequences.
66

77
## 3.2.1 (February 21, 2026)
88

tests/test_string_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def test_preserve_non_style_csi() -> None:
150150

151151

152152
def test_preserve_private_modes() -> None:
153-
# Test that DEC private modes (containing '?') are not stripped
153+
# Test that DEC Private Modes (containing '?') are not stripped
154154
# Hide cursor (\x1b[?25l) and Show cursor (\x1b[?25h)
155155
hide_cursor = "\x1b[?25l"
156156
show_cursor = "\x1b[?25h"

0 commit comments

Comments
 (0)