Skip to content

Commit 6d28812

Browse files
committed
Address review comments
Signed-off-by: Ed Snible <snible@us.ibm.com>
1 parent a858783 commit 6d28812

4 files changed

Lines changed: 13 additions & 12 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,5 +222,5 @@ secrets.*
222222
# Orchestration working directory
223223
.repos/
224224

225-
# Bogus lock files created by running uv in wrong directory.
225+
# Bogus lock files created by running uv in home directory.
226226
uv.lock

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: lint fmt test test-a2a test-mcp sync-all-uv sync-a2a sync-mcp
1+
.PHONY: lint fmt test-docker test-a2a test-mcp sync-all-uv sync-a2a sync-mcp
22

33
lint:
44
pre-commit run --all-files
@@ -7,7 +7,8 @@ fmt:
77
ruff format .
88
ruff check --fix .
99

10-
test: test-a2a test-mcp
10+
# This builds all of the A2A and MCP example Docker images to verify they can be built successfully.
11+
test-docker: test-a2a test-mcp
1112

1213
# Verify all of the A2A example Docker images can be built
1314
# (Optional KAGENTI_DOCKER_FLAGS for docker build, e.g. --no-cache or --load)

mcp/reservation_tool/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ requires-python = ">=3.10"
77
dependencies = [
88
"fastmcp>=2.11.0",
99
"pydantic>=2.0.0",
10+
"authlib>=1.6.9", # Indirect; prevents CVE-2026-27962
11+
"urllib3>=2.6.3", # Indirect; prevents CVE-2025-66418
12+
"python-multipart>=0.0.22", # Indirect; prevents CVE-2026-24486
1013
]
1114

1215
[project.optional-dependencies]
1316
dev = [
1417
"pytest>=7.0.0",
1518
"pytest-asyncio>=0.21.0",
1619
"flake8>=6.0.0",
17-
"authlib>=1.6.9", # Indirect; prevents CVE-2026-27962
18-
"urllib3>=2.6.3", # Indirect; prevents CVE-2025-66418
19-
"python-multipart>=0.0.22", # Indirect; prevents CVE-2026-24486
2020
]

mcp/reservation_tool/uv.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)