File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ Highlights include:
3535 :class: `~pymongo.operations.UpdateMany `,
3636 :class: `~pymongo.operations.DeleteOne `, and
3737 :class: `~pymongo.operations.DeleteMany ` bulk operations.
38+ - Added support for :data: `bson.binary.UuidRepresentation.UNSPECIFIED ` and
39+ ``MongoClient(uuidRepresentation='unspecified') `` which will become the
40+ default UUID representation starting in PyMongo 4.0. See
41+ :ref: `handling-uuid-data-example ` for details.
3842- Added the ``background `` parameter to
3943 :meth: `pymongo.database.Database.validate_collection `. For a description
4044 of this parameter see the MongoDB documentation for the `validate command `_.
@@ -49,6 +53,8 @@ Highlights include:
4953- Fixed a bug in change streams that could cause PyMongo to miss some change
5054 documents when resuming a stream that was started without a resume token and
5155 whose first batch did not contain any change documents.
56+ - Fixed an bug where using gevent.Timeout to timeout an operation could
57+ lead to a deadlock.
5258
5359Deprecations:
5460
Original file line number Diff line number Diff line change 7474ALL = 2
7575"""Profile all operations."""
7676
77- version_tuple = (3 , 11 , 0 , 'rc1.dev0' )
77+ version_tuple = (3 , 11 , 0 )
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.0rc1.dev0 "
42+ version = "3.11.0 "
4343
4444f = open ("README.rst" )
4545try :
You can’t perform that action at this time.
0 commit comments