Skip to content

Commit cccdf49

Browse files
committedNov 16, 2022
Add changelog
1 parent 763fee7 commit cccdf49

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## vNext (TBD)
22

33
### Enhancements
4+
* Removed backing fields of Realm Objects' properties which should provide minor improvements to memory used by Realm Objects (Issue [#2647](https://github.com/realm/realm-dotnet/issues/2994))
45
* Added two extension methods on `IDictionary` to get an `IQueryable` collection wrapping the dictionary's values:
56
* `dictionary.AsRealmQueryable()` allows you to get a `IQueryable<T>` from `IDictionary<string, T>` that can be then treated as a regular queryable collection and filtered/ordered with LINQ or `Filter(string)`.
67
* `dictionary.Filter(query, arguments)` will filter the list and return a filtered collection of dictionary's values. It is roughly equivalent to `dictionary.AsRealmQueryable().Filter(query, arguments)`.
@@ -10,6 +11,7 @@
1011
* Flexible sync will now wait for the server to have sent all pending history after a bootstrap before marking a subscription as Complete. (Core upgrade)
1112

1213
### Fixed
14+
* Fixed issue where Realm parameters' initialization would get run twice, resulting in unexpected behavior.
1315
* Prevented `IEmbeddedObject`s and `IAsymmetricObject`s from being used as `RealmValue`s when added to a realm, and displaying more meaningful error messages.
1416
* Fix a use-after-free if the last external reference to an encrypted Realm was closed between when a client reset error was received and when the download of the new Realm began. (Core upgrade)
1517
* Fixed an assertion failure during client reset with recovery when recovering a list operation on an embedded object that has a link column in the path prefix to the list from the top level object. (Core upgrade)

0 commit comments

Comments
 (0)