From 50ae81192924fd6c9ab1f29870623fc8f4a129ea Mon Sep 17 00:00:00 2001 From: Bernie Hackett Date: Mon, 16 Jul 2018 12:12:23 -0700 Subject: [PATCH] Changelog for 3.7.1 --- doc/changelog.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/doc/changelog.rst b/doc/changelog.rst index 0b2bd4039..069435542 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,26 @@ Changelog ========= +Changes in Version 3.7.1 +------------------------ + +Version 3.7.1 fixes a few issues discovered since the release of 3.7.0. + +- Calling :meth:`~pymongo.database.Database.authenticate` more than once + with the same credentials results in OperationFailure. +- Authentication fails when SCRAM-SHA-1 is used to authenticate users with + only MONGODB-CR credentials. +- A millisecond rounding problem when decoding datetimes in the pure Python + BSON decoder on 32 bit systems and AWS lambda. + +Issues Resolved +............... + +See the `PyMongo 3.7.1 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PyMongo 3.7.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=21096 + Changes in Version 3.7.0 ------------------------