Skip to content

Commit d40ef4a

Browse files
committed
fix(deps): pin litellm upper bound to 1.83.14
Re-apply the project's exact-version cap pattern (the original was <=1.82.6) instead of the looser <2 I'd proposed. Pinning to the current latest release means every future litellm version needs an explicit ADK PR before it can resolve into user environments. That is how the prior <=1.82.6 cap held the line once 1.82.7/8 were known-bad. Verified: 259 litellm tests pass against installed 1.83.13. Addresses review feedback on #5489.
1 parent a1f8aeb commit d40ef4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ optional-dependencies.extensions = [
123123
"k8s-agent-sandbox>=0.1.1.post3", # For GkeCodeExecutor sandbox mode
124124
"kubernetes>=29", # For GkeCodeExecutor
125125
"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: 5 CVE patches (2026-04). Upper bound pinned to current latest; bump deliberately. See #5488.
127127
"llama-index-embeddings-google-genai>=0.3", # For files retrieval using LlamaIndex.
128128
"llama-index-readers-file>=0.4", # For retrieval using LlamaIndex.
129129
"lxml>=5.3", # For load_web_page tool.
@@ -142,7 +142,7 @@ optional-dependencies.test = [
142142
"kubernetes>=29", # For GkeCodeExecutor
143143
"langchain-community>=0.3.17",
144144
"langgraph>=0.2.60,<0.4.8", # For LangGraphAgent
145-
"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: 5 CVE patches (2026-04). Upper bound pinned to current latest; bump deliberately. See #5488.
146146
"llama-index-readers-file>=0.4", # For retrieval tests
147147
"openai>=1.100.2", # For LiteLLM
148148
"opentelemetry-instrumentation-google-genai>=0.3b0,<1",

0 commit comments

Comments
 (0)