Added mention of the big integer field and failfast test option to the 1.2 release notes.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11943 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2009-12-22 13:41:51 +00:00
parent 3d00992d9f
commit 7ef212af14
1 changed files with 12 additions and 0 deletions

View File

@ -277,3 +277,15 @@ alternative to the normal primary-key based object references in a
fixture, improving readability, and resolving problems referring to fixture, improving readability, and resolving problems referring to
objects whose primary key value may not be predictable or known. objects whose primary key value may not be predictable or known.
`BigIntegerField`
-----------------
Models can now use a 64 bit :class:`~django.db.models.BigIntegerField` type.
Fast Failure for Tests
----------------------
The `test` subcommand of `django-admin.py`, and the `runtests.py` script
used to run Django's own test suite, support a new `--failfast` option.
When specified, this option causes the test runner to exit after
encountering a failure instead of continuing with the test run.