| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-06-01 | [1.11.x] Fixed #28242 -- Moved ImageField file extension validation to the ↵ | Manatsawin Hanmongkolchai | |
| form field. Backport of a0c07d77fc313388c72a17cd59411265069f037f from master | |||
| 2017-05-31 | [1.11.x] Fixed a forms test after updated translations. | Tim Graham | |
| Backport of 84fb50df670c8126983c9f0fd4a5c30dbe57b684 from master | |||
| 2017-05-03 | [1.11.x] Fixed #28157 -- Fixed choice ordering in form fields with grouped ↵ | Tim Graham | |
| and non-grouped options. Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Backport of d302e2c09c281e6b1e187f704f656e5e79e69246 from master | |||
| 2017-04-28 | [1.11.x] Fixed #28130 -- Fixed formset min_num validation with initial, ↵ | Tim Graham | |
| unchanged forms. Regression in f5c6295797b8332134fd89e0209a18a1d1d45e0c. Backport of f04a40491764bdc9a2ebbfc03fa7be424fb3ce63 from master | |||
| 2017-04-24 | [1.11.x] Removed obsolete Widget.format_output() in tests. | Tim Graham | |
| Obsolete since b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Backport of 851874fe0a5dd8f99c763134df0bbaca6f03d17a from master | |||
| 2017-04-21 | [1.11.x] Fixed #28075 -- Prevented ChoiceWidget from localizing option values. | Jon Dufresne | |
| Backport of 581879a510e58841e5780a5d1fdb4995733d2036 from master | |||
| 2017-04-20 | [1.11.x] Fixed #28059 -- Restored class attribute in <ul> of widgets that ↵ | Tim Graham | |
| use multiple_input.html. Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01 Backport of af1f986360dc6bb6e75e960dbc191707541128ac from master | |||
| 2017-04-17 | [1.11.x] Fixed #28058 -- Restored empty BoundFields evaluating to True. | Tim Graham | |
| Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01 Backport of c09bf8d76770d39a4d9545b67598cd05adee281b from master | |||
| 2017-04-01 | [1.11.x] Fixed #27866 -- Made ChoiceWidget.format_value() return a list | Claude Paroz | |
| Thanks Tim Graham for the review. Backport of e487ffd3f0f9931e7c18bfbd47cf1e6b059ddc41 from master. | |||
| 2017-03-31 | [1.11.x] Fixed #27993 -- Fixed model form default fallback for SelectMultiple. | heathervm | |
| Backport of 7d1e23775344cc3dead03bd4af45f4fdf134b819 from master | |||
| 2017-03-14 | [1.11.x] Refs #27920 -- Added missing encoding preamble on widget test file | Claude Paroz | |
| 2017-03-14 | [1.11.x] Fixed #27920 -- Restored empty RadioSelect choice producing value="" | Claude Paroz | |
| Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Thanks Tim Graham for the review. Backport of 540ae68a5cc6339c72375fad9b04dc48f3af4c93 from master. | |||
| 2017-02-06 | [1.11.x] Fixed #27805 -- Fixed ClearableFileInput's "Clear" checkbox on ↵ | Tim Graham | |
| model fields with a default. Backport of 4353640ea9495d58fabd0357253b82de3b069408 from master | |||
| 2017-01-23 | [1.11.x] Fixed #27759 -- Prevented forms attrs.html template from rendering ↵ | Jon Dufresne | |
| False attrs. Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. Backport of 5fa390ee81c5a963fc4476e8de6c1e5e1fc57e22 from master | |||
| 2017-01-23 | [1.11.x] Fixed #27761 -- Fixed quote location in multiple_input.html forms ↵ | Jon Dufresne | |
| templates. Backport of 88183117c28a8d669054e9064e7bd4de19ebcd28 from master | |||
| 2017-01-13 | Fixed #27723 -- Set MultiWidget's subwidgets input type from attrs argument. | Mariusz Felisiak | |
| Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. | |||
| 2017-01-10 | Fixed #27712 -- Reallowed Input widget's attrs argument to set the input type. | Mariusz Felisiak | |
| Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01. | |||
| 2017-01-06 | Refs #15667 -- Prevented newlines in attrs.html widget rendering. | Dmitry | |
| Removed the trailing newline from widget attrs.html template. The solution may be revisited by fixing refs #9198 but not for Django 1.11. Thanks Dmitry Ivanchenko for the report and Preston Timmons for advice. | |||
| 2016-12-28 | Refs #15667 -- Fixed form renderer test for Python 2 non-ASCII path. | Tim Graham | |
| 2016-12-28 | Fixed #27370 -- Prevented Select widget from using 'required' with a ↵ | Josef Rousek | |
| non-empty first value. | |||
| 2016-12-27 | Fixed #15667 -- Added template-based widget rendering. | Preston Timmons | |
| Thanks Carl Meyer and Tim Graham for contributing to the patch. | |||
| 2016-12-27 | Fixed #27642 -- Made forms.utils.flatatt() omit 'None' values from attrs. | Illia Volochii | |
| 2016-12-07 | Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase. | Tim Graham | |
| 2016-12-01 | Fixed #27119 -- Cached BaseFormSet.management_form property | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2016-11-22 | Fixed #27250 -- Removed 'for ="..."' from CheckboxSelectMultiple's <label>. | Diego Martín | |
| 2016-11-14 | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | |
| 2016-11-11 | Fixed #27431 -- Prevented disabled form fields from appearing as changed. | Kenneth Veldman | |
| 2016-11-10 | Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. | za | |
| 2016-11-06 | Fixed #27369 -- Prevented widgets from being shared between form field ↵ | Michal Petrucha | |
| instances. | |||
| 2016-09-30 | Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple. | Tim Graham | |
| 2016-09-22 | Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵ | Tim Graham | |
| FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review. | |||
| 2016-09-21 | Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 ↵ | Jon Dufresne | |
| boolean syntax. | |||
| 2016-09-17 | Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6. | Tim Graham | |
| http://bugs.python.org/issue27364 | |||
| 2016-09-09 | Organized forms_tests test_regressions.py. | Tim Graham | |
| 2016-08-18 | Fixed #27068 -- Unified form field initial data retrieval. | Jon Dufresne | |
| 2016-08-12 | Fixed #27037 -- Prevented required attribute on ClearableFileInput when ↵ | Jon Dufresne | |
| initial data exists. | |||
| 2016-08-10 | Updated an import per isort. | Tim Graham | |
| 2016-08-10 | Fixed #26844 -- Made formset's validate_min validation ignore empty forms. | Andrew Nester | |
| 2016-08-09 | Fixed #26905 -- Allowed using MultiValueDict-like objects as form data. | Marcin Nowak | |
| 2016-08-06 | Fixed #27015 -- Prevented HTML-invalid minlength/maxlength on hidden inputs | Claude Paroz | |
| 2016-08-04 | Fixed #26928 -- Changed forms' checked attribute to HTML5 boolean style. | Jon Dufresne | |
| 2016-08-01 | Fixed #26927 -- Made subwidget iteration pass disabled and required attributes. | Jon Dufresne | |
| 2016-07-22 | Removed unnecessary coerce to list in forms_tests. | Jon Dufresne | |
| 2016-07-21 | Made miscellaneous code cleanups | Dmitry Dygalo | |
| 2016-07-14 | Fixed #26821 -- Fixed forms.Email/URLField crash on None value. | Priy | |
| 2016-07-14 | Fixed #26890 -- Fixed IntegerField crash on Unicode numbers. | Jon Dufresne | |
| 2016-06-28 | Replaced use of TestCase.fail() with assertRaises(). | Tim Graham | |
| Also removed try/except/fail antipattern that hides exceptions. | |||
| 2016-06-16 | Fixed #26747 -- Used more specific assertions in the Django test suite. | Jon Dufresne | |
| 2016-05-14 | Simplified a ClearableFileInput test. | Tim Graham | |
| 2016-04-28 | Refs #15667 -- Removed choices argument from some RendererMixin methods. | Tim Graham | |
| RendererMixin will soon be removed but this removal and the corresponding test changes stand on their own. | |||
