Skip to content

Commit

Permalink
Merge pull request #2727 from bagerard/prepare_0_26_0_release
Browse files Browse the repository at this point in the history
prepare_0_26_0_release
  • Loading branch information
bagerard authored Jan 20, 2023
2 parents f3c944a + 4137ab6 commit fcb7b60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Changelog
Development
===========
- (Fill this out as you fix issues and develop your features).

Changes in 0.26.0
=================
- BREAKING CHANGE: Improved the performance of :meth:`~mongoengine.Document.save()`
by removing the call to :meth:`~mongoengine.Document.ensure_indexes` unless
``meta['auto_create_index_on_save']`` is set to True. With the default settings, Document indexes
Expand All @@ -19,7 +22,7 @@ Development
Although it could work to switch an existing DecimalField to Decimal128Field without applying a migration script,
it is not recommended to do so (DecimalField uses float/str to store the value, Decimal128Field uses Decimal128).
- BREAKING CHANGE: When using ListField(EnumField) or DictField(EnumField), the values weren't always cast into the Enum (#2531)
- BREAKING CHANGE (bugfix) Querying ObjectIdField or ComplexDateTimeField with None will no longer raise a ValidationError (#2681)
- BREAKING CHANGE (bugfix) Querying ObjectIdField or ComplexDateTimeField with None no longer raise a ValidationError (#2681)
- Allow updating a field that has an operator name e.g. "type" with .update(set__type="foo"). It was raising an error previously. #2595

Changes in 0.25.0
Expand Down
2 changes: 1 addition & 1 deletion mongoengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)


VERSION = (0, 25, 0)
VERSION = (0, 26, 0)


def get_version():
Expand Down

0 comments on commit fcb7b60

Please sign in to comment.