We renew the signing key for our apt repositories every two years. The renewal on 2026-09-15 produced a key that Debian 13 (trixie) rejects. For about half a day, anyone installing Mender packages on Debian 13 got "the repository is not signed" and could not install anything.
Existing devices were unaffected. Debian 12 and older were unaffected. No package was altered and nothing was exposed; this was a verification failure, not a security breach.
A signing key carries a signature saying "this key is valid". Renewing the key is supposed to extend that statement. The tool we use replaces it instead, so the renewed key effectively said "valid as of today" with no record of having been valid before.
Debian 13 shipped a stricter signature checker. It asks whether the key was valid at the moment the repository was signed. Our repositories were last signed before the renewal, so the answer was no and it refused them. Debian 12 and older do not ask that question, which is why everything looked fine to us.
We rebuilt the key so it carries both its old and its new validity statements. It is the same key with the same fingerprint, so nothing changed for existing devices, and it now satisfies both the old and the new checkers.
Verified on Debian 12 and Debian 13, against every repository.
If you applied a workaround, re-fetch the key. Some users unblocked themselves by fetching the key from https://downloads.mender.io/repos/device-components/gpg. During the incident that URL served the old key, which expires on 2026-10-01, so those installs will start failing again in October.
That URL now serves the corrected key, so fetch it once more:
curl -fsSL https://downloads.mender.io/repos/device-components/gpg \
| sudo gpg --dearmor -o /usr/share/keyrings/mender.gpg`
The expiry should now read 2028-09-14:
gpg --show-keys /usr/share/keyrings/mender.gpg
Adjust the output path if you installed the key somewhere else; the official docs place it at /etc/apt/trusted.gpg.d/mender.asc. No change to your sources.list is needed, and devices already running Mender need no action.
We are sorry. This was our mistake, and it blocked people from installing our software on a current, supported version of Debian. We have updated our internal renewal process to test against current Debian releases, and added a verification pipeline so this is checked automatically the next time.
We did not find this ourselves. A customer did, and reported it. We are grateful for that report, which was precise enough that we could reproduce the problem within minutes, but catching this should not have been their job.