File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,19 @@ Changes in Version 3.12.2
7
7
Issues Resolved
8
8
...............
9
9
10
- Version 3.12.2 fixes a bug that prevented PyMongo from retrying bulk writes
11
- after a ``writeConcernError `` on MongoDB 4.4+ (`PYTHON-2984 `_).
10
+ Version 3.12.2 fixes a number of bugs:
11
+
12
+ - Fixed a bug that prevented PyMongo from retrying bulk writes
13
+ after a ``writeConcernError `` on MongoDB 4.4+ (`PYTHON-2984 `_).
14
+ - Fixed a bug that could cause the driver to hang during automatic
15
+ client side field level encryption (`PYTHON-3017 `_).
12
16
13
17
See the `PyMongo 3.12.2 release notes in JIRA `_ for the list of resolved issues
14
18
in this release.
15
19
16
20
.. _PYTHON-2984 : https://jira.mongodb.org/browse/PYTHON-2984
17
- .. _PyMongo 3.12.2 release notes in JIRA:https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32310
21
+ .. _PYTHON-3017 : https://jira.mongodb.org/browse/PYTHON-3017
22
+ .. _PyMongo 3.12.2 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32310
18
23
19
24
Changes in Version 3.12.1
20
25
-------------------------
Original file line number Diff line number Diff line change 99
99
Deprecated
100
100
"""
101
101
102
- version_tuple = (3 , 12 , 2 , '.dev0' )
102
+ version_tuple = (3 , 12 , 2 )
103
103
104
104
def get_version_string ():
105
105
if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 43
43
except ImportError :
44
44
_HAVE_SPHINX = False
45
45
46
- version = "3.12.2.dev0 "
46
+ version = "3.12.2"
47
47
48
48
f = open ("README.rst" )
49
49
try :
You can’t perform that action at this time.
0 commit comments