forked from pool/python-email-validator
Compare commits
10 Commits
Author | SHA256 | Date | |
---|---|---|---|
d65bca25b5 | |||
3069c94672 | |||
be5d5af92f | |||
973ff5a1b2 | |||
91eec5183c | |||
da4717b14a | |||
7321842902 | |||
f03e0795aa | |||
bbb0eee201 | |||
1b6ec08e25 |
BIN
email_validator-2.2.0.tar.gz
(Stored with Git LFS)
BIN
email_validator-2.2.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
email_validator-2.3.0.tar.gz
Normal file
3
email_validator-2.3.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:578564e92e66874bfb6c7506b4b33e7abd79f0e9b99dedd979d03fcd5fc4f039
|
||||||
|
size 45521
|
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 08:25:10 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 2.3.0
|
||||||
|
* The package name is changed from using an underscore (email_validator)
|
||||||
|
to a dash (email-validator) to match PyPi's normalized package name.
|
||||||
|
* The library no longer checks that the local part is at most 64 characters
|
||||||
|
because a more careful reading of RFC 5321 indicates the limit is optional
|
||||||
|
and such email addresses have been found in the wild. However the check
|
||||||
|
can be restored using a new `strict=True` parameter, and the overall 254
|
||||||
|
character email address length limit is still in place.
|
||||||
|
* New EmailSyntaxError messages are used for some exiting syntax errors
|
||||||
|
related to @-sign homoglyphs and invalid characters in internationalized
|
||||||
|
domains.
|
||||||
|
* When using `allow_display_name=True`, display names are now returned with
|
||||||
|
Unicode NFC normalization.
|
||||||
|
* TypeError is now raised if something other than str (or bytes) is passed
|
||||||
|
as the email address.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 14 13:04:59 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
Thu Aug 14 13:04:59 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
@@ -23,7 +23,7 @@
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-email-validator
|
Name: python-email-validator
|
||||||
Version: 2.2.0
|
Version: 2.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A robust email syntax and deliverability validation library for Python
|
Summary: A robust email syntax and deliverability validation library for Python
|
||||||
License: CC0-1.0
|
License: CC0-1.0
|
||||||
|
Reference in New Issue
Block a user