Skip to content

Commit 0d2a4b4

Browse files
authored
Prep for 4.14.1 release (#2495)
1 parent 550d234 commit 0d2a4b4

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

doc/changelog.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
Changelog
22
=========
3+
Changes in Version 4.14.1 (2025/08/19)
4+
--------------------------------------
5+
6+
Version 4.14.1 is a bug fix release.
7+
8+
- Fixed a bug in ``MongoClient.append_metadata()`` and ``AsyncMongoClient.append_metadata()``
9+
that allowed duplicate ``DriverInfo.name`` to be appended to the metadata.
10+
11+
Issues Resolved
12+
...............
13+
14+
See the `PyMongo 4.14.1 release notes in JIRA`_ for the list of resolved issues
15+
in this release.
16+
17+
.. _PyMongo 4.14.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=45256
318

419
Changes in Version 4.14.0 (2025/08/06)
520
--------------------------------------
@@ -34,6 +49,14 @@ PyMongo 4.14 brings a number of changes including:
3449
- Changed :meth:`~pymongo.uri_parser.parse_uri`'s ``options`` return value to be
3550
type ``dict`` instead of ``_CaseInsensitiveDictionary``.
3651

52+
Issues Resolved
53+
...............
54+
55+
See the `PyMongo 4.14 release notes in JIRA`_ for the list of resolved issues
56+
in this release.
57+
58+
.. _PyMongo 4.14 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=43041
59+
3760
Changes in Version 4.13.2 (2025/06/17)
3861
--------------------------------------
3962

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.1.dev0"
21+
__version__ = "4.14.1"
2222

2323

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

0 commit comments

Comments
 (0)