Skip to content

Commit 1e5e965

Browse files
Merge branch 'main' into feat/fast-api-custom-task-store
2 parents b397ca2 + 2a90fbc commit 1e5e965

15 files changed

+815
-230
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.27.2"
2+
".": "1.27.4"
33
}

.github/release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3-
"last-release-sha": "7b94a767337e0d642e808734608f07a70e077c62",
3+
"last-release-sha": "066fcec3e8e669d1c5360e1556afce3f7e068072",
44
"packages": {
55
".": {
66
"release-type": "python",

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [1.27.4](https://github.com/google/adk-python/compare/v1.27.3...v1.27.4) (2026-03-24)
4+
### Bug Fixes
5+
6+
* Exclude compromised LiteLLM versions from dependencies pin to 1.82.6 ([fa5e707](https://github.com/google/adk-python/commit/fa5e707c11ad748e7db2f653b526d9bdc4b7d405))
7+
* gate builder endpoints behind web flag ([44b3f72](https://github.com/google/adk-python/commit/44b3f72d8f4ee09461d0acd8816149e801260b84))
8+
9+
## [1.27.3](https://github.com/google/adk-python/compare/v1.27.2...v1.27.3) (2026-03-23)
10+
### Bug Fixes
11+
* add protection for arbitrary module imports ([276adfb](https://github.com/google/adk-python/commit/276adfb7ad552213c0201a3c95efbc9876bf3b66))
12+
313
## [1.27.2](https://github.com/google/adk-python/compare/v1.27.1...v1.27.2) (2026-03-17)
414
### Bug Fixes
515
* Use valid dataplex OAuth scope for BigQueryToolset ([4010716](https://github.com/google/adk-python/commit/4010716470fc83918dc367c5971342ff551401c8))

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ test = [
126126
"kubernetes>=29.0.0", # For GkeCodeExecutor
127127
"langchain-community>=0.3.17",
128128
"langgraph>=0.2.60, <0.4.8", # For LangGraphAgent
129-
"litellm>=1.75.5, <2.0.0", # For LiteLLM tests
129+
"litellm>=1.75.5, <=1.82.6", # For LiteLLM tests. Upper bound pinned: versions 1.82.7+ compromised in supply chain attack.
130130
"llama-index-readers-file>=0.4.0", # For retrieval tests
131131
"openai>=1.100.2", # For LiteLLM
132132
"opentelemetry-instrumentation-google-genai>=0.3b0, <1.0.0",
@@ -160,7 +160,7 @@ extensions = [
160160
"kubernetes>=29.0.0", # For GkeCodeExecutor
161161
"k8s-agent-sandbox>=0.1.1.post3", # For GkeCodeExecutor sandbox mode
162162
"langgraph>=0.2.60, <0.4.8", # For LangGraphAgent
163-
"litellm>=1.75.5, <2.0.0", # For LiteLlm class. Currently has OpenAI limitations. TODO: once LiteLlm fix it
163+
"litellm>=1.75.5, <=1.82.6", # For LiteLlm class. Upper bound pinned: versions 1.82.7+ compromised in supply chain attack.
164164
"llama-index-readers-file>=0.4.0", # For retrieval using LlamaIndex.
165165
"llama-index-embeddings-google-genai>=0.3.0", # For files retrieval using LlamaIndex.
166166
"lxml>=5.3.0", # For load_web_page tool.

0 commit comments

Comments
 (0)