Upgrade Driver Versions
On this page
Overview
This page describes the changes you must make to your application when you upgrade to a new version of the C++ driver.
Before you upgrade, perform the following actions:
Ensure the new C++ driver version is compatible with the MongoDB Server versions your application connects to and the C++ standard version your application compiles with. For version compatibility information, see the C++ driver Compatibility page.
Address any breaking changes between the driver version your application is using and your planned upgrade version in the Breaking Changes section.
Tip
To ensure compatibility across MongoDB Server versions when upgrading driver versions, use the Stable API.
Definition of Breaking Changes
Note
The C++ driver follows semantic versioning. The driver may break build system or package compatibility in any release. Patch releases may revert accidental API breaking changes.
For more information, see API and ABI Versioning.
A breaking change is a change of a convention or a behavior starting in a specific version of the driver. This type of change may prevent your application from working properly if not addressed before upgrading the driver.
The breaking changes in this section are categorized by the driver version that introduced them. When upgrading driver versions, address all the breaking changes between the current and upgrade versions.
Example
Upgrading to Version 4.0
If you're upgrading the C++ driver from version 3.x to version 4.0, address all breaking changes that are listed for versions 3.x up to and including version 4.0
Types of Breaking Changes
New versions of the C++ driver can introduce the following types of breaking changes:
API changes concern the API of the C++ driver libraries. These changes are accompanied by an API major version bump. You might need to edit C++ source code in your project to address these changes.
Example
Removes the declaration of function
v1::func()
. (The definition is still provided for ABI compatibility.)Removes the inline function
v_noabi::func()
.Removes
v_noabi::func()
.Changes the redeclaration of
bsoncxx::foo
fromv1::foo
tov2::foo
. To continue using the old interface, qualifybsoncxx::foo
asbsoncxx::v1::foo
.
ABI changes concern the ABI of the C++ driver libraries. These changes are accompanied by an ABI version bump, and may also be accompanied by an API major version bump. You might need to rebuild your project or edit your C++ source code to address these changes.
ABI stability is not supported for symbols corresponding to entities declared in the
v_noabi
namespace. Breaking changes for such symbols are not necessarily accompanied by an ABI version bump.Example
Removes the exported symbol
v_noabi::func()
.Removes the exported symbol
v1::func()
.Removes the exported symbols for
v1::type
.
Build system changes concern the build system or packaging of the C++ driver libraries. These changes are not necessarily accompanied by either an API major version bump or an ABI version bump. To address these changes, you might need to modify your build system configurations or update your project's package or dependency management settings. You might also need to modify or rebuild your C++ source code.
Example
Removes the
ENABLE_FOO
configuration variable.Changes the default value of the
ENABLE_BAR
configuration variable fromOFF
toON
.Drops support for platform A, compiler B, or architecture C.
Breaking Changes
The following sections describe the breaking changes introduced by each driver version release.
Version 4.0
Build System Breaking Changes in v4.0
The v4.0 driver introduces the following breaking changes to the build system:
Drops support for the Boost and MNMLSTC/core external polyfill libraries. You can no longer set the following configuration options:
ENABLE_BSONCXX_POLY_USE_IMPLS
. This option is implicitly set toON
.BSONCXX_POLY_USE_MNMLSTC
.BSONCXX_POLY_USE_SYSTEM_MNMLSTC
.BSONCXX_POLY_USE_BOOST
.
Drops support for the
MONGOCXX_OVERRIDE_DEFAULT_INSTALL_PREFIX
configuration option. Default CMake behavior forCMAKE_INSTALL_PREFIX
is now respected.Sets the
ENABLE_TESTS
configuration option toOFF
by default. To re-enable building test targets, you must setENABLE_TESTS
toON
. To include test targets in the "all" target, you must also set theBUILD_TESTING
option toON
.
API Breaking Changes in v4.0
The v4.0 driver introduces the following breaking changes to the API:
Drops support for configuring
bsoncxx::stdx::string_view
andbsoncxx::stdx::optional<T>
as aliases for Boost or MNMLSTC/core library equivalents. For context, see the Build System Breaking Changes section.Removes the following header files:
<bsoncxx/stdx/make_unique.hpp>
<bsoncxx/types/value.hpp>
<bsoncxx/util/functor.hpp>
<mongocxx/options/create_collection.hpp>
Removes the following deprecated
utf8
types and functions that havestring
equivalents:k_utf8
from thebsoncxx::v_noabi::type
class. Instead, usek_string
.b_utf8
from thebsoncxx::v_noabi::types
class. Instead, useb_string
.get_utf8()
from thebsoncxx::v_noabi::document::element
,bsoncxx::v_noabi::array::element
, andbsoncxx::v_noabi::types::bson_value::view
classes. Instead, useget_string()
.k_cannot_append_utf8
from thebsoncxx::v_noabi::exception::error_code
class. Instead, usek_cannot_append_string
.k_need_element_type_k_utf8
from thebsoncxx::v_noabi::exception::error_code
class. Instead, usek_need_element_type_k_string
.
Removes the
mongocxx::stdx
namespace. Replace the following types in your code:mongocxx::stdx::optional<T>
. Instead, usebsoncxx::stdx::optional<T>
.mongocxx::stdx::string_view
. Instead, usebsoncxx::stdx::string_view
.
Removes the following undocumented
using
directives and declarations:bsoncxx::builder::types
from the<bsoncxx/builder/list.hpp>
header file. Instead, usebsoncxx::types
from<bsoncxx/types.hpp>
.bsoncxx::builder::stream::concatenate
from the<bsoncxx/builder/stream/helpers.hpp>
header file. Instead, usebsoncxx::builder::concatenate
from<bsoncxx/builder/concatenate.hpp>
.mongocxx::events::read_preference
from the<mongocxx/events/topology_description.hpp>
header file. Instead, usemongocxx::read_preference
from<mongocxx/read_preference.hpp>
.
ABI Breaking Changes in v4.0
The v4.0 driver introduces the following breaking changes to the ABI:
Drops support for configuring
bsoncxx::stdx::string_view
andbsoncxx::stdx::optional<T>
as aliases for Boost or MNMLSTC/core library equivalents. For context, see the Build System Breaking Changes section.Removes deprecated
utf8
functions that havestring
equivalents. For a full list of these changes, see the API Breaking Changes section.
Version 3.11
Build System Breaking Changes in v3.11
The v3.11 driver introduces the following breaking changes to the build system:
Drops support for MongoDB Server v3.6.
Requires MongoDB C Driver v1.28.0 or later.
ABI Breaking Changes in v3.11
The v3.11 driver introduces the following breaking changes to the ABI:
Removes export of the following private member functions in the bsoncxx ABI:
bsoncxx::v_noabi::types::bson_value::value::value(const uint8_t*, uint32_t, uint32_t, uint32_t)
bsoncxx::v_noabi::types::bson_value::view::_init(void*)
bsoncxx::v_noabi::types::bson_value::view::view(const uint8_t*, uint32_t, uint32_t, uint32_t)
bsoncxx::v_noabi::types::bson_value::view::view(void*)
Removes export of the following private member functions in the mongocxx ABI:
mongocxx::v_noabi::options::change_stream::as_bson()
mongocxx::v_noabi::options::aggregate::append( bsoncxx::v_noabi::builder::basic::document&)
mongocxx::v_noabi::options::index::storage_options()
Declare all exported functions symbols with
__cdecl
when compiled with MSVC. This is an ABI breaking change if you use an alternative default calling convention when building projects.
Version 3.10
Build System Breaking Changes in v3.10
The v3.10 driver introduces the following breaking changes to the build system:
Drops support for calling
find_package(libbsoncxx)
andfind_package(libmongocxx)
. Usefind_package(bsoncxx)
andfind_package(mongocxx)
instead.Drops support for the
LIBBSONCXX_*
andLIBMONGOCXX_*
CMake variables provided by the legacy CMake package config files. Use themongo::bsoncxx_*
andmongo::mongocxx_*
CMake targets instead.Removes the
BSONCXX_POLY_USE_STD_EXPERIMENTAL
CMake option and drops support for selecting the experimental C++ standard library as a polyfill option.
Version 3.9
Build System Breaking Changes in v3.9
The v3.9 driver introduces the following breaking changes:
Removes support for exported targets from the CMake project build tree
Drops support for macOS 10.14, macOS 10.15, and Ubuntu 14.04
Requires MongoDB C Driver v1.25.0 or later
Requires CMake v3.15 or later to support the
FetchContent
module
Version 3.8 and Earlier
For driver versions 3.8 and earlier, see the release notes and associated JIRA tickets for each release on GitHub.