From fb51c11cacce56dca3bf48a810947e45d6c01d2f Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 16 Sep 2024 21:23:40 -0500 Subject: [PATCH] PYTHON-4756 Add changelog note about dropping srv extra (#1861) --- doc/changelog.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/changelog.rst b/doc/changelog.rst index ba3cba832..69fbb6f8f 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 ...............