From 7929919223b9c52066aca66d295172017e9caed2 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Tue, 10 Mar 2026 11:41:30 -0400 Subject: [PATCH] 9.2.0 ### Added - OpenSearch AWS SigV4 authentication support (PR #673) - IMAP move/delete compatibility fallbacks (PR #671) - `fail_on_output_error` CLI option for sink failures (PR #672) - Gmail service account auth mode for non-interactive runs (PR #676) - Microsoft Graph certificate authentication support (PRs #692 and #693) - Microsoft Graph well-known folder fallback for root listing failures (PR #618 and #684 close #609) ### Fixed - Pass mailbox since filter through `watch_inbox` callback (PR #670 closes issue #581) - `parsedmarc.mail.gmail.GmailConnection.delete_message` now properly calls the Gmail API (PR #668) - Avoid extra mailbox fetch in batch and test mode (PR #691 closes #533) --- CHANGELOG.md | 17 +++++++++++++++++ parsedmarc/constants.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c08f8bb..ea2f0fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 9.2.0 + +### Added + +- OpenSearch AWS SigV4 authentication support (PR #673) +- IMAP move/delete compatibility fallbacks (PR #671) +- `fail_on_output_error` CLI option for sink failures (PR #672) +- Gmail service account auth mode for non-interactive runs (PR #676) +- Microsoft Graph certificate authentication support (PRs #692 and #693) +- Microsoft Graph well-known folder fallback for root listing failures (PR #618 and #684 close #609) + +### Fixed + +- Pass mailbox since filter through `watch_inbox` callback (PR #670 closes issue #581) +- `parsedmarc.mail.gmail.GmailConnection.delete_message` now properly calls the Gmail API (PR #668) +- Avoid extra mailbox fetch in batch and test mode (PR #691 closes #533) + ## 9.1.2 ### Fixes diff --git a/parsedmarc/constants.py b/parsedmarc/constants.py index da4837de..63f0f5e6 100644 --- a/parsedmarc/constants.py +++ b/parsedmarc/constants.py @@ -1,3 +1,3 @@ -__version__ = "9.1.2" +__version__ = "9.2.0" USER_AGENT = f"parsedmarc/{__version__}"