# LiteLLM v1.95.0-rc.2 - Product: LiteLLM (https://whatsnew.fyi/product/litellm) - Vendor: BerriAI - Date: 2026-07-31 - Version: v1.95.0-rc.2 - Original notes: https://github.com/BerriAI/litellm/releases/tag/v1.95.0-rc.2 - Permalink: https://whatsnew.fyi/product/litellm/releases/v1.95.0-rc.2 - Labels: Pre-release What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **added** — Add Meta Model API provider and muse-spark-1.1 - **added** — Add Azure GPT-5.6 (sol/terra/luna) pricing and metadata - **added** — Add /v1/messages to supported_endpoints schema enum - **added** — Add dcr_bridge column and plumbing for client-forwarded auth modes in MCP - **added** — Add shared composable DataTable component to UI - **added** — Relay upstream 401 on client-forwarded pass-through tool calls in MCP - **added** — Add dcr_bridge authorize and token relay redirect handling with mandatory S256 in MCP - **added** — Add dcr_bridge discovery facade and register relay in MCP - **added** — Add sealed envelope module for dcr_bridge client-held credentials in MCP - **added** — Emit the gen_ai.client.operation.exception event on failed LLM calls in OTEL - **added** — Configure the coordination redis independently of the response cache in proxy - **added** — Make coordination redis a first-class chart and terraform surface in deploy - **fixed** — Mask credentials embedded in guardrail_response before persist - **fixed** — Honor store_prompts_in_spend_logs for guardrail_information in spend-logs - **fixed** — Sum multi-round session cost in logs UI - **fixed** — Stop persisting the DCR client onto true_passthrough and oauth_delegate server rows in MCP - **fixed** — Fail closed and surface semantic filter context window errors in MCP - **fixed** — Keep mid-conversation system messages in place for Claude Invoke in Bedrock - **fixed** — Add coordination_redis routes to component allowlist in proxy - **fixed** — Build redis usage cache from REDIS_* env when cache backend is not Redis in proxy ##### Verify Docker Image Signature All LiteLLM Docker images are signed with [cosign](https://docs.sigstore.dev/cosign/overview/). Every release is signed with the same key introduced in [commit `0112e53`](https://github.com/BerriAI/litellm/commit/0112e53046018d726492c814b3644b7d376029d0). **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: ```bash cosign verify \ --key https://raw.githubusercontent.com/BerriAI/litellm/0112e53046018d726492c814b3644b7d376029d0/cosign.pub \ ghcr.io/berriai/litellm:v1.95.0-rc.2 ``` **Verify 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: ```bash cosign verify \ --key https://raw.githubusercontent.com/BerriAI/litellm/v1.95.0-rc.2/cosign.pub \ ghcr.io/berriai/litellm:v1.95.0-rc.2 ``` Expected 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 * test(e2e): lower realtime server-VAD threshold to 0.5 by @mubashir1osmani in https://github.com/BerriAI/litellm/pull/32710 * fix(guardrails): mask credentials embedded in guardrail_response before persist (LIT-4314) by @yucheng-berri in https://github.com/BerriAI/litellm/pull/32687 * feat: add Meta Model API provider and muse-spark-1.1 (day-0) by @devin-ai-integration[bot] in https://github.com/BerriAI/litellm/pull/32701 * feat(models): add Azure GPT-5.6 (sol/terra/luna) pricing and metadata by @devin-ai-integration[bot] in https://github.com/BerriAI/litellm/pull/32678 * ci: skip backend unit tests on ui-only PRs without stranding required checks by @devin-ai-integration[bot] in https://github.com/BerriAI/litellm/pull/32532 * refactor(ui): colocate cost-tracking and prompts components into _components/ by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32716 * refactor(ui): colocate tag-management and vector-stores views, keeping the shared selectors by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32719 * refactor(ui): colocate the policies view, keeping PolicySelector shared by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32720 * test: add /v1/messages to supported_endpoints schema enum by @tin-berri in https://github.com/BerriAI/litellm/pull/32739 * fix(spend-logs): honor store_prompts_in_spend_logs for guardrail_information (LIT-4314) by @yucheng-berri in https://github.com/BerriAI/litellm/pull/32688 * fix(spend): sum multi-round session cost in logs UI by @devin-ai-integration[bot] in https://github.com/BerriAI/litellm/pull/32796 * refactor(ui): colocate agents and guardrails views, keeping shared selectors and types by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32728 * fix(mcp): stop persisting the DCR client onto true_passthrough and oauth_delegate server rows by @tin-berri in https://github.com/BerriAI/litellm/pull/32735 * fix(e2e): batch credentials wiring and compose harness for live proxy suite by @mubashir1osmani in https://github.com/BerriAI/litellm/pull/32744 * feat(mcp): add dcr_bridge column and plumbing for client-forwarded auth modes by @tin-berri in https://github.com/BerriAI/litellm/pull/32745 * chore(ui): make knip trustworthy and enforce dead-code in CI by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32727 * build(pre-commit): regenerate eslint-metrics.json instead of failing on drift by @ryan-crabbe-berri in https://github.com/BerriAI/litellm/pull/32717 * feat(mcp): relay upstream 401 on client-forwarded pass-through tool calls by @tin-berri in https://github.com/BerriAI/litellm/pull/32556 * feat(ui): add shared composable DataTable component by @yuneng-berri in https://github.com/BerriAI/litellm/pull/32680 * fix(mcp): fail closed an _[Truncated at 4000 characters — full notes: https://github.com/BerriAI/litellm/releases/tag/v1.95.0-rc.2]_