File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11ObjectBox C and C++ API Changelog
22=================================
33
4+ 5.2.0 (2026-03-06)
5+ ------------------
6+ * Admin: new "Counts and Sizes" view (via Status page) to give an overview over all types their object counts and sizes
7+ * Admin: refresh button for the data view
8+ * Admin: fix reload via browser to stay on the page
9+ * Admin: schema view to display flags as text
10+ * (Minor) performance improvements of HNSW vector search on Linux ARM targets
11+
12+ ### Sync
13+
14+ * Sync protocol version 10
15+ * Update client sync filters variables when online
16+ * Clients report errors to the server
17+ * Add OBXSyncFlags_SkipInvalidTxOps
18+
4195.1.0 (2026-01-19)
520------------------
621* Fix for deleting transactions in non-owner threads with open relation cursors
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ else ()
5555
5656 function (defineObjectBoxLib VARIANT )
5757 # Configuration updated for each release
58- set (DL_VERSION 5.1 .0)
58+ set (DL_VERSION 5.2 .0)
5959
6060 # Platform detection and other setup
6161 set (DL_URL https://github.com/objectbox/objectbox-c/releases/download)
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ box.put({.text = "Buy milk"});
1818
1919See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
2020
21- **Latest version: 5.1 .0** (2026-01-19 ).
21+ **Latest version: 5.2 .0** (2026-03-06 ).
2222See [changelog](CHANGELOG.md) for more details.
2323
2424## Table of Contents:
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ tty -s || quiet=true
4444
4545# Note: optional arguments like "--quiet" shifts argument positions in the case block above
4646
47- version=${1:- 5.1 .0}
47+ version=${1:- 5.2 .0}
4848os=${2:- $(uname)}
4949arch=${3:- $(uname -m)}
5050echo " Base config: OS ${os} and architecture ${arch} "
Original file line number Diff line number Diff line change 33ObjectBox C and C++ API Changelog
44=================================
55
6+ 5.2.0 (2026-03-06)
7+ ------------------
8+ * Admin: new "Counts and Sizes" view (via Status page) to give an overview over all types their object counts and sizes
9+ * Admin: refresh button for the data view
10+ * Admin: fix reload via browser to stay on the page
11+ * Admin: schema view to display flags as text
12+ * (Minor) performance improvements of HNSW vector search on Linux ARM targets
13+
14+ ### Sync
15+
16+ * Sync protocol version 10
17+ * Update client sync filters variables when online
18+ * Clients report errors to the server
19+ * Add OBXSyncFlags_SkipInvalidTxOps
20+
6215.1.0 (2026-01-19)
722------------------
823* Fix for deleting transactions in non-owner threads with open relation cursors
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = "ObjectBox C and C++ API"
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER = "5.1 .0"
41+ PROJECT_NUMBER = "5.2 .0"
4242
4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717 FetchContent_Declare (
1818 objectbox
1919 GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20- GIT_TAG v5.1 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+ GIT_TAG v5.2 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121 )
2222 FetchContent_MakeAvailable (objectbox)
2323
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717 FetchContent_Declare (
1818 objectbox
1919 GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20- GIT_TAG v5.1 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+ GIT_TAG v5.2 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121 )
2222 FetchContent_MakeAvailable (objectbox)
2323
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717 FetchContent_Declare (
1818 objectbox
1919 GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20- GIT_TAG v5.1 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+ GIT_TAG v5.2 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121 )
2222 FetchContent_MakeAvailable (objectbox)
2323
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717 FetchContent_Declare (
1818 objectbox
1919 GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20- GIT_TAG v5.1 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+ GIT_TAG v5.2 .0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121 )
2222 FetchContent_MakeAvailable (objectbox)
2323
You can’t perform that action at this time.
0 commit comments