Skip to content

Commit

Permalink
Update to Core 14.10.2-14-gf66e24d03
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Jul 2, 2024
1 parent bcab33e commit 48e8d21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@
* Tokenizing strings for full-text search could pass values outside the range [-1, 255] to `isspace()`, which is undefined behavior. (Core 14.10.0)
* Opening an Flexible Sync Realm asynchronously may not wait to download all data. (Core 14.10.1)
* Clearing a List of `RealmValue` in an upgraded file would lead to an assertion failing. (Core 14.10.1)
* You could get unexpected merge results when assigning to a nested collection. (Core 14.10.2)
* Fixed removing backlinks from the wrong objects if the link came from a nested list, nested dictionary, top-level dictionary, or list of `RealmValue`, and the source table had more than 256 objects. This could manifest as `array_backlink.cpp:112: Assertion failed: int64_t(value >> 1) == key.value` when removing an object. (Core 14.10.2-14-gf66e24d03)
* Fixed the collapse/rejoin of clusters which contained nested collections with links. This could manifest as `array.cpp:319: Array::move() Assertion failed: begin <= end [2, 1]` when removing an object. (Core 14.10.2-14-gf66e24d03)
* `Session.WaitForUpload()` was inconsistent in how it handled commits which did not produce any changesets to upload. Previously it would sometimes complete immediately if all commits waiting to be uploaded were empty, and at other times it would wait for a server roundtrip. It will now always complete immediately. (Core 14.10.2-14-gf66e24d03)

### Compatibility
* Realm Studio: 15.0.0 or later.

### Internal
* Using Core 14.9.0.
* Using Core v14.10.2-14-gf66e24d03.

## 12.2.0 (2024-05-22)

Expand Down
2 changes: 1 addition & 1 deletion wrappers/realm-core
Submodule realm-core updated 64 files
+50 −0 CHANGELOG.md
+1 −1 Package.swift
+1 −1 dependencies.yml
+3 −3 doc/development/how-to-release.md
+10 −1 evergreen/config.yml
+2 −3 src/external/s2/s2polygonbuilder.cc
+2 −1 src/realm/array_mixed.cpp
+7 −0 src/realm/chunked_binary.cpp
+3 −0 src/realm/chunked_binary.hpp
+44 −43 src/realm/cluster.cpp
+35 −26 src/realm/cluster.hpp
+36 −39 src/realm/cluster_tree.cpp
+2 −2 src/realm/cluster_tree.hpp
+17 −8 src/realm/db.cpp
+2 −1 src/realm/db.hpp
+6 −4 src/realm/dictionary.cpp
+6 −7 src/realm/list.cpp
+1 −1 src/realm/obj.cpp
+5 −0 src/realm/object-store/impl/realm_coordinator.hpp
+14 −17 src/realm/object-store/sync/app.cpp
+2 −1 src/realm/object-store/sync/async_open_task.cpp
+154 −52 src/realm/object-store/sync/impl/app_metadata.cpp
+1 −1 src/realm/object-store/sync/impl/app_metadata.hpp
+2 −1 src/realm/query_engine.cpp
+2 −1 src/realm/query_expression.hpp
+128 −250 src/realm/sync/client.cpp
+5 −22 src/realm/sync/history.hpp
+66 −21 src/realm/sync/noinst/client_history_impl.cpp
+8 −5 src/realm/sync/noinst/client_history_impl.hpp
+11 −63 src/realm/sync/noinst/client_impl_base.cpp
+5 −85 src/realm/sync/noinst/client_impl_base.hpp
+0 −42 src/realm/sync/noinst/client_reset_recovery.cpp
+1 −1 src/realm/sync/noinst/pending_bootstrap_store.cpp
+1 −1 src/realm/sync/noinst/pending_bootstrap_store.hpp
+6 −8 src/realm/sync/noinst/protocol_codec.hpp
+1 −1 src/realm/sync/noinst/server/server.hpp
+0 −2 src/realm/sync/noinst/server/server_history.hpp
+41 −0 src/realm/sync/protocol.hpp
+1 −1 src/realm/sync/tools/apply_to_state_command.cpp
+1 −0 src/realm/sync/transform.cpp
+4 −2 src/realm/util/cli_args.cpp
+30 −8 src/realm/util/flat_map.hpp
+1 −1 test/object-store/benchmarks/client_reset.cpp
+4 −10 test/object-store/c_api/c_api.cpp
+74 −119 test/object-store/realm.cpp
+2 −2 test/object-store/results.cpp
+21 −23 test/object-store/sync/client_reset.cpp
+16 −26 test/object-store/sync/flx_migration.cpp
+74 −119 test/object-store/sync/flx_schema_migration.cpp
+82 −126 test/object-store/sync/flx_sync.cpp
+97 −16 test/object-store/sync/metadata.cpp
+38 −4 test/object-store/sync/session/connection_change_notifications.cpp
+4 −0 test/object-store/test_runner.cpp
+2 −0 test/object-store/thread_safe_reference.cpp
+26 −18 test/object-store/util/sync/sync_test_utils.cpp
+2 −2 test/object-store/util/sync/sync_test_utils.hpp
+2 −3 test/sync_fixtures.hpp
+9 −5 test/test_client_reset.cpp
+418 −0 test/test_mixed_null_assertions.cpp
+46 −6 test/test_shared.cpp
+121 −7 test/test_sync.cpp
+46 −1 test/test_util_flat_map.cpp
+2 −1 test/util/crypt_key.cpp
+0 −12 test/util/crypt_key.hpp

0 comments on commit 48e8d21

Please sign in to comment.