-
Notifications
You must be signed in to change notification settings - Fork 1.1k
PYTHON-5487 Update 4.14 changelog to mention MongoDB 4.0 is no longer supported #2462
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,35 @@ | ||
Changelog | ||
========= | ||
|
||
Changes in Version 4.14.0 (XXXX/XX/XX) | ||
Changes in Version 4.14.0 (2025/08/06) | ||
-------------------------------------- | ||
|
||
PyMongo 4.14 brings a number of changes including: | ||
|
||
- Added preliminary support for Python 3.14 and 3.14 with free-threading. We do not yet support the following with Python 3.14: | ||
- Subinterpreters (``concurrent.interpreters``) | ||
- Free-threading with Encryption | ||
- mod_wsgi | ||
- Dropped support for MongoDB 4.0. | ||
- Added preliminary support for Python 3.14 and 3.14 with free-threading. We do | ||
not yet support the following with Python 3.14: | ||
|
||
- Subinterpreters (``concurrent.interpreters``) | ||
- Free-threading with Encryption | ||
- mod_wsgi | ||
|
||
- Removed experimental support for free-threading support in Python 3.13. | ||
- Added :attr:`bson.codec_options.TypeRegistry.codecs` and :attr:`bson.codec_options.TypeRegistry.fallback_encoder` properties | ||
to allow users to directly access the type codecs and fallback encoder for a given :class:`bson.codec_options.TypeRegistry`. | ||
- Added :meth:`pymongo.asynchronous.mongo_client.AsyncMongoClient.append_metadata` and | ||
:meth:`pymongo.mongo_client.MongoClient.append_metadata` to allow instantiated MongoClients to send client metadata | ||
on-demand | ||
- Added :attr:`bson.codec_options.TypeRegistry.codecs` and | ||
:attr:`bson.codec_options.TypeRegistry.fallback_encoder` properties | ||
to allow users to directly access the type codecs and fallback encoder for a | ||
given :class:`bson.codec_options.TypeRegistry`. | ||
- Added | ||
:meth:`pymongo.asynchronous.mongo_client.AsyncMongoClient.append_metadata` and | ||
:meth:`pymongo.mongo_client.MongoClient.append_metadata` to allow instantiated | ||
MongoClients to send client metadata on-demand | ||
- Improved performance of selecting a server with the Primary selector. | ||
|
||
- Introduces a minor breaking change. When encoding :class:`bson.binary.BinaryVector`, a ``ValueError`` will be raised | ||
if the 'padding' metadata field is < 0 or > 7, or non-zero for any type other than PACKED_BIT. | ||
- Changed :meth:`~pymongo.uri_parser.parse_uri`'s ``options`` parameter to be type ``dict`` instead of ``_CaseInsensitiveDictionary``. | ||
- Introduces a minor breaking change. When encoding | ||
:class:`bson.binary.BinaryVector`, a ``ValueError`` will be raised if the | ||
'padding' metadata field is < 0 or > 7, or non-zero for any type other than | ||
PACKED_BIT. | ||
- Changed :meth:`~pymongo.uri_parser.parse_uri`'s ``options`` parameter to be | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggest changing "parameter" to be "return value" since |
||
type ``dict`` instead of ``_CaseInsensitiveDictionary``. | ||
|
||
Changes in Version 4.13.2 (2025/06/17) | ||
-------------------------------------- | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also add a
..warning
for this like we did for MongoDB 3.6 in pymongo 4.11?