Path to this page:
Subject: CVS commit: pkgsrc/databases/py-mongo
From: Adam Ciarcinski
Date: 2020-12-09 10:46:11
Message id: 20201209094611.38F37FA9D@cvs.NetBSD.org
Log Message:
py-mongo: updated to 3.11.2
Changes in Version 3.11.2
Issues Resolved
Version 3.11.2 includes a number of bugfixes. Highlights include:
Fixed a memory leak caused by failing SDAM monitor checks on Python 3 (PYTHON-2433).
Fixed a regression that changed the string representation of BulkWriteError \
(PYTHON-2438).
Fixed a bug that made it impossible to use \
bson.codec_options.CodecOptions.with_options() and with_options() on some early \
versions of Python 3.4 and Python 3.5 due to a bug in the standard library \
implementation of collections.namedtuple._asdict() (PYTHON-2440).
Fixed a bug that resulted in a TypeError exception when a PyOpenSSL socket was \
configured with a timeout of None (PYTHON-2443).
Changes in Version 3.11.1
Version 3.11.1 adds support for Python 3.9 and includes a number of bugfixes. \
Highlights include:
Support for Python 3.9.
Initial support for Azure and GCP KMS providers for client side field level \
encryption is in beta. See the docstring for MongoClient, AutoEncryptionOpts, \
and encryption. Note: Backwards-breaking changes may be made before the final \
release.
Fixed a bug where the bson.json_util.JSONOptions API did not match the \
bson.codec_options.CodecOptions API due to the absence of a \
bson.json_util.JSONOptions.with_options() method. This method has now been \
added.
Fixed a bug which made it impossible to serialize BulkWriteError instances using \
pickle.
Fixed a bug wherein PyMongo did not always discard an implicit session after \
encountering a network error.
Fixed a bug where connections created in the background were not authenticated.
Fixed a memory leak in the bson module when using a TypeRegistry.
Changes in Version 3.11.0
Version 3.11 adds support for MongoDB 4.4 and includes a number of bug fixes. \
Highlights include:
Support for OCSP (Online Certificate Status Protocol).
Support for PyOpenSSL as an alternative TLS implementation. PyOpenSSL is \
required for OCSP support. It will also be installed when using the “tls” \
extra if the version of Python in use is older than 2.7.9.
Support for the MONGODB-AWS authentication mechanism.
Support for the directConnection URI option and kwarg to MongoClient.
Support for speculative authentication attempts in connection handshakes which \
reduces the number of network roundtrips needed to authenticate new connections \
on MongoDB 4.4+.
Support for creating collections in multi-document transactions with \
create_collection() on MongoDB 4.4+.
Added index hinting support to the replace_one(), update_one(), update_many(), \
find_one_and_replace(), find_one_and_update(), delete_one(), delete_many(), and \
find_one_and_delete() commands.
Added index hinting support to the ReplaceOne, UpdateOne, UpdateMany, DeleteOne, \
and DeleteMany bulk operations.
Added support for bson.binary.UuidRepresentation.UNSPECIFIED and \
MongoClient(uuidRepresentation='unspecified') which will become the default UUID \
representation starting in PyMongo 4.0. See Handling UUID Data for details.
Added the background parameter to \
pymongo.database.Database.validate_collection(). For a description of this \
parameter see the MongoDB documentation for the validate command.
Added the allow_disk_use parameters to pymongo.collection.Collection.find().
Added the hedge parameter to PrimaryPreferred, Secondary, SecondaryPreferred, \
Nearest to support disabling (or explicitly enabling) hedged reads in MongoDB \
4.4+.
Fixed a bug in change streams that could cause PyMongo to miss some change \
documents when resuming a stream that was started without a resume token and \
whose first batch did not contain any change documents.
Fixed an bug where using gevent.Timeout to timeout an operation could lead to a \
deadlock.
Deprecations:
Deprecated the oplog_replay parameter to pymongo.collection.Collection.find(). \
Starting in MongoDB 4.4, the server optimizes queries against the oplog \
collection without requiring the user to set this flag.
Deprecated pymongo.collection.Collection.reindex(). Use command() to run the \
reIndex command instead.
Deprecated pymongo.mongo_client.MongoClient.fsync(). Use command() to run the \
fsync command instead.
Deprecated pymongo.mongo_client.MongoClient.unlock(). Use command() to run the \
fsyncUnlock command instead. See the documentation for more information.
Deprecated pymongo.mongo_client.MongoClient.is_locked. Use command() to run the \
currentOp command instead. See the documentation for more information.
Unavoidable breaking changes:
GridFSBucket and GridFS do not support multi-document transactions. Running a \
GridFS operation in a transaction now always raises the following error: \
InvalidOperation: GridFS does not support multi-document transactions
Files: