From 1529179b446df230e1512f89471f58cf21506429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jagoda=20=C5=9Al=C4=85zak?= Date: Sat, 14 Feb 2026 14:50:26 +0100 Subject: [PATCH] chore(deps): upgrade to filtermail v0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 0.3.0 - 2026-02-14 ### Features - Support legacy, pre-OpenPGP packet format ### Miscellaneous Tasks - *(dist)* Switch to musl targets ### Refactor - Remove unnecessary Arc - Use a custom, minimal SMTP client instead of lettre Signed-off-by: Jagoda Ślązak --- .github/workflows/ci.yaml | 2 +- cmdeploy/src/cmdeploy/filtermail/deployer.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25ffc042..6382a1c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - name: download filtermail - run: curl -L https://github.com/chatmail/filtermail/releases/download/v0.2.0/filtermail-x86_64-musl -o /usr/local/bin/filtermail && chmod +x /usr/local/bin/filtermail + run: curl -L https://github.com/chatmail/filtermail/releases/download/v0.3.0/filtermail-x86_64 -o /usr/local/bin/filtermail && chmod +x /usr/local/bin/filtermail - name: run chatmaild tests working-directory: chatmaild run: pipx run tox diff --git a/cmdeploy/src/cmdeploy/filtermail/deployer.py b/cmdeploy/src/cmdeploy/filtermail/deployer.py index 599ea8f5..f18b0c9a 100644 --- a/cmdeploy/src/cmdeploy/filtermail/deployer.py +++ b/cmdeploy/src/cmdeploy/filtermail/deployer.py @@ -14,10 +14,10 @@ def __init__(self): def install(self): arch = host.get_fact(facts.server.Arch) - url = f"https://github.com/chatmail/filtermail/releases/download/v0.2.0/filtermail-{arch}-musl" + url = f"https://github.com/chatmail/filtermail/releases/download/v0.3.0/filtermail-{arch}" sha256sum = { - "x86_64": "1e5bbb646582cb16740c6dfbbca39edba492b78cc96ec9fa2528c612bb504edd", - "aarch64": "3564fba8605f8f9adfeefff3f4580533205da043f47c5968d0d10db17e50f44e", + "x86_64": "f14a31323ae2dad3b59d3fdafcde507521da2f951a9478cd1f2fe2b4463df71d", + "aarch64": "933770d75046c4fd7084ce8d43f905f8748333426ad839154f0fc654755ef09f", }[arch] self.need_restart |= files.download( name="Download filtermail",