From 8f4b0c598a9d9c4ebb38d6015d22a858a613eb22 Mon Sep 17 00:00:00 2001 From: Prashant Mital Date: Fri, 22 Mar 2019 13:03:39 -0700 Subject: [PATCH] PYTHON-1476 Add changelog entry for flexible BSON work (cherry picked from commit 6bea39d7cacaa055bdce2cadb5004767d21c5e7b) --- doc/changelog.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/changelog.rst b/doc/changelog.rst index 7fe081500..14549a658 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -27,6 +27,11 @@ Changes in Version 3.8.0.dev0 when decoding the command response. Previously the codec_options was only used when the MongoDB server version was <= 3.0. - TLS Renegotiation is now disabled when possible. +- Custom types can now be directly encoded to, and decoded from MongoDB using + the :class:`~bson.codec_options.TypeCodec` and + :class:`~bson.codec_options.TypeRegistry` APIs. For more information, see + the :doc:`custom type example `. + Issues Resolved ...............