Skip to content

Commit 6116811

Browse files
authored
PYTHON-5609 Prepare for 4.15.3 Release (#2584)
1 parent fef10d2 commit 6116811

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

doc/changelog.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Changelog
22
=========
33

4+
Changes in Version 4.15.3 (2025/10/07)
5+
--------------------------------------
6+
7+
Version 4.15.3 is a bug fix release.
8+
9+
- Fixed a memory leak when raising :class:`bson.errors.InvalidDocument` with C extensions.
10+
- Fixed the return type of the :meth:`~pymongo.asynchronous.collection.AsyncCollection.distinct`,
11+
:meth:`~pymongo.synchronous.collection.Collection.distinct`, :meth:`pymongo.asynchronous.cursor.AsyncCursor.distinct`,
12+
and :meth:`pymongo.asynchronous.cursor.AsyncCursor.distinct` methods.
13+
14+
Issues Resolved
15+
...............
16+
17+
See the `PyMongo 4.15.3 release notes in JIRA`_ for the list of resolved issues
18+
in this release.
19+
20+
.. _PyMongo 4.15.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=47293
21+
422
Changes in Version 4.15.2 (2025/10/01)
523
--------------------------------------
624

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

2323

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

0 commit comments

Comments
 (0)