Skip to content

Commit

Permalink
Prepare for 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bagerard committed Mar 1, 2024
1 parent 356e772 commit 5e0a678
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.28.0
=================
- Fix for uuidRepresentation not read when provided in URI #2741
- Add option to user array_filters https://www.mongodb.com/docs/manual/reference/operator/update/positional-filtered/ #2769
- Fix combination of __raw__ and mongoengine syntax #2773
Expand All @@ -20,7 +23,7 @@ Development
Thus, it must be called like `with no_dereference(User):` and no longer `with no_dereference(User) as ...:`
- Added __raw__ to :meth:`~mongoengine.Queryset.order_by()` to allow to provide raw pymongo 'sort' argument and get around some of the limitations #2783
- Add `text_score` argument on :meth:`~mongoengine.Document.search_text()` to allow text_score computation to be turned off
as it interfer with natural returned documents order #2759
as it interfere with natural returned documents order #2759

Changes in 0.27.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, 27, 0)
VERSION = (0, 28, 0)


def get_version():
Expand Down

0 comments on commit 5e0a678

Please sign in to comment.