github objectbox/objectbox-dart v1.7.0

latest releases: v4.0.1, v4.0.0, v2.5.1...
18 months ago
  • Support more concise method chaining when using a sort order with a query:
    // BEFORE
    final query = (box.query()..order(Person_.name)).build();
    // AFTER
    final query = box.query().order(Person_.name).build();
  • Allow analyzer with major version 5. #487
  • Generator not longer warns that it can not find the package source root if the output directory is
    the package root directory.
  • Query: add .containsElement, deprecate .contains condition for List<String>. #481
  • Add StorageException which is a ObjectBoxException with an errorCode (a OBX_ERROR code).
  • Throw DbFullException instead of ObjectBoxException with message 10101 Could not put (error
    code OBX_ERROR_DB_FULL).
  • Change Query.findUnique() to throw NonUniqueResultException instead of
    UniqueViolationException if there is more than one result.
  • Update: objectbox-c 0.18.0.
  • Update: objectbox-android 3.5.0. If you are using Admin, make sure to update your objectbox-android-objectbrowser dependency.
  • Update: objectbox-swift 1.8.1-rc.
  • (Data) Sync only: protocol updates improving efficiency. Reach out via your existing contact to check if any actions are required for your setup.

Don't miss a new objectbox-dart release

NewReleases is sending notifications on new releases.