pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail/py-email_validator
Module Name: pkgsrc
Committed By: adam
Date: Tue Jul 2 09:17:12 UTC 2024
Modified Files:
pkgsrc/mail/py-email_validator: Makefile distinfo
Log Message:
py-email_validator: updated to 2.2.0
2.2.0 (June 20, 2024)
Email addresses with internationalized local parts could, with rare Unicode characters, be returned as valid but actually be invalid in their normalized form (returned in the normalized field). In
particular, it is possible to get a normalized address with a ";" character, which is not valid and could change the interpretation of the address. Local parts now re-validated after Unicode NFC
normalization to ensure that invalid characters cannot be injected into the normalized address and that characters with length-increasing NFC normalizations cannot cause a local part to exceed the
maximum length after normalization. Thanks to khanh%calif.io@localhost from https://calif.io for reporting the issue.
The length check for email addresses with internationalized local parts is now also applied to the original address string prior to Unicode NFC normalization, which may be longer and could exceed the
maximum email address length, to protect callers who do not use the returned normalized address.
Improved error message for IDNA domains that are too long or have invalid characters after Unicode normalization.
A new option to parse My Name <address@domain> strings, i.e. a display name plus an email address in angle brackets, is now available. It is off by default.
Improvements to Python typing.
Some additional tests added.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/mail/py-email_validator/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/mail/py-email_validator/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mail/py-email_validator/Makefile
diff -u pkgsrc/mail/py-email_validator/Makefile:1.12 pkgsrc/mail/py-email_validator/Makefile:1.13
--- pkgsrc/mail/py-email_validator/Makefile:1.12 Mon Jun 17 15:23:34 2024
+++ pkgsrc/mail/py-email_validator/Makefile Tue Jul 2 09:17:11 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2024/06/17 15:23:34 adam Exp $
+# $NetBSD: Makefile,v 1.13 2024/07/02 09:17:11 adam Exp $
-DISTNAME= email_validator-2.1.2
+DISTNAME= email_validator-2.2.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= mail python
MASTER_SITES= ${MASTER_SITE_PYPI:=e/email-validator/}
Index: pkgsrc/mail/py-email_validator/distinfo
diff -u pkgsrc/mail/py-email_validator/distinfo:1.9 pkgsrc/mail/py-email_validator/distinfo:1.10
--- pkgsrc/mail/py-email_validator/distinfo:1.9 Mon Jun 17 15:23:34 2024
+++ pkgsrc/mail/py-email_validator/distinfo Tue Jul 2 09:17:11 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2024/06/17 15:23:34 adam Exp $
+$NetBSD: distinfo,v 1.10 2024/07/02 09:17:11 adam Exp $
-BLAKE2s (email_validator-2.1.2.tar.gz) = 5d8a997ea252920272f70cd899628aa91a207dc21a5350db9b46883762cf1b5a
-SHA512 (email_validator-2.1.2.tar.gz) = 43069b7fd0eafce5e7f46cc02e3e10bec796204f498af9c8bf358f6091fae2805611e1f6c05e6c7e2334985d1a57450753d3bc5e05fbb2ecf3b7d02b21173af5
-Size (email_validator-2.1.2.tar.gz) = 45112 bytes
+BLAKE2s (email_validator-2.2.0.tar.gz) = 07bd83336bbbcbd402ce9f7234fefdf42d776882952128b0c3c1325062c6136d
+SHA512 (email_validator-2.2.0.tar.gz) = ec6a3a330bbb32d1c097ff3f9604ec248b0599e43db7b08799b1764cf0e26c4ff544fc439c9e7fd7d1a7dfe07b618294bd31e3e4ce1de35676242f4dd0174d9c
+Size (email_validator-2.2.0.tar.gz) = 48967 bytes
Home |
Main Index |
Thread Index |
Old Index