From 605cfb067ca21f150524c0be040523a33aac5dc76e6c96b829518040cac45531 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 14 Jan 2024 17:17:14 +0000 Subject: [PATCH] * Switch from pkg_resources resource_filename to importlib_resources * Add initial doctests for dmarc_lookup.py * Correctly strip trailing backslash in parsed DMARC record components * Handle DMARC records containing empty quoted values (#26) * Add dmarc_lookup.DMARCException and raise it for missing tag/values (#27) * Catch DMARCException error and return DMARC permerror result (#27) * Set DMARC result to permerror if From domain cannot be extracted (#25) * Use dns.resolver.resolve instead of dns.resolver.query due to deprecation * Update PSL from upstream * Add new option for authenticate_message, dmarcbis to enable DMARC policy * discovery and alignment per draft-ietf-dmarc-dmarcbis (default is False) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-authheaders?expand=0&rev=18 --- python-authheaders.changes | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/python-authheaders.changes b/python-authheaders.changes index b99890e..25d0ea5 100644 --- a/python-authheaders.changes +++ b/python-authheaders.changes @@ -2,8 +2,25 @@ Sat Jan 13 17:31:08 UTC 2024 - Andreas Schneider - Update to version 0.16.0 - * https://github.com/ValiMail/authentication-headers/blob/0.16.0/CHANGES - or the CHANGES file included in this package + * Switch from pkg_resources resource_filename to + importlib_resources + * Add initial doctests for dmarc_lookup.py + * Correctly strip trailing backslash in parsed DMARC record + components + * Handle DMARC records containing empty quoted values (#26) + * Add dmarc_lookup.DMARCException and raise it for missing + tag/values (#27) + * Catch DMARCException error and return DMARC permerror + result (#27) + * Set DMARC result to permerror if From domain cannot be + extracted (#25) + * Use dns.resolver.resolve instead of dns.resolver.query + due to deprecation + * Update PSL from upstream + * Add new option for authenticate_message, dmarcbis to + enable DMARC policy + * discovery and alignment per draft-ietf-dmarc-dmarcbis + (default is False) - Removed authheaders-importlib-resources.patch ------------------------------------------------------------------- @@ -42,7 +59,7 @@ Sat Jan 15 16:55:40 UTC 2022 - Dirk Müller - Include ARC result comment is A-R header field when ARC fails. Fixes Github #12 - Handle the case where no valid From is found. Fixes Github #15 - + ------------------------------------------------------------------- Sun Apr 12 08:49:13 UTC 2020 - Tomáš Chvátal