From b803880cf03fc7a4d335e0208d916f66fded9ec2 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 25 Jun 2024 16:56:00 +0800 Subject: [PATCH] python3-email-validator: upgrade 2.1.1 -> 2.2.0 Changelog: =========== - 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). - 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 strings - Improvements to Python typing. - Some additional tests added. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- ...mail-validator_2.1.1.bb => python3-email-validator_2.2.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-email-validator_2.1.1.bb => python3-email-validator_2.2.0.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb b/meta-python/recipes-devtools/python/python3-email-validator_2.2.0.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb rename to meta-python/recipes-devtools/python/python3-email-validator_2.2.0.bb index 90a22e5a0e..bf6b1cafeb 100644 --- a/meta-python/recipes-devtools/python/python3-email-validator_2.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-email-validator_2.2.0.bb @@ -3,7 +3,7 @@ SECTION = "devel/python" LICENSE = "CC0-1.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=2890aee62bd2a4c3197e2059016a397e" -SRC_URI[sha256sum] = "200a70680ba08904be6d1eef729205cc0d687634399a5924d842533efb824b84" +SRC_URI[sha256sum] = "cb690f344c617a714f22e66ae771445a1ceb46821152df8e165c5f9a364582b7" PYPI_PACKAGE = "email_validator"