Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-45312: Remove using directives/declarations #79

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions source/upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,15 @@ The v4.0 driver introduces the following breaking changes to the API:
library equivalents. For context, see the :ref:`Build System Breaking Changes
<version-4.0-build-system-breaking>` section.

- Removes the following ``using`` directives and declarations:
eramongodb marked this conversation as resolved.
Show resolved Hide resolved

- ``bsoncxx::builder::types`` from the ``<bsoncxx/builder/list.hpp>`` header file.
Instead, use ``bsoncxx::types`` from ``<bsoncxx/types.hpp>``.
- ``bsoncxx::builder::stream::concatenate`` from the ``<bsoncxx/builder/stream/helpers.hpp>``
header file. Instead, use ``bsoncxx::builder::concatenate`` from ``<bsoncxx/builder/concatenate.hpp>``.
- ``mongocxx::events::read_preference`` from the ``<mongocxx/events/topology_description.hpp>``
header file. Instead, use ``mongocxx::read_preference`` from ``<mongocxx/read_preference.hpp>``.

ABI Breaking Changes in v4.0
````````````````````````````

Expand Down
Loading