Merge pull request #1 from MongoEngine/master
pull new changes from original
This commit is contained in:
		| @@ -2,8 +2,50 @@ | ||||
| Changelog | ||||
| ========= | ||||
|  | ||||
| Changes in 0.10.1 - DEV | ||||
| Changes in 0.10.7 - DEV | ||||
| ======================= | ||||
| - Fixed the bug where dynamic doc has index inside a dict field #1278 | ||||
| - Fixed not being able to specify `use_db_field=False` on `ListField(EmbeddedDocumentField)` instances | ||||
| - Fixed cascade delete mixing among collections #1224 | ||||
| - Add `signal_kwargs` argument to `Document.save`, `Document.delete` and `BaseQuerySet.insert` to be passed to signals calls #1206 | ||||
| - Raise `OperationError` when trying to do a `drop_collection` on document with no collection set. | ||||
| - count on ListField of EmbeddedDocumentField fails. #1187 | ||||
| - Fixed long fields stored as int32 in Python 3. #1253 | ||||
| - MapField now handles unicodes keys correctly. #1267 | ||||
| - ListField now handles negative indicies correctly. #1270 | ||||
| - Fixed AttributeError when initializing EmbeddedDocument with positional args. #681 | ||||
| - Fixed no_cursor_timeout error with pymongo 3.0+ #1304 | ||||
| - Replaced map-reduce based QuerySet.sum/average with aggregation-based implementations #1336 | ||||
| - Fixed support for `__` to escape field names that match operators names in `update` #1351 | ||||
|  | ||||
| Changes in 0.10.6 | ||||
| ================= | ||||
| - Add support for mocking MongoEngine based on mongomock. #1151 | ||||
| - Fixed not being able to run tests on Windows. #1153 | ||||
| - Allow creation of sparse compound indexes. #1114 | ||||
| - count on ListField of EmbeddedDocumentField fails. #1187 | ||||
|  | ||||
| Changes in 0.10.5 | ||||
| ================= | ||||
| - Fix for reloading of strict with special fields. #1156 | ||||
|  | ||||
| Changes in 0.10.4 | ||||
| ================= | ||||
| - SaveConditionError is now importable from the top level package. #1165 | ||||
| - upsert_one method added. #1157 | ||||
|  | ||||
| Changes in 0.10.3 | ||||
| ================= | ||||
| - Fix `read_preference` (it had chaining issues with PyMongo 2.x and it didn't work at all with PyMongo 3.x) #1042 | ||||
|  | ||||
| Changes in 0.10.2 | ||||
| ================= | ||||
| - Allow shard key to point to a field in an embedded document. #551 | ||||
| - Allow arbirary metadata in fields. #1129 | ||||
| - ReferenceFields now support abstract document types. #837 | ||||
|  | ||||
| Changes in 0.10.1 | ||||
| ================= | ||||
| - Fix infinite recursion with CASCADE delete rules under specific conditions. #1046 | ||||
| - Fix CachedReferenceField bug when loading cached docs as DBRef but failing to save them. #1047 | ||||
| - Fix ignored chained options #842 | ||||
| @@ -13,6 +55,8 @@ Changes in 0.10.1 - DEV | ||||
| - Fix ListField minus index assignment does not work. #1119 | ||||
| - Remove code that marks field as changed when the field has default but not existed in database #1126 | ||||
| - Remove test dependencies (nose and rednose) from install dependencies list. #1079 | ||||
| - Recursively build query when using elemMatch operator. #1130 | ||||
| - Fix instance back references for lists of embedded documents. #1131 | ||||
|  | ||||
| Changes in 0.10.0 | ||||
| ================= | ||||
|   | ||||
		Reference in New Issue
	
	Block a user