flatbuffers v0.3.0.0 Release Notes
Release Date: 2020-11-14 // almost 4 years ago-
- โ
FlatBuffers.Vector.toByteString
renamed toFlatBuffers.Vector.toLazyByteString
- ๐ Allow trailing comma after the last enum/union field for compatibility with flatc.
- If a Haskell keyword is used as the name of a table or struct, then suffix the name of the generated constructor with an underscore.
- โ
Previous changes from v0.2.0.0
-
- โ Add support for bitmasks, i.e. enums with the
bit_flags
attribute. FlatBuffers.Vector.length
changed fromEither ReadError Int32
toInt32
.- Vector length is now read once upfront, rather than on every access.
- โ Added to
FlatBuffers.Vector
:fromByteString
fromLazyByteString
fromMonoFoldable
(supportsData.Vector.Unboxed
andData.Vector.Storable
)take
drop
toByteString
- TemplateHaskell:
- Added
colorName
for enums. - Fixed error messages when running
ghcid
(they used to be truncated).
- Added
- โ Add support for bitmasks, i.e. enums with the