From 5cb7673b98f696c6c01b9d91fa5d99a2dfbb8e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Overg=C3=A5rd=20Nielsen?= Date: Tue, 28 Mar 2023 10:29:37 +0200 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8f3b1363a..ddb53e913f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ ### Enhancements * Support `Realm.logger.level` change at runtime. Added new class `RealmLogger` for managing the realm log ([#1226](https://github.com/realm/realm-dart/pull/1226)). +* Add `RealmResults.isValid` ([#1231](https://github.com/realm/realm-dart/pull/1231)). * Add logging at the Storage level (Core upgrade). * Performance improvement for the following queries (Core upgrade): - * Significant (~75%) improvement when counting (query count) the number of exact matches (with no other query conditions) on a String/int/Uuid/ObjectId property that has an index. This improvement will be especially noticiable if there are a large number of results returned (duplicate values). + * Significant (~75%) improvement when counting (query count) the number of exact matches (with no other query conditions) on a String/int/Uuid/ObjectId property that has an index. This improvement will be especially noticeable if there are a large number of results returned (duplicate values). * Significant (~99%) improvement when querying for an exact match on a Timestamp property that has an index. * Significant (~99%) improvement when querying for a case insensitive match on a Mixed property that has an index. * Moderate (~25%) improvement when querying for an exact match on a Boolean property that has an index.