| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-25 | Fixed #12030 -- Validate integer field range at the model level. | Simon Charette | |
| Thanks to @timgraham for the review. | |||
| 2014-03-21 | Removed PIL compatability layer per deprecation timeline. | Tim Graham | |
| refs #19934. | |||
| 2014-03-13 | Skip test for saving microseconds on backends which do not support it. | Shai Berger | |
| 2014-03-12 | Fixed #20292: Pass datetime objects (not formatted dates) as params to Oracle | Shai Berger | |
| This seems worthwhile in its own right, but also works around an Oracle bug (in versions 10 -- 11.1) where the use of Unicode would reset the date/time formats, causing ORA-01843 errors. Thanks Trac users CarstenF for the report, jtiai for the initial patch, and everyone who contributed to the discussion on the ticket. | |||
| 2014-03-12 | Flake8 corrections | Shai Berger | |
| 2014-03-12 | Fixed test failure on Oracle: model_fields.tests.test_float_validates_object | Shai Berger | |
| Failing test introduced in fix for refs #22210. | |||
| 2014-03-10 | Fixed #22210 -- Saving model instances to non-related fields. | Daniel Pyrathon | |
| Previously, saving a model instance to a non-related field (in particular a FloatField) would silently convert the model to an Integer (the pk) and save it. This is undesirable behaviour, and likely to cause confusion so the validatio has been hardened. Thanks to @PirosB3 for the patch and @jarshwah for the review. | |||
| 2014-03-05 | Fixed #22206 -- Passed models.TextField.max_length to forms.CharField.maxlength | Chris Wilson | |
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-02-15 | Fixed #19299 -- Fixed Nullification of Foreign Keys To CharFields | Albert Wang | |
| Thanks tunixman for the report and Baptiste Mispelon and Shai Berger for reviews. | |||
| 2014-01-20 | Fixed #16905 -- Added extensible checks (nee validation) framework | Russell Keith-Magee | |
| This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844. | |||
| 2013-11-26 | Fixed #21512 -- Added more complete information about Pillow and PIL in ↵ | Vajrasky Kok | |
| model_fields and model_forms tests. | |||
| 2013-11-02 | PEP8 cleanup | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 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-04 | Fixed #21217 -- Avoid connecting `(pre|post)_init` signals to abstract senders. | Simon Charette | |
| 2013-09-28 | Fixed #20439 -- Started deprecation of IPAddressField | Erik Romijn | |
| 2013-09-03 | Removed references to django.utils.unittest which is PendingDeprecation | Tim Graham | |
| 2013-08-30 | Fixed #20999 - Allow overriding formfield class with choices, without ↵ | Carl Meyer | |
| subclass restrictions. Refs #18162. Thanks claudep and mjtamlyn for review. | |||
| 2013-08-29 | Altered test introduced in f19a3669b8 for the sake of readability. refs #14786 | Simon Charette | |
| 2013-08-29 | Fixed #14786 -- Fixed get_db_prep_lookup calling get_prep_value twice if ↵ | Tim Graham | |
| prepared is False. Thanks homm for the report and Aramgutang and lrekucki for work on the patch. | |||
| 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-31 | Fixed #20649 -- Allowed blank field display to be defined in the initial ↵ | Alex Couper | |
| list of choices. | |||
| 2013-07-31 | Fixed #20348 -- Consistently handle Promise objects in model fields. | Tai Lee | |
| All Promise objects were passed to force_text() deep in ORM query code. Not only does this make it difficult or impossible for developers to prevent or alter this behaviour, but it is also wrong for non-text fields. This commit changes `Field.get_prep_value()` from a no-op to one that resolved Promise objects. All subclasses now call super() method first to ensure that they have a real value to work with. | |||
| 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-12 | Fixed #20740 -- GenericIPAddressField should pass protocol to formfield() | Tim Graham | |
| Thanks Jeff250. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-06-29 | Fixed #20660 -- Do not try to delete an unset FieldFile | Claude Paroz | |
| Thanks stanislas.guerra at gmail.com for the report and Baptiste Mispelon for the review. | |||
| 2013-05-21 | Use assertIsInstance in tests. | Marc Tamlyn | |
| Gives much nicer errors when it fails. | |||
| 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-10 | Fixed #17365, #17366, #18727 -- Switched to discovery test runner. | Carl Meyer | |
| Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670. | |||
| 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-04-12 | Modified model_fields for unittest2 discovery. | Preston Timmons | |
| 2013-03-24 | Fixed #15124 -- Changed the default for BooleanField. | Aymeric Augustin | |
| Thanks to the many contributors who updated and improved the patch over the life of this ticket. | |||
| 2013-03-02 | Add a BinaryField model field | Claude Paroz | |
| Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch. | |||
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
