2022-01-20 21:30:03 +00:00
|
|
|
## 2.0.5
|
2021-08-02 20:31:36 +00:00
|
|
|
|
|
|
|
- switch to null safety (#6696)
|
2021-11-18 18:56:29 +00:00
|
|
|
- add Object APIs (pack/unpack) (#6682, #6723, #6846)
|
2021-08-02 20:31:36 +00:00
|
|
|
- add custom builder buffer allocator support (#6711)
|
2021-11-18 18:56:29 +00:00
|
|
|
- add `Builder.size()` - finished buffer size (#6403)
|
2021-08-02 20:31:36 +00:00
|
|
|
- make `writeString()` argument non-nullable (#6737)
|
|
|
|
- make tables fixed size (expect the number of fields when creating) (#6735)
|
|
|
|
- make table deduplication optional (param `deduplicateTables`) (#6734)
|
2021-11-18 18:56:29 +00:00
|
|
|
- change `Builder.reset()` to reuse an existing buffer (#6661)
|
2021-08-02 20:31:36 +00:00
|
|
|
- change table building to assert() instead of exceptions (#6754)
|
|
|
|
- optimize `writeString()` for ASCII (param `asciiOptimization`) (#6736)
|
2021-11-18 18:56:29 +00:00
|
|
|
- change `StringReader` to make ASCII optimization optional (param `asciiOptimization`) (#6758)
|
|
|
|
- change `[byte]` and `[ubyte]` representation to `dart:typed_data` `Int8List` and `Uint8List` (#6839)
|
2021-08-02 20:31:36 +00:00
|
|
|
- rename `lowFinish()` to `buffer` getter (#6712)
|
2021-11-18 18:56:29 +00:00
|
|
|
- fix `Builder._writeString()` - always write trailing zero byte (#6390)
|
|
|
|
- fix `Builder.reset()` - clear vTables (#6386)
|
2021-08-02 20:31:36 +00:00
|
|
|
- make sure added padding is zeroed, same as in C++ (#6716)
|
|
|
|
- many performance improvements (#6755)
|
2018-08-09 16:50:54 +00:00
|
|
|
|
|
|
|
## 1.9.2
|
|
|
|
|
|
|
|
- Ensure `_writeString` adds enough padding to null terminate strings.
|
|
|
|
|
|
|
|
## 1.9.1
|
|
|
|
|
|
|
|
- Changed constant identifiers to be compatible with Dart 2.x
|
|
|
|
- No longer supports Dart 1.x
|
|
|
|
|
|
|
|
## 1.9.0
|
|
|
|
|
2021-11-18 18:56:29 +00:00
|
|
|
- Initial release, supports Dart 1.x and many dev versions of Dart 2.x
|