Skip to content

Commit 8966c9a

Browse files
committed
improve changelog
1 parent 5add868 commit 8966c9a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/changelog.rst

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ Development
99
- (Fill this out as you fix issues and develop your features).
1010
- BREAKING CHANGE: Improved the performance of :meth:`~mongoengine.Document.save()`
1111
by removing the call to :meth:`~mongoengine.Document.ensure_indexes` unless
12-
``meta['auto_create_index_on_save']`` is set to True.
12+
``meta['auto_create_index_on_save']`` is set to True. With the default settings, Document indexes
13+
will still be created on the fly, during the first usage of the collection (query, insert, etc),
14+
they will just not be re-created whenever .save() is called.
1315
- Added meta ``auto_create_index_on_save`` so you can enable index creation
14-
on :meth:`~mongoengine.Document.save()`.
16+
on :meth:`~mongoengine.Document.save()` (as it was < 0.26.0).
1517

1618
Changes in 0.25.0
1719
=================
1820
- Support MONGODB-AWS authentication mechanism (with `authmechanismproperties`) #2507
19-
- Turning off dereferencing for the results of distinct query. #2663
21+
- Bug Fix - distinct query doesn't obey the ``no_dereference()``. #2663
2022
- Add tests against Mongo 5.0 in pipeline
2123
- Drop support for Python 3.6 (EOL)
2224
- Bug fix support for PyMongo>=4 to fix "pymongo.errors.InvalidOperation: Cannot use MongoClient after close"

0 commit comments

Comments
 (0)