Skip to content

Commit

Permalink
Upgrade to Realm Core v13.23.4 (#6254)
Browse files Browse the repository at this point in the history
* Upgrade to Realm Core v13.23.4
---------
Co-authored-by: Kræn Hansen <kraen.hansen@mongodb.com>
  • Loading branch information
kneth committed Nov 16, 2023
1 parent 167651f commit cc63892
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
* Fixed FLX subscriptions not being sent to the server if the session was interrupted during bootstrapping. ([realm/realm-core#7077](https://github.com/realm/realm-core/issues/7077), since v10.12.0)
* Fixed FLX subscriptions not being sent to the server if an upload message was sent immediately after a subscription was committed. ([realm/realm-core#7076](https://github.com/realm/realm-core/issues/7076), since v12.3.0)
* Fixed application crash with `KeyNotFound` exception when subscriptions are marked complete after a client reset. ([realm/realm-core#7090](https://github.com/realm/realm-core/issues/7090), since v10.19.0)

* Fixed a crash at a very specific time during a `DiscardLocal` client reset on a FLX Realm could leave subscriptions in an invalid state. ([realm/realm-core#7110](https://github.com/realm/realm-core/pull/7110), since v10.19.4)
* Fixed an error "Invalid schema change (UPLOAD): cannot process AddColumn instruction for non-existent table" when using automatic client reset with recovery in dev mode to recover schema changes made locally while offline. ([realm/realm-core#7042](https://github.com/realm/realm-core/pull/7042))

### Compatibility
* React Native >= v0.71.4
* Realm Studio v14.0.0.
* File format: generates Realms with format v23 (reads and upgrades file format v5 or later for non-synced Realm, upgrades file format v10 or later for synced Realms).

### Internal
* Upgraded Realm Core from v13.23.2 to v13.23.3. ([#6234](https://github.com/realm/realm-js/issues/6234))
* Upgraded Realm Core from v13.23.2 to v13.23.4. ([#6234](https://github.com/realm/realm-js/issues/6234) and [#6253](https://github.com/realm/realm-js/issues/6253))

## 12.3.0 (2023-11-03)

Expand Down
2 changes: 1 addition & 1 deletion packages/realm/bindgen/vendor/realm-core
Submodule realm-core updated 47 files
+2 −1 .github/pull_request_template.md
+4 −0 .gitignore
+25 −0 CHANGELOG.md
+1 −1 Package.swift
+1 −0 bindgen/spec.yml
+2 −2 dependencies.list
+295 −0 doc/development/how-to-use-remote-baas-host.md
+180 −23 evergreen/config.yml
+0 −16 evergreen/config_overrides.json
+237 −0 evergreen/configure_baas_proxy.sh
+304 −214 evergreen/install_baas.sh
+4 −0 evergreen/proxy-network-faults.toxics
+5 −0 evergreen/proxy-nonideal-transfer.toxics
+160 −30 evergreen/setup_baas_host.sh
+149 −55 evergreen/setup_baas_host_local.sh
+263 −0 evergreen/setup_baas_proxy.sh
+21 −11 evergreen/wait_for_baas.sh
+3 −4 src/realm/object-store/sync/sync_session.cpp
+7 −0 src/realm/set.cpp
+15 −13 src/realm/sync/client.cpp
+14 −1 src/realm/sync/noinst/client_history_impl.cpp
+3 −0 src/realm/sync/noinst/client_history_impl.hpp
+90 −111 src/realm/sync/noinst/client_impl_base.cpp
+29 −48 src/realm/sync/noinst/client_impl_base.hpp
+92 −89 src/realm/sync/noinst/client_reset.cpp
+5 −5 src/realm/sync/noinst/client_reset.hpp
+41 −83 src/realm/sync/noinst/client_reset_operation.cpp
+12 −50 src/realm/sync/noinst/client_reset_operation.hpp
+94 −80 src/realm/sync/subscriptions.cpp
+36 −26 src/realm/sync/subscriptions.hpp
+16 −0 test/object-store/CMakeLists.txt
+1 −1 test/object-store/audit.cpp
+4 −5 test/object-store/c_api/c_api.cpp
+12 −0 test/object-store/main.cpp
+22 −28 test/object-store/sync/app.cpp
+18 −20 test/object-store/sync/client_reset.cpp
+24 −31 test/object-store/sync/flx_migration.cpp
+116 −58 test/object-store/sync/flx_sync.cpp
+98 −68 test/object-store/util/sync/baas_admin_api.cpp
+21 −12 test/object-store/util/sync/baas_admin_api.hpp
+1 −1 test/object-store/util/sync/flx_sync_harness.hpp
+59 −17 test/object-store/util/sync/sync_test_utils.cpp
+10 −5 test/object-store/util/sync/sync_test_utils.hpp
+4 −3 test/object-store/util/test_file.cpp
+3 −0 test/object-store/util/test_file.hpp
+387 −6 test/test_client_reset.cpp
+9 −0 test/util/test_path.hpp
2 changes: 1 addition & 1 deletion packages/realm/dependencies.list
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REALM_CORE_VERSION=13.23.3
REALM_CORE_VERSION=13.23.4

0 comments on commit cc63892

Please sign in to comment.