Skip to content

Commit

Permalink
Upgrade to Realm Core v11.6.1. (realm#4083)
Browse files Browse the repository at this point in the history
* Upgrade to Realm Core v11.6.1.
  • Loading branch information
kneth committed Nov 17, 2021
1 parent 8bc792c commit 61cc7ec
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 @@ -4,8 +4,10 @@ x.x.x Release notes (yyyy-MM-dd)
* None.

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
* None.
* A sync user's Realm was not deleted when the user was removed if the Realm path was too long such that it triggered the fallback hashed name (this is OS dependant but is 300 characters on linux). ([realm/realm-core#4187](https://github.com/realm/realm-core/issues/4187), since v10.0.0-beta.10)
* Fixed a bug where opening a synced Realm would hang if the device's clock is more than 30 minutes fast. ([realm/realm-core#4941](https://github.com/realm/realm-core/issues/4941), since v10.0.0)
* Fixed a bug where an app hangs if it tries to connect after being offline for more than 30 minutes. ([#3882](https://github.com/realm/realm-js/issues/3882), since v10.0.0)


### Compatibility
* MongoDB Realm Cloud.
Expand All @@ -14,9 +16,7 @@ x.x.x Release notes (yyyy-MM-dd)
* File format: generates Realms with format v22 (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 v11.6.0 to v11.6.1.

10.10.0 Release notes (2021-11-11)
=============================================================
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PACKAGE_NAME=realm-js
VERSION=10.10.0
REALM_CORE_VERSION=11.6.0
REALM_CORE_VERSION=11.6.1
NAPI_VERSION=4
OPENSSL_VERSION=1.1.1g
MDBREALM_TEST_SERVER_TAG=2021-06-01
2 changes: 1 addition & 1 deletion vendor/realm-core
Submodule realm-core updated 67 files
+18 −0 CHANGELOG.md
+4 −2 Package.swift
+1 −1 dependencies.list
+1 −1 evergreen/install_baas.sh
+0 −2 src/realm/CMakeLists.txt
+10 −3 src/realm/alloc_slab.cpp
+25 −318 src/realm/db.cpp
+1 −12 src/realm/db.hpp
+0 −1 src/realm/db_options.hpp
+1 −1 src/realm/object-store/shared_realm.hpp
+110 −72 src/realm/object-store/sync/impl/sync_file.cpp
+15 −13 src/realm/object-store/sync/impl/sync_file.hpp
+68 −42 src/realm/object-store/sync/impl/sync_metadata.cpp
+21 −15 src/realm/object-store/sync/impl/sync_metadata.hpp
+20 −27 src/realm/object-store/sync/sync_manager.cpp
+0 −6 src/realm/object-store/sync/sync_manager.hpp
+41 −32 src/realm/object-store/sync/sync_session.cpp
+0 −11 src/realm/object-store/sync/sync_session.hpp
+3 −1 src/realm/object-store/sync/sync_user.cpp
+7 −0 src/realm/object-store/sync/sync_user.hpp
+56 −55 src/realm/parser/driver.cpp
+5 −11 src/realm/parser/driver.hpp
+5 −0 src/realm/query.hpp
+0 −1 src/realm/query_engine.hpp
+8 −8 src/realm/query_expression.hpp
+8 −0 src/realm/string_data.hpp
+4 −0 src/realm/sync/CMakeLists.txt
+5 −113 src/realm/sync/client.cpp
+2 −17 src/realm/sync/client.hpp
+4 −0 src/realm/sync/config.cpp
+2 −2 src/realm/sync/config.hpp
+72 −337 src/realm/sync/noinst/client_impl_base.cpp
+13 −47 src/realm/sync/noinst/client_impl_base.hpp
+0 −19 src/realm/sync/noinst/protocol_codec.hpp
+3 −4 src/realm/sync/noinst/server/encryption_transformer.cpp
+526 −0 src/realm/sync/subscriptions.cpp
+325 −0 src/realm/sync/subscriptions.hpp
+19 −32 src/realm/table.cpp
+7 −7 src/realm/table.hpp
+3 −4 src/realm/unicode.cpp
+2 −2 src/realm/util/allocation_metrics.cpp
+345 −0 src/realm/util/ez_websocket.cpp
+115 −0 src/realm/util/ez_websocket.hpp
+0 −4 src/realm/util/features.h
+3 −3 src/realm/util/file.cpp
+5 −7 src/realm/util/file_mapper.cpp
+1 −1 src/realm/util/http.hpp
+2 −2 src/realm/util/interprocess_condvar.cpp
+0 −131 src/realm/util/shared_ptr.hpp
+1 −1 test/CMakeLists.txt
+0 −2 test/benchmark-common-tasks/compatibility.cpp
+1 −5 test/benchmark-common-tasks/compatibility.hpp
+0 −8 test/benchmark-common-tasks/main.cpp
+0 −8 test/object-store/realm.cpp
+232 −22 test/object-store/sync/app.cpp
+57 −95 test/object-store/sync/file.cpp
+122 −37 test/object-store/sync/sync_manager.cpp
+63 −0 test/object-store/sync/sync_test_utils.cpp
+11 −0 test/object-store/sync/sync_test_utils.hpp
+33 −16 test/object-store/util/baas_admin_api.cpp
+1 −0 test/object-store/util/baas_admin_api.hpp
+0 −32 test/test_all.cpp
+0 −78 test/test_basic_utils.cpp
+0 −4 test/test_db.cpp
+0 −285 test/test_shared.cpp
+0 −224 test/test_sync.cpp
+283 −0 test/test_sync_subscriptions.cpp

0 comments on commit 61cc7ec

Please sign in to comment.