You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.rst
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,17 @@ Development
8
8
===========
9
9
- (Fill this out as you fix issues and develop your features).
10
10
- Fix for uuidRepresentation not read when provided in URI #2741
11
+
- Add option to user array_filters https://www.mongodb.com/docs/manual/reference/operator/update/positional-filtered/
12
+
- Fix combination of __raw__ and mongoengine syntax #2773
11
13
- Add tests against MongoDB 6.0 and MongoDB 7.0 in the pipeline
12
14
- Fix validate() not being called when inheritance is used in EmbeddedDocument and validate is overriden #2784
13
15
- Add support for readPreferenceTags in connection parameters #2644
14
-
- Add option to user array_filters https://www.mongodb.com/docs/manual/reference/operator/update/positional-filtered/
16
+
- Use estimated_documents_count OR documents_count when count is called, based on the query #2529
17
+
- Fix no_dereference context manager which wasn't turning off auto-dereferencing correctly in some cases #2788
18
+
- BREAKING CHANGE: no_dereference context manager no longer returns the class in __enter__ #2788
19
+
as it was useless and making it look like it was returning a different class although it was the same.
20
+
Thus, it must be called like `with no_dereference(User):` and no longer `with no_dereference(User) as ...:`
21
+
- Added __raw__ to :meth:`~mongoengine.Queryset.order_by()` to allow to provide raw pymongo 'sort' argument and get around some of the limitations #2783
0 commit comments