2
2
Changelog
3
3
=========
4
4
5
+ Changes in v0.2.2
6
+ =================
7
+ - Fixed bug that prevented indexes from being used on ``ListField ``\ s
8
+ - ``Document.filter() `` added as an alias to ``Document.__call__() ``
9
+ - ``validate() `` may now be used on ``EmbeddedDocument ``\ s
10
+
5
11
Changes in v0.2.1
6
12
=================
7
13
- Added a MongoEngine backend for Django sessions
8
- - Added force_insert to Document.save()
9
- - Improved querying syntax for ListField and EmbeddedDocumentField
10
- - Added support for user-defined primary keys (_ids in MongoDB)
14
+ - Added `` force_insert `` to `` Document.save() ``
15
+ - Improved querying syntax for `` ListField `` and `` EmbeddedDocumentField ``
16
+ - Added support for user-defined primary keys (`` _id `` in MongoDB)
11
17
12
18
Changes in v0.2
13
19
===============
14
- - Added Q class for building advanced queries
15
- - Added QuerySet methods for atomic updates to documents
16
- - Fields may now specify ``unique=True `` to enforce uniqueness across a collection
20
+ - Added ``Q `` class for building advanced queries
21
+ - Added ``QuerySet `` methods for atomic updates to documents
22
+ - Fields may now specify ``unique=True `` to enforce uniqueness across a
23
+ collection
17
24
- Added option for default document ordering
18
25
- Fixed bug in index definitions
19
26
20
27
Changes in v0.1.3
21
28
=================
22
29
- Added Django authentication backend
23
- - Added Document.meta support for indexes, which are ensured just before
30
+ - Added `` Document.meta `` support for indexes, which are ensured just before
24
31
querying takes place
25
32
- A few minor bugfixes
26
33
@@ -30,8 +37,8 @@ Changes in v0.1.2
30
37
- Query values may be processed before before being used in queries
31
38
- Made connections lazy
32
39
- Fixed bug in Document dictionary-style access
33
- - Added BooleanField
34
- - Added Document.reload method
40
+ - Added `` BooleanField ``
41
+ - Added `` Document.reload() `` method
35
42
36
43
37
44
Changes in v0.1.1
0 commit comments