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
Copy file name to clipboardExpand all lines: Changelog.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -290,15 +290,15 @@ Release date: 8.8.2025
290
290
* A new, far performant, reading and lexing method was written for parsing, resulting in almost 2x improvement when deserializing a large amount of data.
291
291
* Serializer now provides an option to implement a custom code formatting flag, including the option to disable formatting entirely (so no indentation or new line blank characters will be present).
292
292
* DataConverter `CharSequence toString(ParserRegistry myHomeRegistry, Object obj, Object... args)` was changed to `Appendable toString(Appendable source, ParserRegistry myHomeRegistry, Object obj, Object... args) throws IOException` where now, instead of creating the string from the object and returning it, you are supposed to append it directly into the provided source. In this way, you do not have to create your own StringBuilders.
293
-
* This is far more optimal, and together with formatting flags, results in 2x, sometimes even 3x increase in performance when serializing, especially with larger amounts of data.
293
+
* This is far more optimal, and together with formatting flags, results in 2x, sometimes even 3x increase in performance when serializing, especially with larger amounts of data.
294
294
* Key Serializer methods, LoadFrom and SerializeTo were renamed to camel case (original PascalCase was largely a legacy thing...).
295
295
* JsonVariableConverter was added as JSON-specific variant of VariableConverter.
296
296
* ArrayConverter now supports proper serializing of 0 and 1 length arrays (@ identifier for arrays).
297
297
* Slight default formatting changes (';' is no longer used for the last element, similarly to JSON).
298
298
* Other smaller optimizations and API improvements.
0 commit comments