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
77Issues Resolved
88...............
99
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+
1023See the `PyMongo 3.11.2 release notes in JIRA `_ for the list of resolved issues
1124in this release.
1225
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
1330.. _PyMongo 3.11.2 release notes in JIRA : https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30315
1431
1532Changes in Version 3.11.1
Original file line number Diff line number Diff line change 7474ALL = 2
7575"""Profile all operations."""
7676
77- version_tuple = (3 , 11 , 2 , '.dev0' )
77+ version_tuple = (3 , 11 , 2 )
7878
7979def get_version_string ():
8080 if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 3939 except ImportError :
4040 _HAVE_SPHINX = False
4141
42- version = "3.11.2.dev0 "
42+ version = "3.11.2"
4343
4444f = open ("README.rst" )
4545try :
You can’t perform that action at this time.
0 commit comments