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
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,28 @@
1
+
1.5.0 / 2023-02-27
2
+
==================
3
+
4
+
This release contains all features and bugfixes from 1.5.0-RC plus some experimental features and bugfixes on its own (see below).
5
+
Kotlin 1.8.10 is used as a default.
6
+
7
+
### HoconEncoder and HoconDecoder interfaces and HOCON-specific serializers
8
+
9
+
These interfaces work in a way similar to `JsonEncoder` and `JsonDecoder`: they allow intercepting (de)serialization process,
10
+
making writing if custom HOCON-specific serializers easier. New `ConfigMemorySizeSerializer` and `JavaDurationSerializer` already make use of them.
11
+
See more details in the [PR](https://github.com/Kotlin/kotlinx.serialization/pull/2094).
12
+
Big thanks to [Alexander Mikhailov](https://github.com/alexmihailov) for contributing this!
13
+
14
+
### Ability to read buffered huge strings in custom Json deserializers
15
+
16
+
New interface `ChunkedDecoder` allows you to read huge strings that may not fit in memory by chunks.
17
+
Currently, this interface is only implemented by Json decoder that works with strings and streams,
18
+
but we may expand it later, if there's a demand for it.
19
+
See more details in the [PR](https://github.com/Kotlin/kotlinx.serialization/pull/2012) authored by [Alexey Sviridov](https://github.com/fred01).
20
+
21
+
### Bugfixes
22
+
23
+
* Improve runtime exceptions messages (#2180)
24
+
* Added support for null values for nullable enums in lenient mode (#2176)
25
+
* Prevent class loaders from leaking when using ClassValue cache (#2175)
0 commit comments