Skip to content

Commit 6354d6c

Browse files
authored
Prepare 4.14.0 release (#2458)
1 parent d7074ba commit 6354d6c

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

doc/changelog.rst

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
11
Changelog
22
=========
33

4-
Changes in Version 4.14.0 (XXXX/XX/XX)
4+
Changes in Version 4.14.0 (2025/08/06)
55
--------------------------------------
6+
67
PyMongo 4.14 brings a number of changes including:
78

8-
- Added preliminary support for Python 3.14 and 3.14 with free-threading. We do not yet support the following with Python 3.14:
9-
- Subinterpreters (``concurrent.interpreters``)
10-
- Free-threading with Encryption
11-
- mod_wsgi
9+
- Added preliminary support for Python 3.14 and 3.14 with free-threading. We do
10+
not yet support the following with Python 3.14:
11+
12+
- Subinterpreters (``concurrent.interpreters``)
13+
- Free-threading with Encryption
14+
- mod_wsgi
15+
1216
- Removed experimental support for free-threading support in Python 3.13.
13-
- Added :attr:`bson.codec_options.TypeRegistry.codecs` and :attr:`bson.codec_options.TypeRegistry.fallback_encoder` properties
14-
to allow users to directly access the type codecs and fallback encoder for a given :class:`bson.codec_options.TypeRegistry`.
15-
- Added :meth:`pymongo.asynchronous.mongo_client.AsyncMongoClient.append_metadata` and
16-
:meth:`pymongo.mongo_client.MongoClient.append_metadata` to allow instantiated MongoClients to send client metadata
17-
on-demand
17+
- Added :attr:`bson.codec_options.TypeRegistry.codecs` and
18+
:attr:`bson.codec_options.TypeRegistry.fallback_encoder` properties
19+
to allow users to directly access the type codecs and fallback encoder for a
20+
given :class:`bson.codec_options.TypeRegistry`.
21+
- Added
22+
:meth:`pymongo.asynchronous.mongo_client.AsyncMongoClient.append_metadata` and
23+
:meth:`pymongo.mongo_client.MongoClient.append_metadata` to allow instantiated
24+
MongoClients to send client metadata on-demand
1825
- Improved performance of selecting a server with the Primary selector.
1926

20-
- Introduces a minor breaking change. When encoding :class:`bson.binary.BinaryVector`, a ``ValueError`` will be raised
21-
if the 'padding' metadata field is < 0 or > 7, or non-zero for any type other than PACKED_BIT.
22-
- Changed :meth:`~pymongo.uri_parser.parse_uri`'s ``options`` parameter to be type ``dict`` instead of ``_CaseInsensitiveDictionary``.
27+
- Introduces a minor breaking change. When encoding
28+
:class:`bson.binary.BinaryVector`, a ``ValueError`` will be raised if the
29+
'padding' metadata field is < 0 or > 7, or non-zero for any type other than
30+
PACKED_BIT.
31+
- Changed :meth:`~pymongo.uri_parser.parse_uri`'s ``options`` parameter to be
32+
type ``dict`` instead of ``_CaseInsensitiveDictionary``.
2333

2434
Changes in Version 4.13.2 (2025/06/17)
2535
--------------------------------------

pymongo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import List, Tuple, Union
2020

21-
__version__ = "4.14.0.dev0"
21+
__version__ = "4.14.0"
2222

2323

2424
def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]:

0 commit comments

Comments
 (0)