File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,23 @@ Changelog
6
6
Development
7
7
===========
8
8
- (Fill this out as you fix issues and develop your features).
9
+
10
+ Changes in 0.21.0
11
+ =================
9
12
- Bug fix in DynamicDocument which is not parsing known fields in constructor like Document do #2412
10
13
- When using pymongo >= 3.7, make use of Collection.count_documents instead of Collection.count
11
14
and Cursor.count that got deprecated in pymongo >= 3.7.
12
15
This should have a negative impact on performance of count see Issue #2219
13
16
- Fix a bug that made the queryset drop the read_preference after clone().
14
17
- Remove Py3.5 from CI as it reached EOL and add Python 3.9
15
- - Fix some issues related with db_field conflict in constructor #2414
16
- - Fix the behavior of Doc.objects.limit(0) which should return all documents (similar to mongodb) #2311
18
+ - Fix some issues related with db_field/field conflict in constructor #2414
19
+ - BREAKING CHANGE: Fix the behavior of Doc.objects.limit(0) which should return all documents (similar to mongodb) #2311
17
20
- Bug fix in ListField when updating the first item, it was saving the whole list, instead of
18
- just replacing the first item (as it's usually done) #2392
21
+ just replacing the first item (as usually done when updating 1 item of the list ) #2392
19
22
- Add EnumField: ``mongoengine.fields.EnumField ``
20
23
- Refactoring - Remove useless code related to Document.__only_fields and Queryset.only_fields
24
+ - Fix query transformation regarding special operators #2365
25
+ - Bug Fix: Document.save() fails when shard_key is not _id #2154
21
26
22
27
Changes in 0.20.0
23
28
=================
Original file line number Diff line number Diff line change 28
28
)
29
29
30
30
31
- VERSION = (0 , 20 , 0 )
31
+ VERSION = (0 , 21 , 0 )
32
32
33
33
34
34
def get_version ():
You can’t perform that action at this time.
0 commit comments