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
* Fix types which implement IPackable and IUnpackable but do not have any members cannot be serialized. Issue #202
642
642
* Fix Windows Native build error. Issue #206.
643
643
644
-
Release 0.9.0 RC1 T.B.D.
644
+
Release 0.9.0 RC1 T.B.D
645
+
646
+
NEW FEATURES
647
+
* ByteArrayPacker/ByteArrayUnpacker. They are suitable for fixed pattern serialization/deserialization.
648
+
* Fast mode of unpacker which omits nested collection management. This option can be disabled with setting UnpackerOptions.ValidationLevel to ValidationLevel.Collection.
649
+
650
+
IMPROVEMENTS
651
+
* Byte array based serialization API now uses ByteArrayPacker/ByteArrayUnpacker, improves about 40% faster than Stream based.
652
+
* Deserialization now uses ValidationLevel.None, improves about 30% faster than validating one.
653
+
* Packer/Unpacker performance improvements about 10-20%. As a result, new byte array "fast" unpacker is about 3x faster than previous unpacker.
645
654
646
655
BUG FIXES
647
656
* Fix constructor deserialization fails if the constructor parameters order is not lexical. Issue #233
657
+
* Fix asynchronous multi dimensional array deserialization corruption.
0 commit comments