File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,20 @@ PyMongo 4.8 brings a number of improvements including:
26
26
27
27
- The handshake metadata for "os.name" on Windows has been simplified to "Windows" to improve import time.
28
28
- The repr of ``bson.binary.Binary `` is now redacted when the subtype is SENSITIVE_SUBTYPE(8).
29
+ - Secure Software Development Life Cycle automation for release process.
30
+ GitHub Releases now include a Software Bill of Materials, and signature
31
+ files corresponding to the distribution files released on PyPI.
32
+ - Fixed a bug in change streams where both ``startAtOperationTime `` and ``resumeToken ``
33
+ could be added to a retry attempt, which caused the retry to fail.
34
+ - Fallback to stdlib ``ssl `` module when ``pyopenssl `` import fails with AttributeError.
35
+ - Improved performance of MongoClient operations, especially when many operations are being run concurrently.
29
36
30
37
Unavoidable breaking changes
31
38
............................
32
39
33
- - Since we are now using ``hatch `` as our build backend, we no longer have a ``setup.py `` file
34
- and require installation using ``pip ``.
40
+ - Since we are now using ``hatch `` as our build backend, we no longer have a usable ``setup.py `` file
41
+ and require installation using ``pip ``. Attempts to invoke the ``setup.py `` file will raise an exception.
42
+ Additionally, ``pip `` >= 21.3 is now required for editable installs.
35
43
36
44
Issues Resolved
37
45
...............
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
- msg = "PyMongo>=4.8 no longer supports building via setup.py, use python -m pip install <path/to/pymongo> instead"
3
+ msg = (
4
+ "PyMongo>=4.8 no longer supports building via setup.py, use python -m pip install <path/to/pymongo> instead. If "
5
+ "this is an editable install (-e) please upgrade to pip>=21.3 first: python -m pip install --upgrade pip"
6
+ )
4
7
5
8
raise RuntimeError (msg )
You can’t perform that action at this time.
0 commit comments