Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Realm Core v14.13.1 #6914

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@

### Fixed
* Fixed build error on React Native Android when used with React Native 0.76, due to the merge of dynamic libraries. ([#6908](https://github.com/realm/realm-js/issues/6908) since React Native v0.76.0).
* Filtering notifications with backlink columns as last element could sometimes give wrong results ([realm/realm-core#7530](https://github.com/realm/realm-core/issues/7530), since Realm JS v10.6.2-beta.1)
* Fix crash during client app shutdown when Logger log level is set higher than Info. ([realm/realm-core#7969](https://github.com/realm/realm-core/issues/7969), since Realm JS v12.3.1)
* If File::rw_lock() fails to open a file the exception message does not contain the filename ([realm/realm-core#7999](https://github.com/realm/realm-core/issues/7999), since Realm JS v6.1.0)
* Fallback to hashed filename will fail if length of basename is between 240 and 250 ([realm/realm-core#8007](https://github.com/realm/realm-core/issues/8007), since Realm JS v10.0.0)
* Having a query with a number of predicates ORed together may result in a crash on some platforms (strict weak ordering check failing on iphone) ([realm/realm-core#8028](https://github.com/realm/realm-core/issues/8028), since Realm JS v12.8.0)
* The events library would attempt to upload backup files created as part of file format upgrades, causing backup copies of those backups to be made, looping until the maximum file name size was reached ([realm/realm-core#8040](https://github.com/realm/realm-core/issues/8040), since Realm JS v10.18.0).

### Compatibility
* React Native >= v0.71.4
* Realm Studio v15.0.0.
* File format: generates Realms with format v24 (reads and upgrades file format v10).

### 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 v14.12.0 to v14.13.1.

## 12.13.1 (2024-08-21)

Expand Down
2 changes: 1 addition & 1 deletion packages/realm/bindgen/vendor/realm-core
Submodule realm-core updated 60 files
+69 −0 CHANGELOG.md
+2 −1 Package.swift
+4 −5 dependencies.yml
+0 −175 evergreen/bloaty_to_json.py
+5 −569 evergreen/config.yml
+0 −237 evergreen/configure_baas_proxy.sh
+0 −4 evergreen/proxy-network-faults.toxics
+0 −5 evergreen/proxy-nonideal-transfer.toxics
+0 −279 evergreen/setup_baas_host.sh
+0 −269 evergreen/setup_baas_host_local.sh
+0 −263 evergreen/setup_baas_proxy.sh
+0 −126 evergreen/wait_for_remote_baas.sh
+4 −0 src/realm/CMakeLists.txt
+0 −9 src/realm/array.cpp
+1 −7 src/realm/array.hpp
+2 −6 src/realm/array_blobs_small.cpp
+0 −10 src/realm/array_blobs_small.hpp
+5 −0 src/realm/backup_restore.cpp
+1 −1 src/realm/backup_restore.hpp
+1 −1 src/realm/cluster.cpp
+1 −1 src/realm/cluster_tree.cpp
+3 −0 src/realm/exceptions.cpp
+45 −0 src/realm/exceptions.mm
+2 −3 src/realm/exec/realm2json.cpp
+6 −2 src/realm/exec/realm_trawler.cpp
+2 −2 src/realm/group.cpp
+72 −70 src/realm/index_string.cpp
+1 −0 src/realm/index_string.hpp
+2 −6 src/realm/node.hpp
+34 −0 src/realm/object-store/audit.mm
+1 −1 src/realm/object-store/c_api/notifications.cpp
+33 −32 src/realm/object-store/impl/deep_change_checker.cpp
+5 −4 src/realm/object-store/shared_realm.cpp
+57 −107 src/realm/object-store/sync/app.cpp
+4 −16 src/realm/object-store/sync/app.hpp
+0 −22 src/realm/object-store/sync/app_utils.cpp
+0 −2 src/realm/object-store/sync/app_utils.hpp
+1 −1 src/realm/object-store/sync/impl/sync_file.hpp
+1 −1 src/realm/query_engine.hpp
+1 −7 src/realm/search_index.hpp
+13 −58 src/realm/spec.cpp
+4 −22 src/realm/spec.hpp
+1 −1 src/realm/sync/tools/hist_command.cpp
+5 −5 src/realm/table.cpp
+0 −8 src/realm/table.hpp
+8 −3 src/realm/util/file.cpp
+2 −2 src/realm/util/logger.cpp
+4 −0 test/CMakeLists.txt
+12 −3 test/object-store/audit.cpp
+11 −5 test/object-store/c_api/c_api.cpp
+23 −1 test/object-store/object.cpp
+16 −10 test/object-store/realm.cpp
+190 −390 test/object-store/sync/app.cpp
+12 −6 test/object-store/sync/file.cpp
+5 −4 test/object-store/util/sync/flx_sync_harness.hpp
+85 −64 test/object-store/util/test_file.cpp
+33 −16 test/object-store/util/test_file.hpp
+5 −11 test/object-store/util/test_utils.cpp
+1 −1 test/object-store/util/test_utils.hpp
+39 −0 test/test_nsexception.mm
Loading