msgpack_codec 2.0.0+1
msgpack_codec: ^2.0.0+1 copied to clipboard
A message pack implementation for dart that works on all platforms.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
2.0.0 - 2025-01-18 #
Changed #
- Forked the library to archive add the following:
- Dart JS support
- Timestamp extension
- message pack codec with chunked conversion
- more and better tests
- various code cleanups and modernizations
- renamed to
msgpack_codec
1.0.1 - 2023-01-12 #
- Remove dependency on dart:io
1.0.0 - 2021-03-11 #
- Migrated to null safety (thanks RootSoft)
0.0.7 - 2020-03-14 #
- Fix wrong length when writing ext8 (0xc7)
0.0.6 - 2019-09-20 #
- Accept any iterable when serializing, not just List
- Accept ByteData when serializing (will be deserialized as Uint8List)
0.0.5 - 2019-05-19 #
- Changed return value from
List<int>
toUint8List
.