Skip to content

Commit c96220d

Browse files
committed
Update docs for 3.11.0b0
1 parent d42c510 commit c96220d

File tree

3 files changed

+27
-20
lines changed

3 files changed

+27
-20
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ is a `gridfs
1616
<http://www.mongodb.org/display/DOCS/GridFS+Specification>`_
1717
implementation on top of ``pymongo``.
1818

19-
PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 3.6, 4.0 and 4.2.
19+
PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 3.6, 4.0, 4.2, and 4.4.
2020

2121
Support / Feedback
2222
==================

doc/changelog.rst

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,43 @@
11
Changelog
22
=========
33

4-
Changes in Version 3.11.0
5-
-------------------------
4+
Changes in Version 3.11.0b0
5+
---------------------------
66

77
Version 3.11 adds support for MongoDB 4.4. Highlights include:
88

9-
- Deprecated the ``oplog_replay`` parameter to
10-
:meth:`pymongo.collection.Collection.find`. Starting in MongoDB 4.4, the
11-
server optimizes queries against the oplog collection without requiring
12-
the user to set this flag.
13-
- Added index hinting support to the
14-
:meth:`pymongo.collection.Collection.replace_one`,
15-
:meth:`pymongo.collection.Collection.update_one`,
16-
:meth:`pymongo.collection.Collection.update_many`,
17-
:meth:`pymongo.collection.Collection.find_one_and_replace`,
18-
and :meth:`pymongo.collection.Collection.find_one_and_update` commands.
19-
- Added index hinting support to the
20-
:class:`pymongo.operations.ReplaceOne`,
21-
:class:`pymongo.operations.UpdateOne`,
22-
and :class:`pymongo.operations.UpdateMany` bulk operations.
23-
- Support for :ref:`OCSP` (Online Certificate Status Protocol)
9+
- Support for :ref:`OCSP` (Online Certificate Status Protocol).
2410
- Support for `PyOpenSSL <https://pypi.org/project/pyOpenSSL/>`_ as an
2511
alternative TLS implementation. PyOpenSSL is required for :ref:`OCSP`
2612
support. It will also be installed when using the "tls" extra if the
2713
version of Python in use is older than 2.7.9.
2814
- Support for the :ref:`MONGODB-AWS` authentication mechanism.
15+
- Added index hinting support to the
16+
:meth:`~pymongo.collection.Collection.replace_one`,
17+
:meth:`~pymongo.collection.Collection.update_one`,
18+
:meth:`~pymongo.collection.Collection.update_many`,
19+
:meth:`~pymongo.collection.Collection.find_one_and_replace`,
20+
:meth:`~pymongo.collection.Collection.find_one_and_update`,
21+
:meth:`~pymongo.collection.Collection.delete_one`,
22+
:meth:`~pymongo.collection.Collection.delete_many`, and
23+
:meth:`~pymongo.collection.Collection.find_one_and_delete` commands.
24+
- Added index hinting support to the
25+
:class:`~pymongo.operations.ReplaceOne`,
26+
:class:`~pymongo.operations.UpdateOne`,
27+
:class:`~pymongo.operations.UpdateMany`,
28+
:class:`~pymongo.operations.DeleteOne`, and
29+
:class:`~pymongo.operations.DeleteMany` bulk operations.
2930
- Added the ``background`` parameter to
3031
:meth:`pymongo.database.Database.validate_collection`. For a description
3132
of this parameter see the MongoDB documentation for the `validate command`_.
3233
- Added the ``allow_disk_use`` parameters to
3334
:meth:`pymongo.collection.Collection.find`.
35+
- Support for creating collections in multi-document transactions with
36+
:meth:`~pymongo.database.Database.create_collection` on MongoDB 4.4+.
37+
- Deprecated the ``oplog_replay`` parameter to
38+
:meth:`pymongo.collection.Collection.find`. Starting in MongoDB 4.4, the
39+
server optimizes queries against the oplog collection without requiring
40+
the user to set this flag.
3441

3542
.. _validate command: https://docs.mongodb.com/manual/reference/command/validate/
3643

doc/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ but can be found on the
276276
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
277277
They can be installed by passing the full URL for the tag to pip::
278278

279-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b1.tar.gz
279+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b0.tar.gz
280280

281281
or easy_install::
282282

283-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b1.tar.gz
283+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b0.tar.gz

0 commit comments

Comments
 (0)