Compare commits

..

15 Commits

Author SHA1 Message Date
Stefan Wojcik
8a84398cf6 fix .travis.yml 2016-11-28 18:16:06 -05:00
Stefan Wojcik
5de80f0327 restore the virtualenv install in travis 2016-11-28 17:00:36 -05:00
Stefan Wojcik
ea91383558 fix a test that fails from time to time depending on an order of a dict 2016-11-28 16:56:18 -05:00
Stefan Wojcik
081b0e1edd remove an unused variable 2016-11-28 16:32:18 -05:00
Stefan Wojcik
5f2cd8ac75 flake8 tweaks for mongoengine.queryset 2016-11-28 16:21:02 -05:00
Stefan Wojcik
f2b8dcf292 flake8 tweaks for mongoengine.base 2016-11-28 16:15:46 -05:00
Stefan Wojcik
e2097061e9 flake8 tweaks to mongoengine.fields + ignore tests for now 2016-11-28 16:06:38 -05:00
Stefan Wojcik
c72465cbb4 flake8 tweaks for mongoengine.document 2016-11-28 16:00:56 -05:00
Stefan Wojcik
5d093e1011 flake8 tweaks for mongoengine.dereference 2016-11-28 15:56:28 -05:00
Stefan Wojcik
13ddef2033 flake8 tweaks to mongoengine/__init__.py 2016-11-28 15:53:40 -05:00
Stefan Wojcik
0229ebff4b flake8 tweaks to setup.py 2016-11-28 15:52:11 -05:00
Stefan Wojcik
fd8cfbf610 flake8 tweaks to tests.queryset.queryset 2016-11-28 15:49:30 -05:00
Stefan Wojcik
43adba115b flake8 tweaks to tests.queryset.transform 2016-11-28 15:22:38 -05:00
Stefan Wojcik
3985bd3e53 flake8 tweaks to tests.queryset.visitor 2016-11-28 15:17:32 -05:00
Stefan Wojcik
c35dab9541 add flake8 and flake8-import-order to travis for py27 2016-11-28 15:17:01 -05:00
2 changed files with 9 additions and 9 deletions

View File

@@ -6,15 +6,15 @@ MongoEngine
:Author: Harry Marr (http://github.com/hmarr)
:Maintainer: Ross Lawley (http://github.com/rozza)
.. image:: https://travis-ci.org/MongoEngine/mongoengine.svg?branch=master
:target: https://travis-ci.org/MongoEngine/mongoengine
.. image:: https://secure.travis-ci.org/MongoEngine/mongoengine.png?branch=master
:target: http://travis-ci.org/MongoEngine/mongoengine
.. image:: https://coveralls.io/repos/github/MongoEngine/mongoengine/badge.svg?branch=master
:target: https://coveralls.io/github/MongoEngine/mongoengine?branch=master
.. image:: https://coveralls.io/repos/MongoEngine/mongoengine/badge.png?branch=master
:target: https://coveralls.io/r/MongoEngine/mongoengine?branch=master
.. image:: https://landscape.io/github/MongoEngine/mongoengine/master/landscape.svg?style=flat
:target: https://landscape.io/github/MongoEngine/mongoengine/master
:alt: Code Health
.. image:: https://landscape.io/github/MongoEngine/mongoengine/master/landscape.png
:target: https://landscape.io/github/MongoEngine/mongoengine/master
:alt: Code Health
About
=====

View File

@@ -11,6 +11,7 @@ Changes in 0.10.7
- Dropped Python 3.2 support #1390
- Fixed the bug where dynamic doc has index inside a dict field #1278
- Fixed: ListField minus index assignment does not work #1128
- 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.
@@ -26,8 +27,7 @@ Changes in 0.10.7
- Added support for pickling QuerySet instances. #1397
- Fixed connecting to a list of hosts #1389
- Fixed a bug where accessing broken references wouldn't raise a DoesNotExist error #1334
- Fixed not being able to specify use_db_field=False on ListField(EmbeddedDocumentField) instances #1218
- Improvements to the dictionary fields docs #1383
- Improvements to the dictionary fields docs # 1383
Changes in 0.10.6
=================