Diana Perez Afanador
Diana Perez Afanador
Add Support for asymmetric sync. When an object inherit from `AsymmetricObject` is immediately marked as asymmetric, upon creation this objects is sync'd unidirectionally and cannot be query locally. ```swift class...
This PR contains a complete new API for Flexible Sync, intended to make flexible sync less confusing to the developer. ```swift let app = App(id: "my-app-id") let user = try...
Do not show an error message in cases where `RLMProgressNotificationToken` session is already deallocated ([#7831](https://github.com/realm/realm-swift/issues/7831), since v2.3.0).
Defer @AsyncOpen and @AutoOpen async operation after all environment values are set. Opening the realm after the property wrappers initialisation and before environment values were injected is causing the realm...
This PR is a follow up of different feedbacks obtained about flexible sync. This fixes this * Added `initialSubscription` and `rerunOnOpen` when copying `RLMRealmConfiguration`, this was making `RLMRealmConfiguration.defaultConfiguration` to not...
Fix moving `List` items to a higher index in SwiftUI results in wrong destination index. https://github.com/realm/realm-swift/issues/7956
* Added support for storing nested collections (List and Map not ManagedSet) in a `AnyRealmValue`. ```swift class MixedObject: Object { @Persisted var anyValue: AnyRealmValue } // You can build a...
Added support for string comparison queries, which allows building string queries with the following operators (`>`, `>=`, `
Collections in mixed sync tests