| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-10-22 | Fixed #29860 -- Allowed BaseValidator to accept a callable limit_value. | buzzi | |
| 2018-06-30 | Fixed argument name for validators inheriting from BaseValidator. | sedrubal | |
| 2018-05-17 | Removed versionadded/changed annotations for 2.0. | Tim Graham | |
| 2017-09-22 | Removed versionadded/changed annotations for 1.11. | Tim Graham | |
| 2017-08-12 | Fixed #28201 -- Added ProhibitNullCharactersValidator and used it on ↵ | Alejandro Zamora | |
| CharField form field. | |||
| 2017-06-07 | Fixed #28165 -- Ignored case in FileExtensionValidator's allowed_extensions. | Arne de Laat | |
| 2017-06-07 | Corrected FileExtensionValidator doc regarding the value being validated. | Tim Graham | |
| 2017-05-22 | Updated various links in docs to avoid redirects | Claude Paroz | |
| Thanks Tim Graham and Mariusz Felisiak for review and completion. | |||
| 2017-03-21 | Fixed #27945 -- Clarified that RegexValidator searches with the regex. | seanfagan | |
| 2017-02-07 | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-17 | Removed versionadded/changed annotations for 1.10. | Tim Graham | |
| 2016-06-30 | Fixed #21548 -- Added FileExtensionValidator and validate_image_file_extension. | Berker Peksag | |
| 2016-05-20 | Removed versionadded/changed annotations for 1.9. | Tim Graham | |
| 2016-02-18 | Fixed #26107 -- Added option to int_list_validator() to allow negative integers. | Akshesh | |
| 2016-02-17 | Followed recommended ValidationError use in docs. | Jon Dufresne | |
| 2015-11-16 | Fixed #25755 -- Unified spelling of "website". | Agnieszka Lasyk | |
| 2015-09-23 | Removed versionadded/changed annotations for 1.8. | Tim Graham | |
| 2015-09-18 | Fixed #24636 -- Added model field validation for decimal places and max digits. | Iulia Chiriac | |
| 2015-07-27 | Fixed #25159 -- Removed brackets from class/function/method signatures in docs. | Tim Graham | |
| Thanks hellbeast for the initial patch. | |||
| 2015-07-17 | Fixed #16501 -- Added an allow_unicode parameter to SlugField. | Edward Henderson | |
| Thanks Flavio Curella and Berker Peksag for the initial patch. | |||
| 2015-03-25 | Fixed #24531 -- Improved CommaSeparatedIntegerField validation. | Bertrand Bordage | |
| `','`, `'1,,1'`, `',1'` etc. are no longer considered as valid comma-separated integer lists. | |||
| 2015-03-25 | Added some missing newlines in docs/ref/validators.txt. | Tim Graham | |
| 2015-02-01 | Removed versionadded/changed notes for 1.7. | Tim Graham | |
| 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. | |||
| 2014-10-12 | Fixed #23639 -- Fixed doc error in RegexValidator.regex | Dori | |
| Thanks to @claudep for the report and the original patch. | |||
| 2014-09-24 | Fixed #22959 -- Documented that class-based validators need to be ↵ | Markus Holtermann | |
| deconstructible. | |||
| 2014-08-14 | Fixed #23224 - Documented EmailValidator. | areski | |
| 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-04-26 | Updated doc links to point to Python 3 documentation | Claude Paroz | |
| 2014-03-22 | Fixed #22313 -- Removed 'u' prefixes from documentation | Claude Paroz | |
| 2014-03-21 | Fixed #22255 -- Added support for specifying re flags in RegexValidator | Dejan Noveski | |
| 2014-02-10 | Fixed #20784 -- Added inverse_match parameter to RegexValidator. | Si Feng | |
| 2013-12-28 | Fixed #21242 -- Allowed more IANA schemes in URLValidator | Claude Paroz | |
| Thanks Sascha Peilicke for the report and initial patch, and Tim Graham for the review. | |||
| 2013-01-11 | Fixed #4833 -- Validate email addresses with localhost as domain | Claude Paroz | |
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2012-12-29 | Removed versionadded/changed annotations dating back to 1.4. | Aymeric Augustin | |
| 2012-06-07 | Removed references to changes made in 1.2. | Aymeric Augustin | |
| Thanks Florian Apolloner for the patch. | |||
| 2012-03-31 | Removed deprecated URLField.verify_exists. | Aymeric Augustin | |
| The deprecation schedule was slightly accelerated because of possible security ramifications. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17847 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-13 | Replaced http by https in djangoproject.com links | Claude Paroz | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@17703 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-06-11 | Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks ↵ | Jannis Leidel | |
| to Erik Romijn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16366 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-06-09 | Fixes #13511 -- make regex parameter to RegexValidator to be optional. Also ↵ | Chris Beaven | |
| tidies up related docs (parameters aren't attributes). Thanks for the patch work, davidfischer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16351 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-04-01 | Changed e-mail to email throughout documentation and codebase. The one ↵ | Adrian Holovaty | |
| exception is translation strings, which I didn't want to disrupt git-svn-id: http://code.djangoproject.com/svn/django/trunk@15967 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-10-23 | Fixed #14537 -- Added documentation on where validators can be imported from ↵ | Gabriel Hurley | |
| to Validators Reference docs, and improved Sphinx formatting and metadata. Thanks to rfugger for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14331 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-08-19 | Fixed #14141: docs now use the :doc: construct for links between documents. | Jacob Kaplan-Moss | |
| Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-07-05 | Added missing module directive for validators documentation. | Luke Plant | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@13421 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-05-10 | Fixed #13341 -- Clarified default arguments to the RegexValidator. Thanks to ↵ | Russell Keith-Magee | |
| David Fischer for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13201 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-05-09 | Fixed #13341 -- Clarified the arguments to RegexValidators. Thanks to ↵ | Russell Keith-Magee | |
| DrMeers for the report, and David Fischer for the draft text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13148 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-12 | Fixed #12525. Added a note to the validators doucmentation that models will ↵ | Joseph Kocherhans | |
| not automatically run validators when saved, and a link to the ModelForm docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12212 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-09 | Edited docs/ref/validators.txt | Adrian Holovaty | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@12125 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-05 | Fixed a typo in ref/validators.txt. | Joseph Kocherhans | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@12102 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
