| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-26 | Moved remaining of serializers_regress to serializers tests | Claude Paroz | |
| 2015-09-26 | Moved more serializers_regress to serializers tests | Claude Paroz | |
| 2015-09-26 | Separated natural key serialization tests | Claude Paroz | |
| 2015-09-26 | Separated JSON serialization tests | Claude Paroz | |
| 2015-09-26 | Separated XML serialization tests | Claude Paroz | |
| 2015-09-26 | Separated YAML serialization tests | Claude Paroz | |
| 2015-08-31 | Fixed #25331 -- Removed trailing blank lines in docstrings. | Maxime Lorant | |
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-05-20 | Refs #24652 -- Used SimpleTestCase where appropriate. | Simon Charette | |
| 2015-02-13 | Fixed #24320 - Used field.value_to_string() in serialization of foreign key. | Andriy Sokolovskiy | |
| This fixes serialization of a ForeignKey to a UUIDField as the test indicates. | |||
| 2015-02-12 | Added a test for UUIDField serialization; refs #24320. | Tim Graham | |
| 2015-02-06 | Fixed E265 comment style | Collin Anderson | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-19 | Removed IPAddressField per deprecation timeline; refs #20439. | Tim Graham | |
| 2015-01-17 | Removed dumpdata --natural option and serializers use_natural_keys parameter. | Tim Graham | |
| Per deprecation timeline; refs #13252. | |||
| 2015-01-11 | Removed supports_binary_field flag as all backends support them | Claude Paroz | |
| It was mainly for MySQL on Python 3, but now the current recommended MySQL driver for Python 3 (mysqlclient) does support binary fields, it is unneeded. Refs #20377. | |||
| 2015-01-01 | Fixed #23891 -- Moved deprecation of IPAddressField to system check framework. | Tim Graham | |
| Thanks Markus Holtermann for review. | |||
| 2014-12-30 | Applied ignore_warnings to Django tests | Claude Paroz | |
| 2014-11-15 | Added a new GeoJSON serialization format for GeoDjango | Claude Paroz | |
| Thanks Reinout van Rees for the review. | |||
| 2014-11-03 | Fixed typos using https://github.com/vlajos/misspell_fixer | Veres Lajos | |
| 2014-07-09 | Fixed #19671 -- Added warnings that null and validators are ignored for ↵ | Anubhav Joshi | |
| ManyToManyField. Thanks Loic Bistuer and Tim Graham for help and review. | |||
| 2014-06-11 | Fixed #22653 -- Added some database feature flags to tests. | Tim Graham | |
| Thanks Rahul Priyadarshi. | |||
| 2014-05-10 | Adjusted refactoring of vendor checks. | Aymeric Augustin | |
| Thanks Shai for the thorough review. | |||
| 2014-05-08 | Replaced vendor checks by three feature flags. | Aymeric Augustin | |
| 2014-03-27 | Skipped a test that errors rather than marked it as an expectedFailure. | Tim Graham | |
| The test throws an error which Python 3.4 doesn't seem to catch as an expectedFailure. refs 7476d96f83a004d674244aeb7a66289035427396 | |||
| 2014-03-21 | Removed PIL compatability layer per deprecation timeline. | Tim Graham | |
| refs #19934. | |||
| 2014-02-06 | Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to ↵ | Vajrasky Kok | |
| allows_auto_pk_0. MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report. | |||
| 2014-01-26 | Fixed #19774 -- Deprecated the contenttypes.generic module. | Simon Charette | |
| It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review. | |||
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fix all violators of E231 | Alex Gaynor | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-19 | Removed unused local variables in tests. | Tim Graham | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-10-11 | Fixed #13252 -- Added ability to serialize with natural primary keys. | Tai Lee | |
| Added ``--natural-foreign`` and ``--natural-primary`` options and deprecated the ``--natural`` option to the ``dumpdata`` management command. Added ``use_natural_foreign_keys`` and ``use_natural_primary_keys`` arguments and deprecated the ``use_natural_keys`` argument to ``django.core.serializers.Serializer.serialize()``. Thanks SmileyChris for the suggestion. | |||
| 2013-10-10 | Fixed an undefined variable and clarified the purpose of a test. | Tim Graham | |
| refs #4459. | |||
| 2013-09-28 | Fixed #20439 -- Started deprecation of IPAddressField | Erik Romijn | |
| 2013-09-06 | Cleanup commit after peer review. | Roberto Aguilar | |
| 2013-09-06 | Fixed existing tests to handle BadSerializer. | Roberto Aguilar | |
| When a BadSerializer instance is stubbed in for the yaml serializer, make sure tests do not fail. | |||
| 2013-08-15 | Fixed #20895 -- Made check management command warn if a BooleanField does ↵ | Alasdair Nicol | |
| not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch. | |||
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-05-14 | Fixed #19934 - Use of Pillow is now preferred over PIL. | Daniel Lindsley | |
| This starts the deprecation period for PIL (support to end in 1.8). | |||
| 2013-05-08 | Marked tests of BinaryFields as expected failures on MySQL and Python 3. | Aymeric Augustin | |
| Current ports of MySQLdb are very buggy in this area. | |||
| 2013-03-02 | Added support for serializing BinaryField | Claude Paroz | |
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
