Skip to content

Commit 1d651b9

Browse files
BUMP 3.11.1 (#516)
1 parent 17dca5c commit 1d651b9

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

doc/changelog.rst

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,39 @@
11
Changelog
22
=========
33

4-
Changes in Version 3.12.0
4+
Changes in Version 3.11.1
55
-------------------------
66

7-
Version 3.12 adds support for Python 3.9 and includes a number of bug fixes.
7+
Version 3.11.1 adds support for Python 3.9 and includes a number of bugfixes.
88
Highlights include:
99

1010
- Support for Python 3.9.
11-
- New method :class:`bson.json_util.JSONOptions.with_options`.
11+
- Initial support for Azure and GCP KMS providers for client side field level
12+
encryption is in beta. See the docstring for
13+
:class:`~pymongo.mongo_client.MongoClient`,
14+
:class:`~pymongo.encryption_options.AutoEncryptionOpts`,
15+
and :mod:`~pymongo.encryption`. **Note: Backwards-breaking changes may be
16+
made before the final release.**
17+
- Fixed a bug where the :class:`bson.json_util.JSONOptions` API did not match
18+
the :class:`bson.codec_options.CodecOptions` API due to the absence of
19+
a :meth:`bson.json_util.JSONOptions.with_options` method. This method has now
20+
been added.
21+
- Fixed a bug which made it impossible to serialize
22+
:class:`~pymongo.errors.BulkWriteError` instances using :mod:`pickle`.
23+
- Fixed a bug wherein PyMongo did not always discard an implicit session after
24+
encountering a network error.
25+
- Fixed a bug where connections created in the background were not
26+
authenticated.
27+
- Fixed a memory leak in the :mod:`bson` module when using a
28+
:class:`~bson.codec_options.TypeRegistry`.
1229

1330
Issues Resolved
1431
...............
1532

16-
See the `PyMongo 3.12.0 release notes in JIRA`_ for the list of resolved issues
33+
See the `PyMongo 3.11.1 release notes in JIRA`_ for the list of resolved issues
1734
in this release.
1835

19-
.. _PyMongo 3.12.0 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=29594
36+
.. _PyMongo 3.11.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=29997
2037

2138
Changes in Version 3.11.0
2239
-------------------------

pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
ALL = 2
7575
"""Profile all operations."""
7676

77-
version_tuple = (3, 11, 1, '.dev1')
77+
version_tuple = (3, 11, 1)
7878

7979
def get_version_string():
8080
if isinstance(version_tuple[-1], str):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.11.1.dev1"
42+
version = "3.11.1"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)