Skip to content

Commit

Permalink
Use Core 14.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Jul 19, 2024
1 parent 0fdf935 commit 12ee23e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
## vNext (TBD)

### Enhancements
* None
* On Windows devices Device Sync will additionally look up SSL certificates in the Windows Trusted Root Certification Authorities certificate store when establishing a connection. (Core 14.11.0)
* Role and permissions changes no longer require a client reset to update the local realm. (Core 14.11.0)

### Fixed
* None
* When a public name is defined on a property (using `@MapTo`), calling `query("... SORT/DISTINCT(mapped-to-name)")` with the internal name could throw an error like `Cannot sort on key path 'NAME': property 'PersonObject.NAME' does not exist`. (Core 14.10.4)

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

### Internal
* Using Core x.y.z.
* Using Core 14.11.0.

## 3.2.0 (2024-07-10)

Expand Down
2 changes: 1 addition & 1 deletion packages/realm_dart/src/realm-core
Submodule realm-core updated 47 files
+51 −2 CHANGELOG.md
+1 −1 Package.swift
+4 −3 dependencies.yml
+2 −1 evergreen/config.yml
+19 −3 src/realm.h
+5 −0 src/realm/object-store/c_api/app.cpp
+1 −1 src/realm/object-store/c_api/logging.cpp
+17 −0 src/realm/object-store/c_api/schema.cpp
+2 −0 src/realm/object-store/c_api/sync.cpp
+12 −0 src/realm/object-store/c_api/types.hpp
+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
+3 −1 src/realm/object-store/sync/sync_session.hpp
+4 −6 src/realm/sync/CMakeLists.txt
+55 −67 src/realm/sync/client.cpp
+21 −11 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
+40 −28 src/realm/sync/noinst/client_impl_base.cpp
+15 −12 src/realm/sync/noinst/client_impl_base.hpp
+13 −5 src/realm/sync/noinst/pending_bootstrap_store.cpp
+2 −1 src/realm/sync/noinst/pending_bootstrap_store.hpp
+10 −5 src/realm/sync/noinst/protocol_codec.hpp
+22 −6 src/realm/sync/protocol.hpp
+1 −3 src/realm/sync/tools/apply_to_state_command.cpp
+8 −7 src/realm/util/logger.cpp
+1 −1 src/realm/util/logger.hpp
+1 −0 test/object-store/CMakeLists.txt
+72 −32 test/object-store/c_api/c_api.cpp
+25 −2 test/object-store/results.cpp
+1 −16 test/object-store/sync/app.cpp
+109 −19 test/object-store/sync/client_reset.cpp
+1,223 −0 test/object-store/sync/flx_role_change.cpp
+74 −77 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
+84 −36 test/object-store/util/sync/baas_admin_api.cpp
+12 −5 test/object-store/util/sync/baas_admin_api.hpp
+1 −1 test/object-store/util/sync/flx_sync_harness.hpp
+23 −17 test/object-store/util/sync/sync_test_utils.cpp
+12 −0 test/object-store/util/sync/sync_test_utils.hpp
+14 −2 test/object-store/util/test_utils.hpp
+3 −3 test/test_sync_pending_bootstraps.cpp
+73 −0 test/test_util_network_ssl.cpp

0 comments on commit 12ee23e

Please sign in to comment.