Realm Core v14.11.1
github-actions
released this
25 Jul 09:28
·
60 commits
to master
since this release
14.11.1 Release notes
Enhancements
- None.
Fixed
- App subscription callback was getting fired before the user profile was retrieved on login, leading to an empty user profile when using the callback. (#7889, since v14.7.0)
Breaking changes
- The websocket error codes
websocket_client_too_old
,websocket_client_too_new
, andwebsocket_protocol_mismatch
along with their C API constants were removed. These corresponded to errors the legacy C++ server could have sent, but the baas sync server never did. Any platform networking implementations that surfaced these errors can report awebsocket_fatal_error
instead if an unknown error occurs during the websocket handshake. If a client connects that is too old or too new, it will finish the websocket handshake and then receive an in-band syncERROR
message that will be handled by the sync error handler. PR #7917
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
- None.