Skip to content

Commit

Permalink
Upgrade to Realm Core v13.23.3 (#6236)
Browse files Browse the repository at this point in the history
  • Loading branch information
kneth authored Nov 7, 2023
1 parent ca1c486 commit a3589c6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
* None

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
* None
* 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)


### 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
<!-- * Either mention core version or upgrade -->
<!-- * Using Realm Core vX.Y.Z -->
<!-- * Upgraded Realm Core from vX.Y.Z to vA.B.C -->
* Upgraded Realm Core from v13.23.2 to v13.23.3. ([#6234](https://github.com/realm/realm-js/issues/6234))

## 12.3.0 (2023-11-03)

Expand Down
2 changes: 1 addition & 1 deletion packages/realm/bindgen/vendor/realm-core
Submodule realm-core updated 86 files
+30 −0 CHANGELOG.md
+34 −1 CMakeLists.txt
+36 −41 Jenkinsfile
+1 −1 Package.swift
+2 −0 alpine.Dockerfile
+6 −2 bindgen/src/realm_helpers.h
+1 −1 dependencies.list
+87 −0 evergreen/config.yml
+1 −0 src/external/s2/CMakeLists.txt
+3 −2 src/realm.h
+9 −3 src/realm/CMakeLists.txt
+33 −1 src/realm/array.cpp
+2 −0 src/realm/array.hpp
+1 −1 src/realm/array_integer.cpp
+7 −9 src/realm/array_integer.hpp
+18 −23 src/realm/array_integer_tpl.hpp
+7 −7 src/realm/array_with_find.cpp
+121 −211 src/realm/array_with_find.hpp
+1 −0 src/realm/cluster.cpp
+21 −1 src/realm/collection.hpp
+1 −3 src/realm/list.hpp
+6 −6 src/realm/object-store/c_api/scheduler.cpp
+10 −30 src/realm/object-store/set.cpp
+16 −10 src/realm/object-store/sync/sync_session.cpp
+3 −4 src/realm/object-store/sync/sync_session.hpp
+35 −1 src/realm/query_conditions_tpl.hpp
+3 −11 src/realm/query_engine.cpp
+1 −22 src/realm/query_engine.hpp
+17 −1 src/realm/query_state.hpp
+290 −93 src/realm/set.cpp
+100 −384 src/realm/set.hpp
+19 −5 src/realm/sync/client.cpp
+6 −6 src/realm/sync/noinst/client_history_impl.cpp
+0 −13 src/realm/sync/noinst/client_history_impl.hpp
+5 −7 src/realm/sync/noinst/client_impl_base.cpp
+2 −0 src/realm/sync/noinst/client_impl_base.hpp
+3 −2 src/realm/sync/noinst/client_reset.cpp
+1 −1 src/realm/sync/noinst/pending_bootstrap_store.cpp
+2 −2 src/realm/sync/noinst/pending_bootstrap_store.hpp
+2 −2 src/realm/sync/noinst/protocol_codec.hpp
+0 −34 src/realm/sync/noinst/server/server.cpp
+2 −15 src/realm/sync/noinst/server/server_history.cpp
+1 −11 src/realm/sync/noinst/server/server_history.hpp
+2 −9 src/realm/sync/subscriptions.cpp
+1 −2 src/realm/sync/subscriptions.hpp
+2 −2 src/realm/sync/tools/apply_to_state_command.cpp
+126 −243 src/realm/sync/transform.cpp
+20 −65 src/realm/sync/transform.hpp
+2 −3 src/realm/table.cpp
+6 −6 src/realm/table.hpp
+3 −3 src/realm/timestamp.hpp
+12 −2 src/realm/util/backtrace.cpp
+7 −2 src/realm/util/config.h.in
+4 −4 src/realm/util/file.cpp
+2 −0 src/realm/util/logger.cpp
+4 −4 src/realm/util/serializer.cpp
+16 −6 src/realm/util/thread.cpp
+2 −0 src/realm/util/timestamp_logger.cpp
+4 −1 test/CMakeLists.txt
+106 −0 test/benchmark-common-tasks/main.cpp
+1 −1 test/fuzz_tester.hpp
+5 −5 test/large_tests/test_column_large.cpp
+19 −14 test/object-store/audit.cpp
+971 −820 test/object-store/c_api/c_api.cpp
+4 −2 test/object-store/migrations.cpp
+8 −6 test/object-store/realm.cpp
+4 −0 test/object-store/set.cpp
+1 −1 test/object-store/sync/flx_migration.cpp
+75 −1 test/object-store/sync/flx_sync.cpp
+1 −1 test/object-store/sync/session/wait_for_completion.cpp
+6 −2 test/object-store/util/sync/sync_test_utils.cpp
+45 −54 test/peer.hpp
+7 −2 test/test_file.cpp
+8 −8 test/test_json.cpp
+4 −1 test/test_set.cpp
+5 −20 test/test_sync.cpp
+2 −2 test/test_sync_pending_bootstraps.cpp
+3 −3 test/test_sync_subscriptions.cpp
+2 −2 test/test_table.cpp
+5 −0 test/test_util_error.cpp
+3 −0 test/test_util_file.cpp
+4 −5 test/util/unit_test.cpp
+1 −1 test/util/unit_test.hpp
+6 −0 tools/build-apple-device.sh
+47 −19 tools/cmake/SpecialtyBuilds.cmake
+10 −6 tools/cmake/xcode.toolchain.cmake
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.2
REALM_CORE_VERSION=13.23.3

0 comments on commit a3589c6

Please sign in to comment.