Releases: objectbox/objectbox-generator
Releases · objectbox/objectbox-generator
v4.0.0
C++ improvements
- ObjectBox Generator is now integrated with CMake.
You can now useadd_obx_schema()
directly from your C++ project.
For details, check the Generator documentation page. - Support for float vector properties and HNSW vector search indexing
- The generator is now statically linked for Linux making the executable usable from more distributions
v4.0.0-beta
See 4.0.0 final for release notes
v4.0.0-alpha3
Pre-release
(updated module path)
v4.0.0-alpha2
Pre-release v4.0.0-alpha2
v4.0.0-alpha1
Pre-release alpha 1
v4.0.0-alpha0
Pre-release alpha 0
v0.15.0-alpha1
Test pre-release version 2
v0.15.0-alpha0
This is a test pre-release alpha 0 to 0.15.0.
v0.14.0
General improvements
- Update FlatBuffers to v23.5.26
C++ improvements
- The
-cpp
CLI parameter now defaults to (at least) C++14 output, e.g. now generatesstd::make_unique()
- Added new mode
-cpp11
for C++11 output (C++11 stays the minimal supported version) - New CLI parameters
-empty-string-as-null
and-nan-as-null
to persist "special values" as null in the database - Fixes to generated code that fills a given object with DB values: strings, vectors, and optional members are now properly reset on null values
- Update catch2 to
2.13.10