Skip to content
Merged
Changes from all 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
10 changes: 10 additions & 0 deletions source/upgrade/v3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -248,3 +248,13 @@ Version 3.0 Breaking Changes
- The driver seals the ``MongoClient``, ``MongoDatabase``, and ``MongoCollection`` classes.
We recommend using the ``IMongoClient``, ``IMongoDatabase``, and ``IMongoCollection``
interfaces directly.

- The driver requires applications to explicitly configure how to serialize GUIDs
by using the ``GuidSerializer`` and ``ObjectSerializer`` classes. {+driver-short+}
users building new applications can implement a global ``GuidSerializer`` by registering
it. We recommend that users with older applications verify that all ``GUIDs`` are
serialized the same way when implementing a global ``GuidSerializer``. You can also
configure ``GUID`` serialization on a case-by-case basis without registering a global
``GuidSerializer``.

To learn more about GUID serialization, see the :ref:`csharp-guids` guide.
Loading