removed unused automigrate methods and updated changelog

This commit is contained in:
Gani Georgiev
2022-11-29 22:28:38 +02:00
parent a4953cbb4e
commit 9ba710cdc5
3 changed files with 4 additions and 55 deletions
+1 -1
View File
@@ -720,7 +720,7 @@ func marhshalWithoutEscape(v any, prefix string, indent string) ([]byte, error)
}
// unescape escaped unicode characters
unescaped, err := strconv.Unquote(strings.Replace(strconv.Quote(string(raw)), `\\u`, `\u`, -1))
unescaped, err := strconv.Unquote(strings.ReplaceAll(strconv.Quote(string(raw)), `\\u`, `\u`))
if err != nil {
return nil, err
}