1# Flatbuffers Change Log 2 3All major or breaking changes will be documented in this file, as well as any 4new features that should be highlighted. Minor fixes or improvements are not 5necessarily listed. 6 7## 2.0.7 (Aug 22 2022) 8 9* This is the first version with an explicit change log, so all the previous 10features will not be listed. 11 12* Verifier now checks that buffers are at least the minimum size required to be 13a flatbuffers (12 bytes). This includes nested flatbuffers, which previously 14could be declared valid at size 0. 15 16* Annotated binaries. Given a flatbuffer binary and a schema (or binary schema) 17one can generate an annotated flatbuffer (.afb) to describe each byte in the 18binary with schema metadata and value. 19 20* First binary schema generator (Lua) to generate Lua code via a .bfbs file. 21This is mostly an implementation detail of flatc internals, but will be slowly 22applied to the other language generators.