Skip to content

Commit fcb7b60

Browse files
authored
Merge pull request #2727 from bagerard/prepare_0_26_0_release
prepare_0_26_0_release
2 parents f3c944a + 4137ab6 commit fcb7b60

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docs/changelog.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Changelog
77
Development
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

2528
Changes in 0.25.0

mongoengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
)
3030

3131

32-
VERSION = (0, 25, 0)
32+
VERSION = (0, 26, 0)
3333

3434

3535
def get_version():

0 commit comments

Comments
 (0)