1
- NEXT RELEASE
2
- ============
3
-
4
- * If the driver is compiled without SSL support but a URI with "ssl=true"
5
- is passed to mongoc_client_new, mongoc_client_new_from_uri, or
6
- mongoc_client_pool_new, the function logs an error and returns NULL. Before,
7
- the driver would attempt a non-SSL connection.
8
-
9
1
mongo-c-driver 1.3.0
10
2
====================
11
3
@@ -17,6 +9,10 @@ New features and changes:
17
9
18
10
* mongoc_collection_find_and_modify will now apply the mongoc_collection_t's
19
11
write_concern_t when talking to MongoDB 3.2.
12
+ * If the driver is compiled without SSL support but a URI with "ssl=true"
13
+ is passed to mongoc_client_new, mongoc_client_new_from_uri, or
14
+ mongoc_client_pool_new, the function logs an error and returns NULL. Before,
15
+ the driver would attempt a non-SSL connection.
20
16
* Support for MongoDB 3.2's "readConcern" feature for queries, counts, and
21
17
aggregations. The option "readConcernLevel" is now accepted in the MongoDB
22
18
URI. New struct mongoc_read_concern_t, and functions operating on it:
@@ -52,9 +48,16 @@ New features and changes:
52
48
* To explain a query plan with MongoDB 3.2, you must now call the "explain"
53
49
command, instead of including the "$explain" key in a mongoc_collection_find
54
50
query. See the mongoc_collection_find documentation page for details.
55
- * Use constant-time comparision when verifying credentials
51
+ * New functions to copy database and collection handles:
52
+ - mongoc_collection_copy
53
+ - mongoc_database_copy
54
+ * Report writeConcern failures from legacy writes.
55
+ * Use electionId to detect a stale replica set primary during a network split.
56
+ * Disconnect from replica set members whose "me" field does not match the
57
+ connection address.
58
+ * Use constant-time comparision when verifying credentials.
56
59
* Combine environment's CFLAGS with configure options when building.
57
- * Improved man page output and "whatis" entries
60
+ * Improved man page output and "whatis" entries.
58
61
* The client side matching feature, mongoc_matcher_t and related functions,
59
62
are deprecated and scheduled for removal in version 2.0.
60
63
@@ -71,7 +74,6 @@ Other fixes:
71
74
* Set OP_QUERY's nToReturn from the provided limit.
72
75
* Fix compiler warnings and errors, especially with Visual Studio 2015,
73
76
GCC 4.8, and IBM XL C.
74
- * Include missing build script FindSASL2.cmake in distribution tarball
75
77
* Bugs and typos in tutorial examples
76
78
77
79
Thanks to everyone who contributed to this version of libmongoc.
0 commit comments