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
Is there a way to avoid this specialized string handling and have it never use the strings.Join output but show a simpler remove/add for string fields?
The text was updated successfully, but these errors were encountered:
Thanks for the additional context. Even in the case that the UUIDs have significant overlap, the strings.Join format is noisy, and causes other issues for code that tries to detect and replace UUIDs.
Ideally we could turn off this feature completely, is there existing options that can be passed to control this behaviour?
This is a similar topic as #274 and #195, but when using
cmp
to diff UUIDs.When the UUIDs are very different, the output looks like:
The
strings.Join
adds unnecessary noise here, ideally it would be displayed as:However, if the UUIDs have common characters, the output gets really verbose, and isn't particularly useful:
Is there a way to avoid this specialized string handling and have it never use the
strings.Join
output but show a simpler remove/add for string fields?The text was updated successfully, but these errors were encountered: