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
For now, sanitizing functions will trim the trailing string when the byte length exceeds the max_len.
This behavior may not be preferable in some cases.
Make it possible to choose the behavior of sanitizing when a byte length of the value exceeds max_len and change the default behavior.
Choices of behavior:
KEEP: do nothing
TRIM: trim the trailing string (current default)
TRIM_NAME: trim the trailing string except for the file extension
ERROR: raise an exception (new default)
The text was updated successfully, but these errors were encountered:
For now, sanitizing functions will trim the trailing string when the byte length exceeds the
max_len
.This behavior may not be preferable in some cases.
Make it possible to choose the behavior of sanitizing when a byte length of the value exceeds
max_len
and change the default behavior.Choices of behavior:
KEEP
: do nothingTRIM
: trim the trailing string (current default)TRIM_NAME
: trim the trailing string except for the file extensionERROR
: raise an exception (new default)The text was updated successfully, but these errors were encountered: