From 13ddc26d7094ca1940bd2716aefb146bbc4e02b0 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Wed, 22 May 2024 09:35:18 -0400 Subject: [PATCH] 8.12.0 - Fix for deadlock with large report (#508) - Build: move to kafka-python-ng (#510) - Fix new config variables previously not propagated in the code (#524) - Fixes for kafka integration (#522) - Fix if base_domain is None before get_service_from_reverse_dns_base_domain (#514) - Update base_reverse_dns_map.csv --- CHANGELOG.md | 10 ++++++++++ parsedmarc/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a629971c..71fa3077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Changelog ========= +8.12.0 +------ + +- Fix for deadlock with large report (#508) +- Build: move to kafka-python-ng (#510) +- Fix new config variables previously not propagated in the code (#524) +- Fixes for kafka integration (#522) +- Fix if base_domain is None before get_service_from_reverse_dns_base_domain (#514) +- Update base_reverse_dns_map.csv + 8.11.0 ------ diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index b5ed7707..8d94b428 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -34,7 +34,7 @@ from parsedmarc.utils import parse_email from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime -__version__ = "8.11.0" +__version__ = "8.12.0" logger.debug("parsedmarc v{0}".format(__version__))