Skip to content

Commit 996490e

Browse files
committed
Bump to core 14.4.0
1 parent bf3237c commit 996490e

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ Package.resolved
99
# Qt demo apps
1010
examples/*.pro.user
1111
docs/html
12-
docs/latex
12+
docs/latex
13+
.idea
14+
realm-core/src/realm/parser/generated

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ X.Y.Z Release notes (YYYY-MM-DD)
2020
* Fileformat: Generates files with format v23. Reads and automatically upgrade from fileformat v5.
2121

2222
### Internals
23-
* Upgraded to Core v14.1.0
23+
* Upgraded to Core v14.4.0
2424

2525
----------------------------------------------
2626

realm-core

Submodule realm-core updated 126 files

tests/admin_utils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ std::string Admin::Session::create_app(bson::BsonArray queryable_fields, std::st
159159
bson::BsonDocument mongodb_service_config;
160160
std::string mongodb_service_type;
161161
if (m_cluster_name) {
162-
mongodb_service_config.append("clusterName", *m_cluster_name);
162+
mongodb_service_config["clusterName"] = *m_cluster_name;
163163
mongodb_service_type = "mongodb-atlas";
164164
} else {
165-
mongodb_service_config.append("uri", "mongodb://localhost:26000");
165+
mongodb_service_config["uri"] = "mongodb://localhost:26000";
166166
mongodb_service_type = "mongodb";
167167
}
168168

0 commit comments

Comments
 (0)