Skip to content

Commit

Permalink
Update to Core 13.17.1 (#3404)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev authored Aug 1, 2023
1 parent bddc29c commit 01fd7b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## vNext (TBD)

### Enhancements
* None
* Fixed a rare corruption of files on streaming format (often following compact, convert or copying to a new file). (Core 13.17.1)
* Trying to search a full-text indexes created as a result of an additive schema change (i.e. applying the differences between the local schema and a synchronized realm's schema) could have resulted in an IllegalOperation error with the error code `Column has no fulltext index`. (Core 13.17.1)
* Sync progress for DOWNLOAD messages from server state was updated wrongly. This may have resulted in an extra round-trip to the server. (Core 13.17.1)

### Fixed
* Fixed a race condition between canceling an async write transaction and closing the Realm file, which could result in an `ObjectDisposedException : Safe handle has been closed` being thrown. ([PR #3400](https://github.com/realm/realm-dotnet/pull/3400))
Expand All @@ -11,7 +13,7 @@
* Realm Studio: 13.0.0 or later.

### Internal
* Using Core 13.17.0
* Using Core 13.17.1

## 11.3.0 (2023-07-26)

Expand Down
2 changes: 1 addition & 1 deletion wrappers/realm-core
Submodule realm-core updated 68 files
+48 −0 CHANGELOG.md
+1 −1 Package.swift
+1 −1 dependencies.list
+59 −99 evergreen/config.yml
+8 −2 evergreen/install_baas.sh
+7 −4 evergreen/setup_baas_host.sh
+7 −4 evergreen/setup_baas_host_local.sh
+79 −59 src/realm/alloc_slab.cpp
+13 −3 src/realm/alloc_slab.hpp
+12 −1 src/realm/db.cpp
+2 −0 src/realm/group.cpp
+14 −2 src/realm/object-store/object_store.cpp
+15 −7 src/realm/object-store/schema.cpp
+3 −45 src/realm/object-store/sync/impl/sync_metadata.cpp
+4 −20 src/realm/object-store/sync/impl/sync_metadata.hpp
+9 −10 src/realm/object-store/sync/sync_session.cpp
+12 −15 src/realm/sync/client.cpp
+4 −4 src/realm/sync/client.hpp
+4 −1 src/realm/sync/noinst/client_history_impl.cpp
+2 −0 src/realm/sync/noinst/client_impl_base.cpp
+1 −1 src/realm/sync/noinst/client_impl_base.hpp
+5 −5 src/realm/sync/noinst/pending_bootstrap_store.cpp
+9 −0 src/realm/util/file_mapper.hpp
+34 −7 test/object-store/CMakeLists.txt
+13 −14 test/object-store/audit.cpp
+1 −1 test/object-store/backup.cpp
+3 −3 test/object-store/benchmarks/CMakeLists.txt
+5 −5 test/object-store/benchmarks/client_reset.cpp
+11 −11 test/object-store/benchmarks/object.cpp
+9 −9 test/object-store/benchmarks/results.cpp
+40 −15 test/object-store/c_api/c_api.cpp
+8 −8 test/object-store/collection_change_indices.cpp
+2 −2 test/object-store/dictionary.cpp
+7 −7 test/object-store/frozen_objects.cpp
+10 −10 test/object-store/geospatial.cpp
+14 −14 test/object-store/index_set.cpp
+4 −4 test/object-store/list.cpp
+43 −4 test/object-store/main.cpp
+14 −14 test/object-store/migrations.cpp
+12 −0 test/object-store/objstore-tests.do-not-commit
+23 −19 test/object-store/realm.cpp
+22 −22 test/object-store/results.cpp
+3 −3 test/object-store/sectioned_results.cpp
+117 −52 test/object-store/sync/app.cpp
+22 −21 test/object-store/sync/client_reset.cpp
+7 −6 test/object-store/sync/file.cpp
+14 −10 test/object-store/sync/flx_migration.cpp
+64 −56 test/object-store/sync/flx_sync.cpp
+11 −11 test/object-store/sync/metadata.cpp
+20 −1 test/object-store/sync/migration_store_test.cpp
+7 −13 test/object-store/sync/remote_mongo_tests.cpp
+6 −7 test/object-store/sync/session/connection_change_notifications.cpp
+3 −3 test/object-store/sync/session/progress_notifications.cpp
+15 −16 test/object-store/sync/session/session.cpp
+8 −6 test/object-store/sync/session/wait_for_completion.cpp
+13 −12 test/object-store/sync/sync_manager.cpp
+8 −9 test/object-store/sync/user.cpp
+10 −8 test/object-store/util/sync/baas_admin_api.cpp
+13 −9 test/object-store/util/sync/baas_admin_api.hpp
+6 −5 test/object-store/util/sync/flx_sync_harness.hpp
+6 −5 test/object-store/util/sync/session_util.hpp
+6 −2 test/object-store/util/sync/sync_test_utils.cpp
+8 −8 test/object-store/util/sync/sync_test_utils.hpp
+12 −11 test/object-store/util/test_file.cpp
+4 −3 test/object-store/util/test_utils.cpp
+10 −3 test/test_alloc.cpp
+82 −29 test/test_sync.cpp
+41 −0 tools/cmake/Utilities.cmake

0 comments on commit 01fd7b1

Please sign in to comment.