From 1338839b52dfefe3a63dd78bd4006900a6784a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20W=C3=B3jcik?= Date: Wed, 3 Jul 2019 11:18:56 +0200 Subject: [PATCH] Update changelog.rst --- docs/changelog.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ecdbf381..e9f342e1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,14 +7,14 @@ Development =========== - (Fill this out as you fix issues and develop your features). - BREAKING CHANGE: ``class_check`` and ``read_preference`` keyword arguments are no longer available when filtering a ``QuerySet``. #2112 - - Instead of ``Doc.objects(foo=bar, read_preference=...)`` use ``Doc.objects(foo=bar).read_preference(...)``. - - Instead of ``Doc.objects(foo=bar, class_check=False)`` use ``Doc.objects(foo=bar).clear_cls_query(...)``. - - This change also renames the private ``QuerySet._initial_query`` attribute to ``_cls_query``. + - Instead of ``Doc.objects(foo=bar, read_preference=...)`` use ``Doc.objects(foo=bar).read_preference(...)``. + - Instead of ``Doc.objects(foo=bar, class_check=False)`` use ``Doc.objects(foo=bar).clear_cls_query(...)``. + - This change also renames the private ``QuerySet._initial_query`` attribute to ``_cls_query``. - BREAKING CHANGE: Removed the deprecated ``format`` param from ``QuerySet.explain``. #2113 - BREAKING CHANGE: Renamed ``MongoEngineConnectionError`` to ``ConnectionFailure``. #2111 - - If you catch/use ``MongoEngineConnectionError`` in your code, you'll have to rename it. + - If you catch/use ``MongoEngineConnectionError`` in your code, you'll have to rename it. - BREAKING CHANGE: Positional arguments when instantiating a document are no longer supported. #2103 - - From now on keyword arguments (e.g. ``Doc(field_name=value)``) are required. + - From now on keyword arguments (e.g. ``Doc(field_name=value)``) are required. - The codebase is now formatted using ``black``. #2109 - ``ListField`` now accepts an optional ``max_length`` parameter. #2110