Skip to content

Commit 6761e31

Browse files
BoxStore: compatible with database version 5.3.0 (2026-03-23 or newer)
2026-03-10 has the JNI API to apply Sync filter variables.
1 parent ef503af commit 6761e31

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ For more insights into what changed in the database libraries, [check the Object
66

77
## Next release
88

9+
- Update Android and JVM libraries to database version `5.3.0-2026-03-23`
10+
- Admin: Status tab "Count and Sizes" and "System and Info" improved
11+
912
### Sync
1013

1114
- Conflict resolution via the new annotations `@SyncClock` and `@SyncPrecedence` (allows last win with custom conflict
1215
resolution)
16+
- Fix bad Sync client state after multiple full sync messages were interrupted
17+
- Fix adding indexes to Sync types
1318

1419
## 5.3.0 - 2026-03-10
1520

objectbox-java/src/main/java/io/objectbox/BoxStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class BoxStore implements Closeable {
9292
* This is used (currently only in tests) to make sure a database library has a compatible JNI API by checking the
9393
* version number matches exactly and the date is the same or newer.
9494
*/
95-
private static final String VERSION = "5.2.0-2026-03-10";
95+
private static final String VERSION = "5.3.0-2026-03-23";
9696

9797
private static final String OBJECTBOX_PACKAGE_NAME = "objectbox";
9898
private static BoxStore defaultStore;

0 commit comments

Comments
 (0)