From c3d3fe2b303cd5a1f796028fb3912429ede6665d Mon Sep 17 00:00:00 2001 From: Jordan Smith Date: Fri, 25 Oct 2024 10:43:34 -0700 Subject: [PATCH] update incorrect whats new bullet --- source/whats-new.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/whats-new.txt b/source/whats-new.txt index d4b88da5..d23b430a 100644 --- a/source/whats-new.txt +++ b/source/whats-new.txt @@ -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