File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ Changelog
7
7
Development
8
8
===========
9
9
- (Fill this out as you fix issues and develop your features).
10
+
11
+ Changes in 0.26.0
12
+ =================
10
13
- BREAKING CHANGE: Improved the performance of :meth: `~mongoengine.Document.save() `
11
14
by removing the call to :meth: `~mongoengine.Document.ensure_indexes ` unless
12
15
``meta['auto_create_index_on_save'] `` is set to True. With the default settings, Document indexes
@@ -19,7 +22,7 @@ Development
19
22
Although it could work to switch an existing DecimalField to Decimal128Field without applying a migration script,
20
23
it is not recommended to do so (DecimalField uses float/str to store the value, Decimal128Field uses Decimal128).
21
24
- BREAKING CHANGE: When using ListField(EnumField) or DictField(EnumField), the values weren't always cast into the Enum (#2531)
22
- - BREAKING CHANGE (bugfix) Querying ObjectIdField or ComplexDateTimeField with None will no longer raise a ValidationError (#2681)
25
+ - BREAKING CHANGE (bugfix) Querying ObjectIdField or ComplexDateTimeField with None no longer raise a ValidationError (#2681)
23
26
- Allow updating a field that has an operator name e.g. "type" with .update(set__type="foo"). It was raising an error previously. #2595
24
27
25
28
Changes in 0.25.0
Original file line number Diff line number Diff line change 29
29
)
30
30
31
31
32
- VERSION = (0 , 25 , 0 )
32
+ VERSION = (0 , 26 , 0 )
33
33
34
34
35
35
def get_version ():
You can’t perform that action at this time.
0 commit comments