You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Addresses review feedback on google#5489: restore the project's
defensive exact-version pin (matching the prior <=1.82.6 pattern)
in place of the open-ended <2 cap. Pinning to current latest
(1.83.14) keeps every future litellm release behind a deliberate
bump, which is what stopped the 1.82.7/8 supply-chain attack from
reaching ADK users.
Tested: tests/unittests/models/test_litellm.py and
tests/unittests/models/test_litellm_import.py pass (259 passed,
0 failed) against the installed litellm 1.83.13.
"k8s-agent-sandbox>=0.1.1.post3", # For GkeCodeExecutor sandbox mode
124
124
"kubernetes>=29", # For GkeCodeExecutor
125
125
"langgraph>=0.2.60,<0.4.8", # For LangGraphAgent
126
-
"litellm>=1.83.7,<2", # For LiteLlm class. Lower bound is the first release with patches for 5 CVEs disclosed 2026-04-11/24; supersedes earlier supply-chain pin against 1.82.7/8.
126
+
"litellm>=1.83.7,<=1.83.14", # For LiteLlm class. Lower bound is the first release with patches for 5 CVEs disclosed 2026-04-11/24; supersedes earlier supply-chain pin against 1.82.7/8. Upper bound pinned to current latest to defend against future supply-chain attacks (see #5489).
127
127
"llama-index-embeddings-google-genai>=0.3", # For files retrieval using LlamaIndex.
128
128
"llama-index-readers-file>=0.4", # For retrieval using LlamaIndex.
"litellm>=1.83.7,<2", # For LiteLLM tests. Lower bound is the first release with patches for 5 CVEs disclosed 2026-04-11/24; supersedes earlier supply-chain pin against 1.82.7/8.
145
+
"litellm>=1.83.7,<=1.83.14", # For LiteLLM tests. Lower bound is the first release with patches for 5 CVEs disclosed 2026-04-11/24; supersedes earlier supply-chain pin against 1.82.7/8. Upper bound pinned to current latest to defend against future supply-chain attacks (see #5489).
146
146
"llama-index-readers-file>=0.4", # For retrieval tests
0 commit comments