File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ Changes in Version 4.9.0
5
+ -------------------------
6
+
7
+ PyMongo 4.9 brings a number of improvements including:
8
+
9
+ - A new asynchronous API with full asyncio support.
10
+
11
+ Issues Resolved
12
+ ...............
13
+
14
+ See the `PyMongo 4.9 release notes in JIRA `_ for the list of resolved issues
15
+ in this release.
16
+
17
+ .. _PyMongo 4.9 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39940
18
+
19
+
4
20
Changes in Version 4.8.0
5
21
-------------------------
6
22
@@ -10,14 +26,21 @@ PyMongo 4.8 brings a number of improvements including:
10
26
11
27
- The handshake metadata for "os.name" on Windows has been simplified to "Windows" to improve import time.
12
28
- The repr of ``bson.binary.Binary `` is now redacted when the subtype is SENSITIVE_SUBTYPE(8).
13
- - A new asynchronous API with full asyncio support.
14
29
15
30
Unavoidable breaking changes
16
31
............................
17
32
18
33
- Since we are now using ``hatch `` as our build backend, we no longer have a ``setup.py `` file
19
34
and require installation using ``pip ``.
20
35
36
+ Issues Resolved
37
+ ...............
38
+
39
+ See the `PyMongo 4.8 release notes in JIRA `_ for the list of resolved issues
40
+ in this release.
41
+
42
+ .. _PyMongo 4.8 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=37057
43
+
21
44
Changes in Version 4.7.3
22
45
-------------------------
23
46
Original file line number Diff line number Diff line change 18
18
import re
19
19
from typing import List , Tuple , Union
20
20
21
- __version__ = "4.8 .0.dev1 "
21
+ __version__ = "4.9 .0.dev0 "
22
22
23
23
24
24
def get_version_tuple (version : str ) -> Tuple [Union [int , str ], ...]:
You can’t perform that action at this time.
0 commit comments