diff --git a/doc/changelog.rst b/doc/changelog.rst index ba3cba8322..69fbb6f8fd 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -93,6 +93,10 @@ Unavoidable breaking changes - Since we are now using ``hatch`` as our build backend, we no longer have a usable ``setup.py`` file and require installation using ``pip``. Attempts to invoke the ``setup.py`` file will raise an exception. Additionally, ``pip`` >= 21.3 is now required for editable installs. +- We no longer support the ``srv`` extra, since ``dnspython`` is included as a dependency in PyMongo 4.7+. + Instead of ``pip install pymongo[srv]``, use ``pip install pymongo``. +- We no longer support the ``tls`` extra, which was only valid for Python 2. + Instead of ``pip install pymongo[tls]``, use ``pip install pymongo``. Issues Resolved ...............