You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix XML rendering crash with non-printable characters
Replace DATA_INVARIANT crash with proper escaping when non-printable
characters appear in XML output. Characters valid in XML 1.0 (TAB, LF,
CR) use numeric character references (e.g., 	). Characters invalid
in XML 1.0 (null, other control chars, DEL) use C-style escape
sequences (\0, \xNN). Backslashes are escaped as \\ to avoid
ambiguity.
Co-authored-by: Kiro <kiro-agent@users.noreply.github.com>
0 commit comments