File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,17 @@ Changes in Version 3.6.1
6
6
7
7
Version 3.6.1 fixes bugs reported since the release of 3.6.0:
8
8
9
- - Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed every
10
- second when ``maxIdleTimeMS `` is set. Idle sockets are now closed after
9
+ - Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed almost
10
+ instantly when ``maxIdleTimeMS `` is set. Idle sockets are now closed after
11
11
``maxIdleTimeMS `` milliseconds.
12
- - :attr: `pymongo.mongo_client.MongoClient.max_idle_time_ms ` returns
12
+ - :attr: `pymongo.mongo_client.MongoClient.max_idle_time_ms ` now returns
13
13
milliseconds instead of seconds.
14
14
- Properly import and use the
15
15
`monotonic <https://pypi.python.org/pypi/monotonic >`_
16
16
library for monotonic time when it is installed.
17
+ - :meth: `~pymongo.collection.Collection.aggregate ` now ignores the
18
+ ``batchSize `` argument when running a pipeline with a ``$out `` stage.
19
+ - Always send handshake metadata for new connections.
17
20
18
21
Issues Resolved
19
22
...............
Original file line number Diff line number Diff line change 64
64
ALL = 2
65
65
"""Profile all operations."""
66
66
67
- version_tuple = (3 , 6 , 1 , '.dev0' )
67
+ version_tuple = (3 , 6 , 1 )
68
68
69
69
def get_version_string ():
70
70
if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 31
31
except ImportError :
32
32
_HAVE_SPHINX = False
33
33
34
- version = "3.6.1.dev0 "
34
+ version = "3.6.1"
35
35
36
36
f = open ("README.rst" )
37
37
try :
You can’t perform that action at this time.
0 commit comments