Skip to content

14.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 23 May 23:58
· 207 commits to master since this release
c6d8f0e

14.8.0 Release notes

Enhancements

  • Add vendor support to the Android Blueprint (PR #7614).

Fixed

  • A non-streaming progress notifier would not immediately call its callback after registration. Instead you would have to wait for a download message to be received to get your first update - if you were already caught up when you registered the notifier you could end up waiting a long time for the server to deliver a download that would call/expire your notifier (#7627, since v14.6.0).
  • Comparing a numeric property with an argument list containing a string would throw. (#7714, since v14.7.0)

Breaking changes

  • None.

Compatibility

  • Fileformat: Generates files with format v24. Reads and automatically upgrade from fileformat v10. If you want to upgrade from an earlier file format version you will have to use RealmCore v13.x.y or earlier.

Internals

  • util::Thread no longer has any functionality other than get_name() and set_name(). Use std::thread instead (PR #7696).