pro_mpack 3.0.0+1
pro_mpack: ^3.0.0+1 copied to clipboard
A Dart library for serializing and deserializing data in the MessagePack format.
3.0.0+1 #
- Fix: README.md
3.0.0 #
- Feat: Introduced zero-allocation streaming capabilities. Added
MessagePackStreamTransformer(streamDecoder) to seamlessly reconstruct fragmented chunks byte-by-byte without allocating temporary buffers. - Feat: Massive API modernization. Introduced
MessagePackScanneras an abstract final class, replacedObjectwithdynamicfor better type flexibility, addedunpackAs<T>(), and added configuration forallowOverwriteandunhandledTypes. - Performance: Significant performance improvements across the entire encoder and decoder. Eliminated temporary memory allocations for extension packing by implementing the Reserve & Backpatch pattern.
- Examples: Replaced simple examples with four robust, real-world runnable architectures: Basic Usage, Extensions in Depth, Advanced Network Streaming, and Big Data File Streaming.
- Docs: Completely restructured the main
README.mdand inline documentation. - Fix: Resolved internal type-checking bugs in
_checkType<T>()and other minor edge-cases.
2.1.0 #
- Feat: Introduced a high-level
MessagePackAPI (lib/src/message_pack.dart) offering a builder-style interface. This includes support for declarative and imperative custom extensions, polymorphic group registration (registerGroup), and seamless integration with the DartCodecinterface. - Feat: Added a new robust and exhaustive
MessagePackExceptionhierarchy (lib/src/core/exception.dart) for granular error handling. - Update dependencies to the latest versions
2.0.2 #
- Update dependencies to the latest versions
2.0.1 #
- Update dependencies to the latest versions
2.0.0 #
- Update dependencies to the latest versions, min sdk: ^3.6.0
1.1.1 #
- Update dependencies to the latest versions to ensure compatibility and stability.
1.1.0 #
- Fix: Expanded test coverage to improve validation across a broader range of edge cases, enhancing overall reliability.
- Fix: Resolved test failures following dependency updates, ensuring compatibility and stability with the latest versions.
- Docs: Updated documentation to include new properties.
- Feat: Added initialBufferSize parameter to the serializer constructor, enabling customized buffer size for optimized memory management.
- Update: Updated dependencies to the latest versions to ensure compatibility and stability.
1.0.2 #
- Update documentation.
- Update dependencies.
1.0.1 #
- Update documentation.
1.0.0 #
- Initial version.