Skip to content

Commit

Permalink
Upgrade to Core 14.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rorbech committed Jul 16, 2024
1 parent 36ff361 commit e825ebf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@

### Internal
* Reworked test app initializer framework.
* Updated to Realm Core 14.10.3 commit 3334d3869b8cba9a4ae63247f80f3f1739e32c07.

* Updated to Realm Core 14.10.4 commit 4f83c590c4340dd7760d5f070e2e81613eb536aa.

## 2.1.0 (2024-07-12)

Expand Down
2 changes: 1 addition & 1 deletion packages/external/core
Submodule core updated 44 files
+47 −3 CHANGELOG.md
+3 −0 CMakeLists.txt
+1 −1 Package.swift
+3 −3 dependencies.yml
+19 −8 evergreen/config.yml
+2 −2 src/external/bson/bson-decimal128.c
+1 −1 src/external/bson/bson-iter.c
+1 −1 src/realm/object-store/c_api/logging.cpp
+3 −0 src/realm/object-store/results.cpp
+19 −0 src/realm/object-store/sync/async_open_task.cpp
+9 −0 src/realm/object-store/sync/async_open_task.hpp
+1 −2 src/realm/object-store/sync/sync_session.cpp
+4 −6 src/realm/sync/CMakeLists.txt
+45 −25 src/realm/sync/client.cpp
+3 −3 src/realm/sync/client.hpp
+1 −0 src/realm/sync/config.hpp
+123 −2 src/realm/sync/network/network_ssl.cpp
+2 −0 src/realm/sync/network/network_ssl.hpp
+12 −0 src/realm/sync/noinst/client_history_impl.cpp
+9 −0 src/realm/sync/noinst/client_history_impl.hpp
+67 −61 src/realm/sync/noinst/client_impl_base.cpp
+22 −13 src/realm/sync/noinst/client_impl_base.hpp
+13 −12 src/realm/sync/noinst/client_reset.cpp
+3 −3 src/realm/sync/noinst/client_reset.hpp
+3 −4 src/realm/sync/noinst/client_reset_operation.cpp
+1 −2 src/realm/sync/noinst/client_reset_operation.hpp
+4 −0 src/realm/sync/noinst/pending_bootstrap_store.cpp
+2 −1 src/realm/sync/noinst/pending_bootstrap_store.hpp
+20 −5 src/realm/util/file.cpp
+8 −7 src/realm/util/logger.cpp
+1 −1 src/realm/util/logger.hpp
+8 −8 test/benchmark-common-tasks/main.cpp
+25 −2 test/object-store/results.cpp
+1 −16 test/object-store/sync/app.cpp
+3 −1 test/object-store/sync/flx_migration.cpp
+20 −14 test/object-store/sync/flx_sync.cpp
+9 −6 test/object-store/sync/session/connection_change_notifications.cpp
+280 −18 test/object-store/sync/session/progress_notifications.cpp
+9 −19 test/object-store/util/sync/sync_test_utils.cpp
+1 −0 test/object-store/util/sync/sync_test_utils.hpp
+61 −14 test/test_client_reset.cpp
+3 −3 test/test_sync_pending_bootstraps.cpp
+73 −0 test/test_util_network_ssl.cpp
+1 −1 test/util/test_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ class FLXProgressListenerTests {
}

@Test
@Ignore // disabled until https://github.com/realm/realm-core/issues/7869 is fixed
fun uploadProgressListener_changesOnly() = runBlocking {
Realm.open(createSyncConfig(app.createUserAndLogin())).use { realm ->
for (i in 0..3) {
Expand Down

0 comments on commit e825ebf

Please sign in to comment.