diff --git a/NEWS b/NEWS index 50b804f733..c4f812eabb 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ -Next Release -============ +mongo-c-driver 1.13.0 +===================== + +It is my pleasure to announce the MongoDB C Driver 1.13.0. Features: @@ -9,13 +11,14 @@ Features: and all bson headers are under bson/. The preferred way of including the headers are mongoc/mongoc.h and bson/bson.h respectively. Forwarding headers in the root are provided for backwards compatibility. - * Additional functions bson_iter_overwrite_date_time, bson_iter_overwrite_oid, - and bson_iter_overwrite_timestamp. All fixed-length BSON values can now be - updated in place. * The default CMake build type had been unspecified, now it is RelWithDebInfo. + * Support LibreSSL 2.7+. Bug fixes: + * mongoc_collection_replace_one is now a correctly exported symbol. + * Fix multiple issues with readConcern and writeConcern inheritance. + * Fix rare crash with mongodb+srv URIs on Windows. * mongoc_gridfs_create_file_from_stream ignored errors while writing chunks to the server. * The following functions should not have taken a "bypassDocumentValidation" @@ -27,6 +30,27 @@ Bug fixes: * The heartbeat-succeeded and heartbeat-failed events (part of SDAM Monitoring) had uninitialized "duration" fields, they are now set correctly. +Thanks to everyone who contributed to the development of this release. + + * A. Jesse Jiryu Davis + * Roberto C. Sánchez + * Kevin Albertson + * Henrik Edin + * Spencer McKenney + * Jeremy Mikola + * Evgeni Dobranov + * Tomas Mozes + * Derick Rethans + * Gustaf Neumann + * Jeroen + * Jeroen Ooms + * Kaitlin Mahar + +Peace, + + Kevin Albertson + + mongo-c-driver 1.12.0 ===================== diff --git a/VERSION_CURRENT b/VERSION_CURRENT index a4ab692a5f..feaae22bac 100644 --- a/VERSION_CURRENT +++ b/VERSION_CURRENT @@ -1 +1 @@ -1.13.0-dev +1.13.0 diff --git a/VERSION_RELEASED b/VERSION_RELEASED index 0eed1a29ef..feaae22bac 100644 --- a/VERSION_RELEASED +++ b/VERSION_RELEASED @@ -1 +1 @@ -1.12.0 +1.13.0 diff --git a/src/libbson/NEWS b/src/libbson/NEWS index 66777d18a7..a12653b23a 100644 --- a/src/libbson/NEWS +++ b/src/libbson/NEWS @@ -1,10 +1,34 @@ -Next Release -============ +libbson 1.13.0 +============== + +It is my pleasure to announce libbson 1.13.0. Features: * New functions to save and restore progress of a bson_iter_t: bson_iter_key_len, bson_iter_offset, and bson_iter_init_from_data_at_offset + * Additional functions bson_iter_overwrite_date_time, bson_iter_overwrite_oid, + and bson_iter_overwrite_timestamp. All fixed-length BSON values can now be + updated in place. + +Bug fixes: + + * Fix crash when iterating corrupt BSON. + +Thanks to everyone who contributed to the development of this release. + + * A. Jesse Jiryu Davis + * Roberto C. Sánchez + * Kevin Albertson + * Henrik Edin + * Gustaf Neumann + * Scott Gayou + * Spencer McKenney + +Peace, + + Kevin Albertson + libbson 1.12.0 ============== diff --git a/src/libmongoc/doc/libbson-objects.inv b/src/libmongoc/doc/libbson-objects.inv index 5d54a170df..e50ab48557 100644 Binary files a/src/libmongoc/doc/libbson-objects.inv and b/src/libmongoc/doc/libbson-objects.inv differ