| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-02-24 | [1.8.x] Fixed #26267 -- Fixed BoundField to reallow slices of subwidgets. | Jon Dufresne | |
| Backport of b41268135995cef46d40e550f9301fab20cf330d from master | |||
| 2016-02-23 | [1.8.x] Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| Partial backport of 93452a70e8a62c7408eeded444f5088d4a26212d from master | |||
| 2016-02-15 | [1.8.x] Fixed #26212 -- Made forms.FileField and translation.lazy_number() ↵ | Tim Graham | |
| picklable. Backport of b59f963ad2a49322725b20fac71661bd49643443 from master | |||
| 2016-01-21 | [1.8.x] Changed `action="."` to `action=""` in tests and docs. | Luke Plant | |
| `action="."` strips query parameters from the URL which is not usually what you want. Copy-paste coding of these examples could lead to difficult to track down bugs or even data loss if the query parameter was meant to alter the scope of a form's POST request. Backport of 77974a684a2e874bccd8bd9e0939ddcb367a8ed2 from master | |||
| 2015-11-09 | [1.8.x] Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept ↵ | Marti Raudsepp | |
| Managers. This fixes a regression from refs #25496. Backport of 1155843a41af589a856efe8e671a796866430049 from master | |||
| 2015-07-13 | [1.8.x] Fixed #25108 -- Fixed a test which failed on Pillow 2.9+ | Yosuke Yasuda | |
| Backport of a2b999dfcac9bc92513a36ec6b3033ded1561c66 from master | |||
| 2015-06-23 | [1.8.x] Renamed RemovedInDjango20Warning to RemovedInDjango110Warning. | Tim Graham | |
| 2015-06-16 | [1.8.x] Fixed #24948 -- Fixed crash when uploading bitmap images in ↵ | Andriy Sokolovskiy | |
| forms.ImageField Backport of cf6ce279c7671a4c83c960c5c526f92679a4fac8 from master | |||
| 2015-04-28 | [1.8.x] Fixed #24714 -- Used more specific assertions than assertEqual in tests. | Alasdair Nicol | |
| Backport of eaeea6f94701547ce1b50dbcf5cf71460e9e4c91 from master | |||
| 2015-04-27 | [1.8.x] Used assertIsInstance in tests. | Alasdair Nicol | |
| Backport of d91321e8be0d8e52546026d461b14157d565870c from master | |||
| 2015-04-01 | [1.8.x] Adapted form regression test to new translations | Claude Paroz | |
| Backport of 2112b7d78 from master. | |||
| 2015-03-27 | [1.8.x] Fixed #24469 -- Refined escaping of Django's form elements in ↵ | Moritz Sichert | |
| non-Django templates. Backport of 1f2abf784a9fe550959de242d91963b2ad6f7e9c from master | |||
| 2015-02-24 | [1.8.x] Fixed #24391 -- Made BoundField.value() cache callable values. | Michael Angeletti | |
| Backport of 65441bbdb02427655869c42791a0bc5a9c631292 from master | |||
| 2015-02-23 | [1.8.x] Guaranteed removal of temporary files during tests. | Aymeric Augustin | |
| Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions. Backport of 934400759de817471ff37d736686201d7ae34e82 from master | |||
| 2015-02-14 | [1.8.x] Added missing return value to DurationField.prepare_value(); refs ↵ | Michael Angeletti | |
| #24339. Backport of 49647bec6e86b8d3d370ea1d8a80423185502c5a from master | |||
| 2015-02-14 | [1.8.x] Fixed #24339 -- Fixed crash with empty DurationField form field. | Michael Angeletti | |
| Backport of 8a21d250334f56845f255be5534b01d8c6eda314 from master | |||
| 2015-02-09 | [1.8.x] Sorted imports with isort; refs #23860. | Tim Graham | |
| Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master | |||
| 2015-01-20 | [1.8.x] Fixed typos in code comments. | Adam Taylor | |
| Backport of 039465a6a7a18f48ea77ceadb6949990c0ec92e1 from master | |||
| 2015-01-15 | Fixed #23712 -- Fixed KeyError with BaseForm._html_output() | Yang Liu | |
| 2015-01-06 | Fixed #20003 -- Improved and extended URLValidator | Danilo Bargen | |
| This adds support for authentication data (`user:password`) in URLs, IPv6 addresses, and unicode domains. The test suite has been improved by adding test URLs from http://mathiasbynens.be/demo/url-regex (with a few adjustments, like allowing local and reserved IPs). The previous URL validation regex failed this test suite on 13 occasions, the validator was updated based on https://gist.github.com/dperini/729294. | |||
| 2015-01-01 | Fixed #23891 -- Moved deprecation of IPAddressField to system check framework. | Tim Graham | |
| Thanks Markus Holtermann for review. | |||
| 2014-12-31 | Fixed #24008 -- Fixed ValidationError crash with list of dicts. | Andrey Maslov | |
| 2014-12-31 | Renamed tests for util -> utils moves; refs #17627. | Tim Graham | |
| 2014-12-30 | Applied ignore_warnings to Django tests | Claude Paroz | |
| 2014-12-20 | Fixed #2443 -- Added DurationField. | Marc Tamlyn | |
| A field for storing periods of time - modeled in Python by timedelta. It is stored in the native interval data type on PostgreSQL and as a bigint of microseconds on other backends. Also includes significant changes to the internals of time related maths in expressions, including the removal of DateModifierNode. Thanks to Tim and Josh in particular for reviews. | |||
| 2014-12-12 | Fixed #23674 -- Fixed a crash when a MultiValueField has invalid data. | Grzegorz Slusarek | |
| 2014-12-03 | Removed redundant numbered parameters from str.format(). | Berker Peksag | |
| Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}". | |||
| 2014-11-21 | Fixed #23883 -- Stopped flatatt modifying its argument | Tim Heap | |
| 2014-11-19 | Removed usage of a global variable. | Aymeric Augustin | |
| 2014-11-04 | Fixed #13181 -- Added support for callable choices to forms.ChoiceField | Peter Inglesby | |
| Thanks vanschelven and expleo for the initial patch. | |||
| 2014-11-03 | Fixed #23620 -- Used more specific assertions in the Django test suite. | Berker Peksag | |
| 2014-10-07 | Fixed #23594 -- Fixed deepcopy on ErrorList. | Loic Bistuer | |
| Thanks Troy Grosfield for the report and Tim Graham for the tests. | |||
| 2014-09-16 | Fixed #19463 -- Added UUIDField | Marc Tamlyn | |
| Uses native support in postgres, and char(32) on other backends. | |||
| 2014-08-29 | Fixed #21201 -- Improved customization of ClearableFileInput. | Vlastimil Zíma | |
| 2014-08-22 | Tweaked docstrings from previous commit. | Tim Graham | |
| 2014-08-22 | Fixed #23167 -- Added BaseForm.__repr__() | areski | |
| Thanks Keryn Knight for the idea. | |||
| 2014-08-15 | Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed(). | Gabriel Muñumel | |
| 2014-08-03 | Fixed flake8 warning. | Tim Graham | |
| 2014-08-03 | Fixed #23151 -- Deprecated RegexField.error_message. | Tim Graham | |
| Thanks Baptiste Mispelon for the suggestion. | |||
| 2014-08-01 | Fixed #23103 -- Annotated ImageField file with image and content_type ↵ | Petras Zdanavičius | |
| attributes. Thanks Jeremy Dunck for the suggestion and Nick Sanford for review. | |||
| 2014-07-29 | Fixed #23129 -- Added 'true' and 'false' to `NullBooleanField`. | Kit La Touche | |
| JavaScript serializations of forms will sometimes render the boolean values as the strings 'true' and 'false', in lower case. Rather than repeat boilerplate in the JavaScript to circumvent this, it seems reasonable to allow Django to understand the lower-case versions of the booleans. | |||
| 2014-07-28 | Fixed #23113 -- ChoiceInput.render should take specified attrs into account. | Simon Charette | |
| Thanks to Tim Graham for the review. | |||
| 2014-07-26 | Fixed #16617 -- Added 'value' to BaseValidator params. | Anubhav Joshi | |
| Also allowed overriding the default messages in subclasses of BaseValidator. Thanks sperrygrove for initial patch. | |||
| 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-07-05 | Fixed #22950 -- Eased markup customization for choice field rendering | Claude Paroz | |
| Thanks Patrick Robertson for the report. | |||
| 2014-07-05 | Ensured bound field renders as unicode safe data | Claude Paroz | |
| Refs #22950. | |||
| 2014-07-04 | Fixed #22915 -- Document backward incompatible changes in the ↵ | Loic Bistuer | |
| ValidationError constructor. This patch also fixes update_error_dict to better handle the use case described in this ticket, previously the type of the provided container could be lost in some conditions. Thanks Russell Keith-Magee for the report and Tim Graham for review. | |||
| 2014-06-04 | Fixed #22684 -- Amended SelectDateWidget.empty_label to accept a tuple of ↵ | gyx1000 | |
| values. Thanks danielsamuels for the report | |||
| 2014-06-02 | Fixed #11776 -- Added CSS class for non-field/top of form errors. | Nick Presta | |
| Thanks Daniel Pope for the suggestion. | |||
| 2014-05-28 | Fixed several typos in Django | Alex Gaynor | |
