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
77Development
88===========
99- (Fill this out as you fix issues and develop your features).
10+
11+ Changes in 0.26.0
12+ =================
1013- BREAKING CHANGE: Improved the performance of :meth: `~mongoengine.Document.save() `
1114 by removing the call to :meth: `~mongoengine.Document.ensure_indexes ` unless
1215 ``meta['auto_create_index_on_save'] `` is set to True. With the default settings, Document indexes
@@ -19,7 +22,7 @@ Development
1922 Although it could work to switch an existing DecimalField to Decimal128Field without applying a migration script,
2023 it is not recommended to do so (DecimalField uses float/str to store the value, Decimal128Field uses Decimal128).
2124- 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)
2326- Allow updating a field that has an operator name e.g. "type" with .update(set__type="foo"). It was raising an error previously. #2595
2427
2528Changes in 0.25.0
Original file line number Diff line number Diff line change 2929)
3030
3131
32- VERSION = (0 , 25 , 0 )
32+ VERSION = (0 , 26 , 0 )
3333
3434
3535def get_version ():
You can’t perform that action at this time.
0 commit comments