From 08410399419a6e921b0f42eb663af91bce8c6c37 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 30 Apr 2024 09:37:37 -0500 Subject: [PATCH] PYTHON-4411 Prep for 4.7.1 Release (#1625) --- doc/changelog.rst | 17 +++++++++++++++++ pymongo/_version.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 1b82572795..ff03742378 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,23 @@ Changelog ========= +Changes in Version 4.7.1 +------------------------- + +Version 4.7.1 fixes a bug introduced in 4.7.0: + +- Fixed a bug where PyMongo would cause an ``AttributeError`` if ``dns.resolver`` was imported and referenced + after PyMongo was imported. +- Clarified the behavior of the ``TOKEN_RESOURCE`` auth mechanism property for ``MONGODB-OIDC``. + +Issues Resolved +............... + +See the `PyMongo 4.7.1 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PyMongo 4.7.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39680 + Changes in Version 4.7 ------------------------ diff --git a/pymongo/_version.py b/pymongo/_version.py index dc5c38c734..de8933e30c 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -17,7 +17,7 @@ from typing import Tuple, Union -version_tuple: Tuple[Union[int, str], ...] = (4, 8, 0, ".dev0") +version_tuple: Tuple[Union[int, str], ...] = (4, 7, 1) def get_version_string() -> str: