File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,21 @@ Changelog
5
5
Development
6
6
===========
7
7
- (Fill this out as you fix issues and develop your features).
8
- - Fixed using sets in field choices #1481
8
+
9
+ Changes in 0.12.0
10
+ =================
9
11
- POTENTIAL BREAKING CHANGE: Fixed limit/skip/hint/batch_size chaining #1476
10
12
- POTENTIAL BREAKING CHANGE: Changed a public `QuerySet.clone_into ` method to a private `QuerySet._clone_into ` #1476
11
13
- Fixed connecting to a replica set with PyMongo 2.x #1436
14
+ - Fixed using sets in field choices #1481
15
+ - Fixed deleting items from a `ListField ` #1318
12
16
- Fixed an obscure error message when filtering by `field__in=non_iterable `. #1237
17
+ - Fixed behavior of a `dec ` update operator #1450
18
+ - Added a `rename ` update operator #1454
19
+ - Added validation for the `db_field ` parameter #1448
20
+ - Fixed the error message displayed when querying an `EmbeddedDocumentField ` by an invalid value #1440
21
+ - Fixed the error message displayed when validating unicode URLs #1486
22
+ - Raise an error when trying to save an abstract document #1449
13
23
14
24
Changes in 0.11.0
15
25
=================
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ Development
6
6
***********
7
7
(Fill this out whenever you introduce breaking changes to MongoEngine)
8
8
9
+
10
+ 0.12.0
11
+ ******
9
12
This release includes various fixes for the `BaseQuerySet ` methods and how they
10
13
are chained together. Since version 0.10.1 applying limit/skip/hint/batch_size
11
14
to an already-existing queryset wouldn't modify the underlying PyMongo cursor.
Original file line number Diff line number Diff line change 23
23
list (signals .__all__ ) + list (errors .__all__ ))
24
24
25
25
26
- VERSION = (0 , 11 , 0 )
26
+ VERSION = (0 , 12 , 0 )
27
27
28
28
29
29
def get_version ():
You can’t perform that action at this time.
0 commit comments