Verify Docker Image Signature
All LiteLLM Docker images are signed with cosign. Every release is signed with the same key introduced in commit 0112e53.
Verify using the pinned commit hash (recommended):
A commit hash is cryptographically immutable, so this is the strongest way to ensure you are using the original signing key:
cosign verify \
--key https://raw.githubusercontent.com/BerriAI/litellm/0112e53046018d726492c814b3644b7d376029d0/cosign.pub \
ghcr.io/berriai/litellm:v1.83.12-nightlyVerify using the release tag (convenience):
Tags are protected in this repository and resolve to the same key. This option is easier to read but relies on tag protection rules:
cosign verify \
--key https://raw.githubusercontent.com/BerriAI/litellm/v1.83.12-nightly/cosign.pub \
ghcr.io/berriai/litellm:v1.83.12-nightlyExpected output:
The following checks were performed on each of these signatures:
- The cosign claims were validated
- The signatures were verified against the specified public key
What's Changed
- add moonshot/kimi-k2.6 to model registry by @ishaan-berri in #26203
- April 21st Ishaan Branch by @ishaan-berri in #26213
- Litellm adaptive routing by @krrish-berri-2 in #26049
- [Fix] Docker: restore pre-uv Prisma cache path by @yuneng-berri in #26201
- [Infra] CircleCI config cleanup and consolidation by @yuneng-berri in #26226
- fix(proxy): Bedrock guardrail spend logs - hook mode, match redaction, streaming request_data by @milan-berri in #26266
- [Infra] Migrate more CI jobs from CircleCI to GitHub Actions by @yuneng-berri in #26261
- [Fix] Stabilize flaky spend accuracy tests + patch Redis buffer data-loss path by @yuneng-berri in #26270
- fix(router): wildcard order fallback to higher-order deployments by @Sameerlite in #25772
- fix(docker.non_root): use numeric UID 65534 for K8s runAsNonRoot by @michelligabriele in #26268
- Track per-member total spend on team memberships by @ryan-crabbe-berri in #26195
- [Fix] Stabilize spend accuracy test transport flakes by @yuneng-berri in #26290
- [Infra] bump versions by @yuneng-berri in #26295
- [Infra] Promote interal staging to main by @yuneng-berri in #26298
Full Changelog: v1.83.11-nightly...v1.83.12-nightly