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
4 changes: 4 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
Copy link
Member

@ShaneHarvey ShaneHarvey Sep 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add the same for the "tls" extra which we also removed in the same commit?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tls extra was only valid for Python 2 which we dropped in PYTHON-2133 pymongo 4.0.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

- 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
...............
Expand Down
Loading