chromium_pickle 1.1.1 chromium_pickle: ^1.1.1 copied to clipboard
This library ports Chromium's Pickle class to Dart and provides facilities for basic binary value packing and unpacking.
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.
1.1.1 #
Release date: 2024-01-15
Fixed #
- Fixed bug with empty pickle header allocation. (IDK why every other implementation uses 0 instead of 4, like in original chromium pickle)
1.1.0 #
1.0.4 #
Release date: 2023-06-23
Fixed #
- Fixed bug with buffer linking in
PickleIterator
(now iterators refer to the pickle itself, not buffer)
Deprecated #
- Deprecated
PickleIterator.payload
,PickleIterator.payloadOffset
,PickleIterator.endIndex
andPickle.getPayloadSize()
Removed #
- Removed
lib/src/enums/enums.dart
Changed #
- Reformatted code
1.0.3 #
1.0.2 #
1.0.1 #
Release date: 2023-02-06
Added #
- GitHub
Generate documentation
workflow. (Documentation is now also available on GitHub Pages).
Changed #
- Updated comments in source code.
CHANGELOG.md
now usesKeep a Changelog
based format.- Updated
README.md
. - Library description.
Fixed #
- GitHub
Test
workflow.