Skip to content

DOCSP-44661 Update incorrect whats new bullet #281

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

Merged
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
7 changes: 5 additions & 2 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@ The 3.0 driver release includes the following new features:

- The ``IMongoClient`` interface inherits the ``IDisposable`` interface. As a result, the
``MongoClient`` class and other classes that implement the ``IMongoClient`` interface
contain a ``Dispose()`` method, which disposes of the underlying cluster and
connections to the MongoDB server. This implementation is experimental.
contain a ``Dispose()`` method, which disposes of the client. This method does not
dispose the underlying cluster and connections to the MongoDB server. To
dispose of the cluster and connections, call the
``ClusterRegistry.UnregisterAndDisposeCluster()`` method.
The implementation of the ``IDisposable`` interface is experimental.

To learn more about the ``IDisposable`` interface and use of the
``Dispose()`` method, see
Expand Down
Loading