index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
validators.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #34233 -- Dropped support for Python 3.8 and 3.9.
Mariusz Felisiak
2023-01-18
1
-10
/
+0
*
Fixed #34014 -- Fixed DecimalValidator validating 0 in positive exponent scie...
Kamil Turek
2022-09-17
1
-2
/
+4
*
Fixed #32559 -- Added 'step_size’ to numeric form fields.
Kapil Bansal
2022-05-12
1
-0
/
+10
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
1
-9
/
+19
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-164
/
+210
*
Fixed #28628 -- Changed \d to [0-9] in regexes where appropriate.
Ad Timmering
2022-01-07
1
-3
/
+6
*
Fixed #33367 -- Fixed URLValidator crash in some edge cases.
mendespedro
2021-12-20
1
-6
/
+7
*
Refs #31670 -- Removed whitelist argument and domain_whitelist attribute in E...
Mariusz Felisiak
2021-09-20
1
-30
/
+1
*
Fixed typo in regex for IPv6 literals in EmailValidator.
qimingmafan
2021-08-06
1
-1
/
+1
*
Fixed #32930 -- Fixed URLValidator when port numbers < 10.
Wu Haotian
2021-07-22
1
-2
/
+2
*
Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses.
Mariusz Felisiak
2021-06-02
1
-1
/
+14
*
Fixed #32713, Fixed CVE-2021-32052 -- Prevented newlines and tabs from being ...
Mariusz Felisiak
2021-05-06
1
-0
/
+3
*
Fixed #32298 -- Fixed URLValidator hostname length validation.
Akshat1Nar
2021-01-04
1
-1
/
+1
*
Fixed #31806 -- Made validators include the value in ValidationErrors.
Jon Dufresne
2020-07-27
1
-18
/
+19
*
Removed redundant forms.DecimalField.validate() in favor of DecimalValidator.
Jon Dufresne
2020-07-27
1
-1
/
+1
*
Refs #31670 -- Renamed whitelist argument and attribute of EmailValidator.
David Smith
2020-06-18
1
-6
/
+35
*
Refs #30116 -- Simplified regex match group access with Match.__getitem__().
Jon Dufresne
2020-05-11
1
-2
/
+2
*
Fixed #31548 -- Fixed URLValidator crash on non-strings.
Yash Saini
2020-05-08
1
-1
/
+3
*
Capitalized Unicode in docs, strings, and comments.
Jon Dufresne
2020-04-20
1
-1
/
+1
*
Fixed #31311 -- Removed unneeded escapes in validator regexes.
kimbo
2020-02-28
1
-3
/
+3
*
Refs #30899 -- Moved _lazy_re_compile() to the django.utils.regex_helper.
Hasan Ramezani
2019-10-29
1
-13
/
+1
*
Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...
ElizabethU
2019-10-01
1
-1
/
+2
*
Refs #30608 -- Added django.utils.encoding.punycode().
Mariusz Felisiak
2019-07-03
1
-2
/
+3
*
Fixed #30400 -- Improved typography of user facing strings.
Jon Dufresne
2019-06-28
1
-4
/
+4
*
Fixed #29860 -- Allowed BaseValidator to accept a callable limit_value.
buzzi
2018-10-22
1
-2
/
+3
*
Fixed #29528 -- Made URLValidator reject invalid characters in the username a...
Tim Bell
2018-07-23
1
-1
/
+1
*
Ref #23919 -- Replaced some os.path usage with pathlib.Path.
Tom
2018-04-19
1
-2
/
+2
*
Fixed #29065 -- Made django.core.validators only load Pillow if needed.
Collin Anderson
2018-01-30
1
-3
/
+2
*
Fixed #29007 -- Fixed DecimalValidator crash on NaN, SNan, Inf, and Infinity ...
Fabio Bonelli
2018-01-10
1
-0
/
+3
*
Fixed #28906 -- Removed unnecessary bool() calls.
Tim Graham
2017-12-07
1
-1
/
+1
*
Fixed #28562 -- Fixed DecimalValidator handling of positive exponent scientif...
Josh Schneier
2017-09-27
1
-9
/
+15
*
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
Tim Graham
2017-09-07
1
-2
/
+3
*
Fixed #28201 -- Added ProhibitNullCharactersValidator and used it on CharFiel...
Alejandro Zamora
2017-08-12
1
-0
/
+24
*
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
Mads Jensen
2017-06-28
1
-5
/
+5
*
Fixed #28165 -- Ignored case in FileExtensionValidator's allowed_extensions.
Arne de Laat
2017-06-07
1
-0
/
+2
*
Fixed #28249 -- Removed unnecessary dict.keys() calls.
Jon Dufresne
2017-05-27
1
-1
/
+1
*
Made RegexValidator's inverse_match logic clearer.
Edward D'Souza
2017-05-25
1
-3
/
+5
*
Refs #27795 -- Replaced many force_text() with str()
Claude Paroz
2017-04-27
1
-3
/
+1
*
Fixed #27952 -- Added translation hint for RegexValidator error message.
Paul
2017-03-23
1
-0
/
+1
*
Fixed #27945 -- Clarified that RegexValidator searches with the regex.
seanfagan
2017-03-21
1
-1
/
+1
*
Refs #27795 -- Removed unneeded force_text calls
Claude Paroz
2017-03-04
1
-3
/
+0
*
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-21
1
-5
/
+3
*
Converted usage of ugettext* functions to their gettext* aliases
Claude Paroz
2017-02-07
1
-6
/
+6
*
Fixed #27793 -- Used stdlib's ipaddress module to validate IP addresses
Claude Paroz
2017-01-30
1
-2
/
+7
*
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
Vytis Banaitis
2017-01-26
1
-1
/
+1
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-3
/
+3
*
Removed unused variables that are overwritten.
Mads Jensen
2017-01-25
1
-1
/
+0
*
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
Mariusz Felisiak
2017-01-21
1
-1
/
+1
*
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-19
1
-5
/
+5
*
Refs #23919 -- Removed obsolete __ne__() methods.
Aymeric Augustin
2017-01-18
1
-3
/
+0
[next]