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
66
77Version 3.6.1 fixes bugs reported since the release of 3.6.0:
88
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
1111 ``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
1313 milliseconds instead of seconds.
1414- Properly import and use the
1515 `monotonic  <https://pypi.python.org/pypi/monotonic >`_
1616 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.
1720
1821Issues Resolved
1922............... 
Original file line number Diff line number Diff line change 6464ALL  =  2 
6565"""Profile all operations.""" 
6666
67- version_tuple  =  (3 , 6 , 1 ,  '.dev0' )
67+ version_tuple  =  (3 , 6 , 1 )
6868
6969def  get_version_string ():
7070 if  isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 3131except  ImportError :
3232 _HAVE_SPHINX  =  False 
3333
34- version  =  "3.6.1.dev0 " 
34+ version  =  "3.6.1" 
3535
3636f  =  open ("README.rst" )
3737try :
                                 You can’t perform that action at this time. 
               
                  
0 commit comments