File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,26 @@ Changes in Version 3.11.2
7
7
Issues Resolved
8
8
...............
9
9
10
+ Version 3.11.2 includes a number of bugfixes. Highlights include:
11
+
12
+ - Fixed a memory leak caused by failing SDAM monitor checks on Python 3 (`PYTHON-2433 `_).
13
+ - Fixed a regression that changed the string representation of
14
+ :exc: `~pymongo.errors.BulkWriteError ` (`PYTHON-2438 `_).
15
+ - Fixed a bug that made it impossible to use
16
+ :meth: `bson.codec_options.CodecOptions.with_options ` and
17
+ :meth: `~bson.json_util.JSONOptions.with_options ` on some early versions of
18
+ Python 3.4 and Python 3.5 due to a bug in the standard library implementation
19
+ of :meth: `collections.namedtuple._asdict ` (`PYTHON-2440 `_).
20
+ - Fixed a bug that resulted in a :exc: `TypeError ` exception when a PyOpenSSL
21
+ socket was configured with a timeout of ``None `` (`PYTHON-2443 `_).
22
+
10
23
See the `PyMongo 3.11.2 release notes in JIRA `_ for the list of resolved issues
11
24
in this release.
12
25
26
+ .. _PYTHON-2433 : https://jira.mongodb.org/browse/PYTHON-2433
27
+ .. _PYTHON-2438 : https://jira.mongodb.org/browse/PYTHON-2438
28
+ .. _PYTHON-2440 : https://jira.mongodb.org/browse/PYTHON-2440
29
+ .. _PYTHON-2443 : https://jira.mongodb.org/browse/PYTHON-2443
13
30
.. _PyMongo 3.11.2 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30315
14
31
15
32
Changes in Version 3.11.1
Original file line number Diff line number Diff line change 74
74
ALL = 2
75
75
"""Profile all operations."""
76
76
77
- version_tuple = (3 , 11 , 2 , '.dev0' )
77
+ version_tuple = (3 , 11 , 2 )
78
78
79
79
def get_version_string ():
80
80
if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 39
39
except ImportError :
40
40
_HAVE_SPHINX = False
41
41
42
- version = "3.11.2.dev0 "
42
+ version = "3.11.2"
43
43
44
44
f = open ("README.rst" )
45
45
try :
You can’t perform that action at this time.
0 commit comments