From e90f48f44703eb257f08f056dd4431ea3a7d5217 Mon Sep 17 00:00:00 2001 From: Nicola Cabiddu Date: Thu, 15 Jun 2023 15:15:46 +0100 Subject: [PATCH] better changelog message for the fix related to queries with list of arguments --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e03c5a897..a75656e2211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,11 +45,12 @@ # 13.14.0 Release notes + ### Enhancements * Support sort/distinct based on values from a dictionary e.g. `TRUEPREDICATE SORT(meta['age'])` (PR [#5311](https://github.com/realm/realm-core/pull/5311)) ### Fixed -* Fix the query parser, it needs to copy a list of arguments and own the memory. This will prevent errors like getting a different result from a query, if the list is modified after its creation and before the execution of the query itself. In the worst case scenario, if the memory is freed before the query is executed, this could lead to crashes, especially for string and binary data types. ([#6674](https://github.com/realm/realm-core/pull/6674), since v12.5.0) +* Querying with list of objects as argument will always return an empty result. ([#6674](https://github.com/realm/realm-core/pull/6674), since v12.5.0) * Fixed a potential crash when opening the realm after failing to download a fresh FLX realm during an automatic client reset ([#6494](https://github.com/realm/realm-core/issues/6494), since v12.3.0) ### Breaking changes